Skip to main content Link Search Menu Expand Document (external link)

ApiGatewayManagementApiService overview

Added in v1.0.0


Table of contents


constructors

makeApiGatewayManagementApiService

Signature

export declare const makeApiGatewayManagementApiService: Effect.Effect<
  ApiGatewayManagementApiService,
  never,
  ApiGatewayManagementApiClientInstance
>

Added in v1.0.0

layers

ApiGatewayManagementApiServiceLayer

Signature

export declare const ApiGatewayManagementApiServiceLayer: Layer.Layer<
  ApiGatewayManagementApiService,
  never,
  ApiGatewayManagementApiClientInstanceConfig
>

Added in v1.0.0

BaseApiGatewayManagementApiServiceLayer

Signature

export declare const BaseApiGatewayManagementApiServiceLayer: Layer.Layer<
  ApiGatewayManagementApiService,
  never,
  ApiGatewayManagementApiClientInstance
>

Added in v1.0.0

DefaultApiGatewayManagementApiServiceLayer

Signature

export declare const DefaultApiGatewayManagementApiServiceLayer: Layer.Layer<
  ApiGatewayManagementApiService,
  never,
  never
>

Added in v1.0.0

models

ApiGatewayManagementApiService (interface)

Signature

export interface ApiGatewayManagementApiService {
  readonly _: unique symbol

  /**
   * @see {@link DeleteConnectionCommand}
   */
  deleteConnection(
    args: DeleteConnectionCommandInput,
    options?: __HttpHandlerOptions
  ): Effect.Effect<DeleteConnectionCommandOutput, SdkError | GoneError | ForbiddenError | LimitExceededError>

  /**
   * @see {@link GetConnectionCommand}
   */
  getConnection(
    args: GetConnectionCommandInput,
    options?: __HttpHandlerOptions
  ): Effect.Effect<GetConnectionCommandOutput, SdkError | GoneError | ForbiddenError | LimitExceededError>

  /**
   * @see {@link PostToConnectionCommand}
   */
  postToConnection(
    args: PostToConnectionCommandInput,
    options?: __HttpHandlerOptions
  ): Effect.Effect<
    PostToConnectionCommandOutput,
    SdkError | GoneError | ForbiddenError | LimitExceededError | PayloadTooLargeError
  >
}

Added in v1.0.0

tags

ApiGatewayManagementApiService

Signature

export declare const ApiGatewayManagementApiService: Context.Tag<
  ApiGatewayManagementApiService,
  ApiGatewayManagementApiService
>

Added in v1.0.0