@aws-sdk/client-apigatewayv2 3.325.0 → 3.327.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/commands/CreateApiCommand.d.ts +42 -0
- package/dist-types/commands/CreateApiMappingCommand.d.ts +9 -0
- package/dist-types/commands/CreateAuthorizerCommand.d.ts +23 -0
- package/dist-types/commands/CreateDeploymentCommand.d.ts +11 -0
- package/dist-types/commands/CreateDomainNameCommand.d.ts +31 -0
- package/dist-types/commands/CreateIntegrationCommand.d.ts +35 -0
- package/dist-types/commands/CreateIntegrationResponseCommand.d.ts +15 -0
- package/dist-types/commands/CreateModelCommand.d.ts +10 -0
- package/dist-types/commands/CreateRouteCommand.d.ts +26 -0
- package/dist-types/commands/CreateRouteResponseCommand.d.ts +16 -0
- package/dist-types/commands/CreateStageCommand.d.ts +40 -0
- package/dist-types/commands/CreateVpcLinkCommand.d.ts +20 -0
- package/dist-types/commands/DeleteAccessLogSettingsCommand.d.ts +4 -0
- package/dist-types/commands/DeleteApiCommand.d.ts +4 -0
- package/dist-types/commands/DeleteApiMappingCommand.d.ts +4 -0
- package/dist-types/commands/DeleteAuthorizerCommand.d.ts +4 -0
- package/dist-types/commands/DeleteCorsConfigurationCommand.d.ts +4 -0
- package/dist-types/commands/DeleteDeploymentCommand.d.ts +4 -0
- package/dist-types/commands/DeleteDomainNameCommand.d.ts +4 -0
- package/dist-types/commands/DeleteIntegrationCommand.d.ts +4 -0
- package/dist-types/commands/DeleteIntegrationResponseCommand.d.ts +4 -0
- package/dist-types/commands/DeleteModelCommand.d.ts +4 -0
- package/dist-types/commands/DeleteRouteCommand.d.ts +4 -0
- package/dist-types/commands/DeleteRouteRequestParameterCommand.d.ts +4 -0
- package/dist-types/commands/DeleteRouteResponseCommand.d.ts +4 -0
- package/dist-types/commands/DeleteRouteSettingsCommand.d.ts +4 -0
- package/dist-types/commands/DeleteStageCommand.d.ts +4 -0
- package/dist-types/commands/DeleteVpcLinkCommand.d.ts +4 -0
- package/dist-types/commands/GetApiCommand.d.ts +42 -0
- package/dist-types/commands/GetApiMappingCommand.d.ts +9 -0
- package/dist-types/commands/GetApiMappingsCommand.d.ts +14 -0
- package/dist-types/commands/GetApisCommand.d.ts +47 -0
- package/dist-types/commands/GetAuthorizerCommand.d.ts +23 -0
- package/dist-types/commands/GetAuthorizersCommand.d.ts +28 -0
- package/dist-types/commands/GetDeploymentCommand.d.ts +11 -0
- package/dist-types/commands/GetDeploymentsCommand.d.ts +16 -0
- package/dist-types/commands/GetDomainNameCommand.d.ts +31 -0
- package/dist-types/commands/GetDomainNamesCommand.d.ts +36 -0
- package/dist-types/commands/GetIntegrationCommand.d.ts +35 -0
- package/dist-types/commands/GetIntegrationResponseCommand.d.ts +15 -0
- package/dist-types/commands/GetIntegrationResponsesCommand.d.ts +20 -0
- package/dist-types/commands/GetIntegrationsCommand.d.ts +40 -0
- package/dist-types/commands/GetModelCommand.d.ts +10 -0
- package/dist-types/commands/GetModelTemplateCommand.d.ts +6 -0
- package/dist-types/commands/GetModelsCommand.d.ts +15 -0
- package/dist-types/commands/GetRouteCommand.d.ts +26 -0
- package/dist-types/commands/GetRouteResponseCommand.d.ts +16 -0
- package/dist-types/commands/GetRouteResponsesCommand.d.ts +21 -0
- package/dist-types/commands/GetRoutesCommand.d.ts +31 -0
- package/dist-types/commands/GetStageCommand.d.ts +40 -0
- package/dist-types/commands/GetStagesCommand.d.ts +45 -0
- package/dist-types/commands/GetTagsCommand.d.ts +8 -0
- package/dist-types/commands/GetVpcLinkCommand.d.ts +20 -0
- package/dist-types/commands/GetVpcLinksCommand.d.ts +25 -0
- package/dist-types/commands/ImportApiCommand.d.ts +42 -0
- package/dist-types/commands/ReimportApiCommand.d.ts +42 -0
- package/dist-types/commands/ResetAuthorizersCacheCommand.d.ts +4 -0
- package/dist-types/commands/TagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UpdateApiCommand.d.ts +42 -0
- package/dist-types/commands/UpdateApiMappingCommand.d.ts +9 -0
- package/dist-types/commands/UpdateAuthorizerCommand.d.ts +23 -0
- package/dist-types/commands/UpdateDeploymentCommand.d.ts +11 -0
- package/dist-types/commands/UpdateDomainNameCommand.d.ts +31 -0
- package/dist-types/commands/UpdateIntegrationCommand.d.ts +35 -0
- package/dist-types/commands/UpdateIntegrationResponseCommand.d.ts +15 -0
- package/dist-types/commands/UpdateModelCommand.d.ts +10 -0
- package/dist-types/commands/UpdateRouteCommand.d.ts +26 -0
- package/dist-types/commands/UpdateRouteResponseCommand.d.ts +16 -0
- package/dist-types/commands/UpdateStageCommand.d.ts +40 -0
- package/dist-types/commands/UpdateVpcLinkCommand.d.ts +20 -0
- package/package.json +7 -7
|
@@ -60,6 +60,46 @@ export interface CreateApiCommandOutput extends CreateApiResponse, __MetadataBea
|
|
|
60
60
|
* };
|
|
61
61
|
* const command = new CreateApiCommand(input);
|
|
62
62
|
* const response = await client.send(command);
|
|
63
|
+
* // { // CreateApiResponse
|
|
64
|
+
* // ApiEndpoint: "STRING_VALUE",
|
|
65
|
+
* // ApiGatewayManaged: true || false,
|
|
66
|
+
* // ApiId: "STRING_VALUE",
|
|
67
|
+
* // ApiKeySelectionExpression: "STRING_VALUE",
|
|
68
|
+
* // CorsConfiguration: { // Cors
|
|
69
|
+
* // AllowCredentials: true || false,
|
|
70
|
+
* // AllowHeaders: [ // CorsHeaderList
|
|
71
|
+
* // "STRING_VALUE",
|
|
72
|
+
* // ],
|
|
73
|
+
* // AllowMethods: [ // CorsMethodList
|
|
74
|
+
* // "STRING_VALUE",
|
|
75
|
+
* // ],
|
|
76
|
+
* // AllowOrigins: [ // CorsOriginList
|
|
77
|
+
* // "STRING_VALUE",
|
|
78
|
+
* // ],
|
|
79
|
+
* // ExposeHeaders: [
|
|
80
|
+
* // "STRING_VALUE",
|
|
81
|
+
* // ],
|
|
82
|
+
* // MaxAge: Number("int"),
|
|
83
|
+
* // },
|
|
84
|
+
* // CreatedDate: new Date("TIMESTAMP"),
|
|
85
|
+
* // Description: "STRING_VALUE",
|
|
86
|
+
* // DisableSchemaValidation: true || false,
|
|
87
|
+
* // DisableExecuteApiEndpoint: true || false,
|
|
88
|
+
* // ImportInfo: [ // __listOf__string
|
|
89
|
+
* // "STRING_VALUE",
|
|
90
|
+
* // ],
|
|
91
|
+
* // Name: "STRING_VALUE",
|
|
92
|
+
* // ProtocolType: "STRING_VALUE",
|
|
93
|
+
* // RouteSelectionExpression: "STRING_VALUE",
|
|
94
|
+
* // Tags: { // Tags
|
|
95
|
+
* // "<keys>": "STRING_VALUE",
|
|
96
|
+
* // },
|
|
97
|
+
* // Version: "STRING_VALUE",
|
|
98
|
+
* // Warnings: [
|
|
99
|
+
* // "STRING_VALUE",
|
|
100
|
+
* // ],
|
|
101
|
+
* // };
|
|
102
|
+
*
|
|
63
103
|
* ```
|
|
64
104
|
*
|
|
65
105
|
* @param CreateApiCommandInput - {@link CreateApiCommandInput}
|
|
@@ -80,6 +120,8 @@ export interface CreateApiCommandOutput extends CreateApiResponse, __MetadataBea
|
|
|
80
120
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
81
121
|
* <p>A limit has been exceeded. See the accompanying error message for details.</p>
|
|
82
122
|
*
|
|
123
|
+
* @throws {@link ApiGatewayV2ServiceException}
|
|
124
|
+
* <p>Base exception class for all service exceptions from ApiGatewayV2 service.</p>
|
|
83
125
|
*
|
|
84
126
|
*/
|
|
85
127
|
export declare class CreateApiCommand extends $Command<CreateApiCommandInput, CreateApiCommandOutput, ApiGatewayV2ClientResolvedConfig> {
|
|
@@ -34,6 +34,13 @@ export interface CreateApiMappingCommandOutput extends CreateApiMappingResponse,
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new CreateApiMappingCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // CreateApiMappingResponse
|
|
38
|
+
* // ApiId: "STRING_VALUE",
|
|
39
|
+
* // ApiMappingId: "STRING_VALUE",
|
|
40
|
+
* // ApiMappingKey: "STRING_VALUE",
|
|
41
|
+
* // Stage: "STRING_VALUE",
|
|
42
|
+
* // };
|
|
43
|
+
*
|
|
37
44
|
* ```
|
|
38
45
|
*
|
|
39
46
|
* @param CreateApiMappingCommandInput - {@link CreateApiMappingCommandInput}
|
|
@@ -54,6 +61,8 @@ export interface CreateApiMappingCommandOutput extends CreateApiMappingResponse,
|
|
|
54
61
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
55
62
|
* <p>A limit has been exceeded. See the accompanying error message for details.</p>
|
|
56
63
|
*
|
|
64
|
+
* @throws {@link ApiGatewayV2ServiceException}
|
|
65
|
+
* <p>Base exception class for all service exceptions from ApiGatewayV2 service.</p>
|
|
57
66
|
*
|
|
58
67
|
*/
|
|
59
68
|
export declare class CreateApiMappingCommand extends $Command<CreateApiMappingCommandInput, CreateApiMappingCommandOutput, ApiGatewayV2ClientResolvedConfig> {
|
|
@@ -48,6 +48,27 @@ export interface CreateAuthorizerCommandOutput extends CreateAuthorizerResponse,
|
|
|
48
48
|
* };
|
|
49
49
|
* const command = new CreateAuthorizerCommand(input);
|
|
50
50
|
* const response = await client.send(command);
|
|
51
|
+
* // { // CreateAuthorizerResponse
|
|
52
|
+
* // AuthorizerCredentialsArn: "STRING_VALUE",
|
|
53
|
+
* // AuthorizerId: "STRING_VALUE",
|
|
54
|
+
* // AuthorizerPayloadFormatVersion: "STRING_VALUE",
|
|
55
|
+
* // AuthorizerResultTtlInSeconds: Number("int"),
|
|
56
|
+
* // AuthorizerType: "STRING_VALUE",
|
|
57
|
+
* // AuthorizerUri: "STRING_VALUE",
|
|
58
|
+
* // EnableSimpleResponses: true || false,
|
|
59
|
+
* // IdentitySource: [ // IdentitySourceList
|
|
60
|
+
* // "STRING_VALUE",
|
|
61
|
+
* // ],
|
|
62
|
+
* // IdentityValidationExpression: "STRING_VALUE",
|
|
63
|
+
* // JwtConfiguration: { // JWTConfiguration
|
|
64
|
+
* // Audience: [ // __listOf__string
|
|
65
|
+
* // "STRING_VALUE",
|
|
66
|
+
* // ],
|
|
67
|
+
* // Issuer: "STRING_VALUE",
|
|
68
|
+
* // },
|
|
69
|
+
* // Name: "STRING_VALUE",
|
|
70
|
+
* // };
|
|
71
|
+
*
|
|
51
72
|
* ```
|
|
52
73
|
*
|
|
53
74
|
* @param CreateAuthorizerCommandInput - {@link CreateAuthorizerCommandInput}
|
|
@@ -68,6 +89,8 @@ export interface CreateAuthorizerCommandOutput extends CreateAuthorizerResponse,
|
|
|
68
89
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
69
90
|
* <p>A limit has been exceeded. See the accompanying error message for details.</p>
|
|
70
91
|
*
|
|
92
|
+
* @throws {@link ApiGatewayV2ServiceException}
|
|
93
|
+
* <p>Base exception class for all service exceptions from ApiGatewayV2 service.</p>
|
|
71
94
|
*
|
|
72
95
|
*/
|
|
73
96
|
export declare class CreateAuthorizerCommand extends $Command<CreateAuthorizerCommandInput, CreateAuthorizerCommandOutput, ApiGatewayV2ClientResolvedConfig> {
|
|
@@ -33,6 +33,15 @@ export interface CreateDeploymentCommandOutput extends CreateDeploymentResponse,
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new CreateDeploymentCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // CreateDeploymentResponse
|
|
37
|
+
* // AutoDeployed: true || false,
|
|
38
|
+
* // CreatedDate: new Date("TIMESTAMP"),
|
|
39
|
+
* // DeploymentId: "STRING_VALUE",
|
|
40
|
+
* // DeploymentStatus: "STRING_VALUE",
|
|
41
|
+
* // DeploymentStatusMessage: "STRING_VALUE",
|
|
42
|
+
* // Description: "STRING_VALUE",
|
|
43
|
+
* // };
|
|
44
|
+
*
|
|
36
45
|
* ```
|
|
37
46
|
*
|
|
38
47
|
* @param CreateDeploymentCommandInput - {@link CreateDeploymentCommandInput}
|
|
@@ -53,6 +62,8 @@ export interface CreateDeploymentCommandOutput extends CreateDeploymentResponse,
|
|
|
53
62
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
54
63
|
* <p>A limit has been exceeded. See the accompanying error message for details.</p>
|
|
55
64
|
*
|
|
65
|
+
* @throws {@link ApiGatewayV2ServiceException}
|
|
66
|
+
* <p>Base exception class for all service exceptions from ApiGatewayV2 service.</p>
|
|
56
67
|
*
|
|
57
68
|
*/
|
|
58
69
|
export declare class CreateDeploymentCommand extends $Command<CreateDeploymentCommandInput, CreateDeploymentCommandOutput, ApiGatewayV2ClientResolvedConfig> {
|
|
@@ -52,6 +52,35 @@ export interface CreateDomainNameCommandOutput extends CreateDomainNameResponse,
|
|
|
52
52
|
* };
|
|
53
53
|
* const command = new CreateDomainNameCommand(input);
|
|
54
54
|
* const response = await client.send(command);
|
|
55
|
+
* // { // CreateDomainNameResponse
|
|
56
|
+
* // ApiMappingSelectionExpression: "STRING_VALUE",
|
|
57
|
+
* // DomainName: "STRING_VALUE",
|
|
58
|
+
* // DomainNameConfigurations: [ // DomainNameConfigurations
|
|
59
|
+
* // { // DomainNameConfiguration
|
|
60
|
+
* // ApiGatewayDomainName: "STRING_VALUE",
|
|
61
|
+
* // CertificateArn: "STRING_VALUE",
|
|
62
|
+
* // CertificateName: "STRING_VALUE",
|
|
63
|
+
* // CertificateUploadDate: new Date("TIMESTAMP"),
|
|
64
|
+
* // DomainNameStatus: "STRING_VALUE",
|
|
65
|
+
* // DomainNameStatusMessage: "STRING_VALUE",
|
|
66
|
+
* // EndpointType: "STRING_VALUE",
|
|
67
|
+
* // HostedZoneId: "STRING_VALUE",
|
|
68
|
+
* // SecurityPolicy: "STRING_VALUE",
|
|
69
|
+
* // OwnershipVerificationCertificateArn: "STRING_VALUE",
|
|
70
|
+
* // },
|
|
71
|
+
* // ],
|
|
72
|
+
* // MutualTlsAuthentication: { // MutualTlsAuthentication
|
|
73
|
+
* // TruststoreUri: "STRING_VALUE",
|
|
74
|
+
* // TruststoreVersion: "STRING_VALUE",
|
|
75
|
+
* // TruststoreWarnings: [ // __listOf__string
|
|
76
|
+
* // "STRING_VALUE",
|
|
77
|
+
* // ],
|
|
78
|
+
* // },
|
|
79
|
+
* // Tags: { // Tags
|
|
80
|
+
* // "<keys>": "STRING_VALUE",
|
|
81
|
+
* // },
|
|
82
|
+
* // };
|
|
83
|
+
*
|
|
55
84
|
* ```
|
|
56
85
|
*
|
|
57
86
|
* @param CreateDomainNameCommandInput - {@link CreateDomainNameCommandInput}
|
|
@@ -74,6 +103,8 @@ export interface CreateDomainNameCommandOutput extends CreateDomainNameResponse,
|
|
|
74
103
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
75
104
|
* <p>A limit has been exceeded. See the accompanying error message for details.</p>
|
|
76
105
|
*
|
|
106
|
+
* @throws {@link ApiGatewayV2ServiceException}
|
|
107
|
+
* <p>Base exception class for all service exceptions from ApiGatewayV2 service.</p>
|
|
77
108
|
*
|
|
78
109
|
*/
|
|
79
110
|
export declare class CreateDomainNameCommand extends $Command<CreateDomainNameCommandInput, CreateDomainNameCommandOutput, ApiGatewayV2ClientResolvedConfig> {
|
|
@@ -58,6 +58,39 @@ export interface CreateIntegrationCommandOutput extends CreateIntegrationResult,
|
|
|
58
58
|
* };
|
|
59
59
|
* const command = new CreateIntegrationCommand(input);
|
|
60
60
|
* const response = await client.send(command);
|
|
61
|
+
* // { // CreateIntegrationResult
|
|
62
|
+
* // ApiGatewayManaged: true || false,
|
|
63
|
+
* // ConnectionId: "STRING_VALUE",
|
|
64
|
+
* // ConnectionType: "STRING_VALUE",
|
|
65
|
+
* // ContentHandlingStrategy: "STRING_VALUE",
|
|
66
|
+
* // CredentialsArn: "STRING_VALUE",
|
|
67
|
+
* // Description: "STRING_VALUE",
|
|
68
|
+
* // IntegrationId: "STRING_VALUE",
|
|
69
|
+
* // IntegrationMethod: "STRING_VALUE",
|
|
70
|
+
* // IntegrationResponseSelectionExpression: "STRING_VALUE",
|
|
71
|
+
* // IntegrationSubtype: "STRING_VALUE",
|
|
72
|
+
* // IntegrationType: "STRING_VALUE",
|
|
73
|
+
* // IntegrationUri: "STRING_VALUE",
|
|
74
|
+
* // PassthroughBehavior: "STRING_VALUE",
|
|
75
|
+
* // PayloadFormatVersion: "STRING_VALUE",
|
|
76
|
+
* // RequestParameters: { // IntegrationParameters
|
|
77
|
+
* // "<keys>": "STRING_VALUE",
|
|
78
|
+
* // },
|
|
79
|
+
* // RequestTemplates: { // TemplateMap
|
|
80
|
+
* // "<keys>": "STRING_VALUE",
|
|
81
|
+
* // },
|
|
82
|
+
* // ResponseParameters: { // ResponseParameters
|
|
83
|
+
* // "<keys>": {
|
|
84
|
+
* // "<keys>": "STRING_VALUE",
|
|
85
|
+
* // },
|
|
86
|
+
* // },
|
|
87
|
+
* // TemplateSelectionExpression: "STRING_VALUE",
|
|
88
|
+
* // TimeoutInMillis: Number("int"),
|
|
89
|
+
* // TlsConfig: { // TlsConfig
|
|
90
|
+
* // ServerNameToVerify: "STRING_VALUE",
|
|
91
|
+
* // },
|
|
92
|
+
* // };
|
|
93
|
+
*
|
|
61
94
|
* ```
|
|
62
95
|
*
|
|
63
96
|
* @param CreateIntegrationCommandInput - {@link CreateIntegrationCommandInput}
|
|
@@ -78,6 +111,8 @@ export interface CreateIntegrationCommandOutput extends CreateIntegrationResult,
|
|
|
78
111
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
79
112
|
* <p>A limit has been exceeded. See the accompanying error message for details.</p>
|
|
80
113
|
*
|
|
114
|
+
* @throws {@link ApiGatewayV2ServiceException}
|
|
115
|
+
* <p>Base exception class for all service exceptions from ApiGatewayV2 service.</p>
|
|
81
116
|
*
|
|
82
117
|
*/
|
|
83
118
|
export declare class CreateIntegrationCommand extends $Command<CreateIntegrationCommandInput, CreateIntegrationCommandOutput, ApiGatewayV2ClientResolvedConfig> {
|
|
@@ -41,6 +41,19 @@ export interface CreateIntegrationResponseCommandOutput extends CreateIntegratio
|
|
|
41
41
|
* };
|
|
42
42
|
* const command = new CreateIntegrationResponseCommand(input);
|
|
43
43
|
* const response = await client.send(command);
|
|
44
|
+
* // { // CreateIntegrationResponseResponse
|
|
45
|
+
* // ContentHandlingStrategy: "STRING_VALUE",
|
|
46
|
+
* // IntegrationResponseId: "STRING_VALUE",
|
|
47
|
+
* // IntegrationResponseKey: "STRING_VALUE",
|
|
48
|
+
* // ResponseParameters: { // IntegrationParameters
|
|
49
|
+
* // "<keys>": "STRING_VALUE",
|
|
50
|
+
* // },
|
|
51
|
+
* // ResponseTemplates: { // TemplateMap
|
|
52
|
+
* // "<keys>": "STRING_VALUE",
|
|
53
|
+
* // },
|
|
54
|
+
* // TemplateSelectionExpression: "STRING_VALUE",
|
|
55
|
+
* // };
|
|
56
|
+
*
|
|
44
57
|
* ```
|
|
45
58
|
*
|
|
46
59
|
* @param CreateIntegrationResponseCommandInput - {@link CreateIntegrationResponseCommandInput}
|
|
@@ -61,6 +74,8 @@ export interface CreateIntegrationResponseCommandOutput extends CreateIntegratio
|
|
|
61
74
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
62
75
|
* <p>A limit has been exceeded. See the accompanying error message for details.</p>
|
|
63
76
|
*
|
|
77
|
+
* @throws {@link ApiGatewayV2ServiceException}
|
|
78
|
+
* <p>Base exception class for all service exceptions from ApiGatewayV2 service.</p>
|
|
64
79
|
*
|
|
65
80
|
*/
|
|
66
81
|
export declare class CreateIntegrationResponseCommand extends $Command<CreateIntegrationResponseCommandInput, CreateIntegrationResponseCommandOutput, ApiGatewayV2ClientResolvedConfig> {
|
|
@@ -35,6 +35,14 @@ export interface CreateModelCommandOutput extends CreateModelResponse, __Metadat
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new CreateModelCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // { // CreateModelResponse
|
|
39
|
+
* // ContentType: "STRING_VALUE",
|
|
40
|
+
* // Description: "STRING_VALUE",
|
|
41
|
+
* // ModelId: "STRING_VALUE",
|
|
42
|
+
* // Name: "STRING_VALUE",
|
|
43
|
+
* // Schema: "STRING_VALUE",
|
|
44
|
+
* // };
|
|
45
|
+
*
|
|
38
46
|
* ```
|
|
39
47
|
*
|
|
40
48
|
* @param CreateModelCommandInput - {@link CreateModelCommandInput}
|
|
@@ -55,6 +63,8 @@ export interface CreateModelCommandOutput extends CreateModelResponse, __Metadat
|
|
|
55
63
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
56
64
|
* <p>A limit has been exceeded. See the accompanying error message for details.</p>
|
|
57
65
|
*
|
|
66
|
+
* @throws {@link ApiGatewayV2ServiceException}
|
|
67
|
+
* <p>Base exception class for all service exceptions from ApiGatewayV2 service.</p>
|
|
58
68
|
*
|
|
59
69
|
*/
|
|
60
70
|
export declare class CreateModelCommand extends $Command<CreateModelCommandInput, CreateModelCommandOutput, ApiGatewayV2ClientResolvedConfig> {
|
|
@@ -50,6 +50,30 @@ export interface CreateRouteCommandOutput extends CreateRouteResult, __MetadataB
|
|
|
50
50
|
* };
|
|
51
51
|
* const command = new CreateRouteCommand(input);
|
|
52
52
|
* const response = await client.send(command);
|
|
53
|
+
* // { // CreateRouteResult
|
|
54
|
+
* // ApiGatewayManaged: true || false,
|
|
55
|
+
* // ApiKeyRequired: true || false,
|
|
56
|
+
* // AuthorizationScopes: [ // AuthorizationScopes
|
|
57
|
+
* // "STRING_VALUE",
|
|
58
|
+
* // ],
|
|
59
|
+
* // AuthorizationType: "STRING_VALUE",
|
|
60
|
+
* // AuthorizerId: "STRING_VALUE",
|
|
61
|
+
* // ModelSelectionExpression: "STRING_VALUE",
|
|
62
|
+
* // OperationName: "STRING_VALUE",
|
|
63
|
+
* // RequestModels: { // RouteModels
|
|
64
|
+
* // "<keys>": "STRING_VALUE",
|
|
65
|
+
* // },
|
|
66
|
+
* // RequestParameters: { // RouteParameters
|
|
67
|
+
* // "<keys>": { // ParameterConstraints
|
|
68
|
+
* // Required: true || false,
|
|
69
|
+
* // },
|
|
70
|
+
* // },
|
|
71
|
+
* // RouteId: "STRING_VALUE",
|
|
72
|
+
* // RouteKey: "STRING_VALUE",
|
|
73
|
+
* // RouteResponseSelectionExpression: "STRING_VALUE",
|
|
74
|
+
* // Target: "STRING_VALUE",
|
|
75
|
+
* // };
|
|
76
|
+
*
|
|
53
77
|
* ```
|
|
54
78
|
*
|
|
55
79
|
* @param CreateRouteCommandInput - {@link CreateRouteCommandInput}
|
|
@@ -70,6 +94,8 @@ export interface CreateRouteCommandOutput extends CreateRouteResult, __MetadataB
|
|
|
70
94
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
71
95
|
* <p>A limit has been exceeded. See the accompanying error message for details.</p>
|
|
72
96
|
*
|
|
97
|
+
* @throws {@link ApiGatewayV2ServiceException}
|
|
98
|
+
* <p>Base exception class for all service exceptions from ApiGatewayV2 service.</p>
|
|
73
99
|
*
|
|
74
100
|
*/
|
|
75
101
|
export declare class CreateRouteCommand extends $Command<CreateRouteCommandInput, CreateRouteCommandOutput, ApiGatewayV2ClientResolvedConfig> {
|
|
@@ -42,6 +42,20 @@ export interface CreateRouteResponseCommandOutput extends CreateRouteResponseRes
|
|
|
42
42
|
* };
|
|
43
43
|
* const command = new CreateRouteResponseCommand(input);
|
|
44
44
|
* const response = await client.send(command);
|
|
45
|
+
* // { // CreateRouteResponseResponse
|
|
46
|
+
* // ModelSelectionExpression: "STRING_VALUE",
|
|
47
|
+
* // ResponseModels: { // RouteModels
|
|
48
|
+
* // "<keys>": "STRING_VALUE",
|
|
49
|
+
* // },
|
|
50
|
+
* // ResponseParameters: { // RouteParameters
|
|
51
|
+
* // "<keys>": { // ParameterConstraints
|
|
52
|
+
* // Required: true || false,
|
|
53
|
+
* // },
|
|
54
|
+
* // },
|
|
55
|
+
* // RouteResponseId: "STRING_VALUE",
|
|
56
|
+
* // RouteResponseKey: "STRING_VALUE",
|
|
57
|
+
* // };
|
|
58
|
+
*
|
|
45
59
|
* ```
|
|
46
60
|
*
|
|
47
61
|
* @param CreateRouteResponseCommandInput - {@link CreateRouteResponseCommandInput}
|
|
@@ -62,6 +76,8 @@ export interface CreateRouteResponseCommandOutput extends CreateRouteResponseRes
|
|
|
62
76
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
63
77
|
* <p>A limit has been exceeded. See the accompanying error message for details.</p>
|
|
64
78
|
*
|
|
79
|
+
* @throws {@link ApiGatewayV2ServiceException}
|
|
80
|
+
* <p>Base exception class for all service exceptions from ApiGatewayV2 service.</p>
|
|
65
81
|
*
|
|
66
82
|
*/
|
|
67
83
|
export declare class CreateRouteResponseCommand extends $Command<CreateRouteResponseCommandInput, CreateRouteResponseCommandOutput, ApiGatewayV2ClientResolvedConfig> {
|
|
@@ -62,6 +62,44 @@ export interface CreateStageCommandOutput extends CreateStageResponse, __Metadat
|
|
|
62
62
|
* };
|
|
63
63
|
* const command = new CreateStageCommand(input);
|
|
64
64
|
* const response = await client.send(command);
|
|
65
|
+
* // { // CreateStageResponse
|
|
66
|
+
* // AccessLogSettings: { // AccessLogSettings
|
|
67
|
+
* // DestinationArn: "STRING_VALUE",
|
|
68
|
+
* // Format: "STRING_VALUE",
|
|
69
|
+
* // },
|
|
70
|
+
* // ApiGatewayManaged: true || false,
|
|
71
|
+
* // AutoDeploy: true || false,
|
|
72
|
+
* // ClientCertificateId: "STRING_VALUE",
|
|
73
|
+
* // CreatedDate: new Date("TIMESTAMP"),
|
|
74
|
+
* // DefaultRouteSettings: { // RouteSettings
|
|
75
|
+
* // DataTraceEnabled: true || false,
|
|
76
|
+
* // DetailedMetricsEnabled: true || false,
|
|
77
|
+
* // LoggingLevel: "STRING_VALUE",
|
|
78
|
+
* // ThrottlingBurstLimit: Number("int"),
|
|
79
|
+
* // ThrottlingRateLimit: Number("double"),
|
|
80
|
+
* // },
|
|
81
|
+
* // DeploymentId: "STRING_VALUE",
|
|
82
|
+
* // Description: "STRING_VALUE",
|
|
83
|
+
* // LastDeploymentStatusMessage: "STRING_VALUE",
|
|
84
|
+
* // LastUpdatedDate: new Date("TIMESTAMP"),
|
|
85
|
+
* // RouteSettings: { // RouteSettingsMap
|
|
86
|
+
* // "<keys>": {
|
|
87
|
+
* // DataTraceEnabled: true || false,
|
|
88
|
+
* // DetailedMetricsEnabled: true || false,
|
|
89
|
+
* // LoggingLevel: "STRING_VALUE",
|
|
90
|
+
* // ThrottlingBurstLimit: Number("int"),
|
|
91
|
+
* // ThrottlingRateLimit: Number("double"),
|
|
92
|
+
* // },
|
|
93
|
+
* // },
|
|
94
|
+
* // StageName: "STRING_VALUE",
|
|
95
|
+
* // StageVariables: { // StageVariablesMap
|
|
96
|
+
* // "<keys>": "STRING_VALUE",
|
|
97
|
+
* // },
|
|
98
|
+
* // Tags: { // Tags
|
|
99
|
+
* // "<keys>": "STRING_VALUE",
|
|
100
|
+
* // },
|
|
101
|
+
* // };
|
|
102
|
+
*
|
|
65
103
|
* ```
|
|
66
104
|
*
|
|
67
105
|
* @param CreateStageCommandInput - {@link CreateStageCommandInput}
|
|
@@ -82,6 +120,8 @@ export interface CreateStageCommandOutput extends CreateStageResponse, __Metadat
|
|
|
82
120
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
83
121
|
* <p>A limit has been exceeded. See the accompanying error message for details.</p>
|
|
84
122
|
*
|
|
123
|
+
* @throws {@link ApiGatewayV2ServiceException}
|
|
124
|
+
* <p>Base exception class for all service exceptions from ApiGatewayV2 service.</p>
|
|
85
125
|
*
|
|
86
126
|
*/
|
|
87
127
|
export declare class CreateStageCommand extends $Command<CreateStageCommandInput, CreateStageCommandOutput, ApiGatewayV2ClientResolvedConfig> {
|
|
@@ -40,6 +40,24 @@ export interface CreateVpcLinkCommandOutput extends CreateVpcLinkResponse, __Met
|
|
|
40
40
|
* };
|
|
41
41
|
* const command = new CreateVpcLinkCommand(input);
|
|
42
42
|
* const response = await client.send(command);
|
|
43
|
+
* // { // CreateVpcLinkResponse
|
|
44
|
+
* // CreatedDate: new Date("TIMESTAMP"),
|
|
45
|
+
* // Name: "STRING_VALUE",
|
|
46
|
+
* // SecurityGroupIds: [ // SecurityGroupIdList
|
|
47
|
+
* // "STRING_VALUE",
|
|
48
|
+
* // ],
|
|
49
|
+
* // SubnetIds: [ // SubnetIdList
|
|
50
|
+
* // "STRING_VALUE",
|
|
51
|
+
* // ],
|
|
52
|
+
* // Tags: { // Tags
|
|
53
|
+
* // "<keys>": "STRING_VALUE",
|
|
54
|
+
* // },
|
|
55
|
+
* // VpcLinkId: "STRING_VALUE",
|
|
56
|
+
* // VpcLinkStatus: "STRING_VALUE",
|
|
57
|
+
* // VpcLinkStatusMessage: "STRING_VALUE",
|
|
58
|
+
* // VpcLinkVersion: "STRING_VALUE",
|
|
59
|
+
* // };
|
|
60
|
+
*
|
|
43
61
|
* ```
|
|
44
62
|
*
|
|
45
63
|
* @param CreateVpcLinkCommandInput - {@link CreateVpcLinkCommandInput}
|
|
@@ -54,6 +72,8 @@ export interface CreateVpcLinkCommandOutput extends CreateVpcLinkResponse, __Met
|
|
|
54
72
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
55
73
|
* <p>A limit has been exceeded. See the accompanying error message for details.</p>
|
|
56
74
|
*
|
|
75
|
+
* @throws {@link ApiGatewayV2ServiceException}
|
|
76
|
+
* <p>Base exception class for all service exceptions from ApiGatewayV2 service.</p>
|
|
57
77
|
*
|
|
58
78
|
*/
|
|
59
79
|
export declare class CreateVpcLinkCommand extends $Command<CreateVpcLinkCommandInput, CreateVpcLinkCommandOutput, ApiGatewayV2ClientResolvedConfig> {
|
|
@@ -32,6 +32,8 @@ export interface DeleteAccessLogSettingsCommandOutput extends __MetadataBearer {
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DeleteAccessLogSettingsCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // {};
|
|
36
|
+
*
|
|
35
37
|
* ```
|
|
36
38
|
*
|
|
37
39
|
* @param DeleteAccessLogSettingsCommandInput - {@link DeleteAccessLogSettingsCommandInput}
|
|
@@ -46,6 +48,8 @@ export interface DeleteAccessLogSettingsCommandOutput extends __MetadataBearer {
|
|
|
46
48
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
47
49
|
* <p>A limit has been exceeded. See the accompanying error message for details.</p>
|
|
48
50
|
*
|
|
51
|
+
* @throws {@link ApiGatewayV2ServiceException}
|
|
52
|
+
* <p>Base exception class for all service exceptions from ApiGatewayV2 service.</p>
|
|
49
53
|
*
|
|
50
54
|
*/
|
|
51
55
|
export declare class DeleteAccessLogSettingsCommand extends $Command<DeleteAccessLogSettingsCommandInput, DeleteAccessLogSettingsCommandOutput, ApiGatewayV2ClientResolvedConfig> {
|
|
@@ -31,6 +31,8 @@ export interface DeleteApiCommandOutput extends __MetadataBearer {
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteApiCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // {};
|
|
35
|
+
*
|
|
34
36
|
* ```
|
|
35
37
|
*
|
|
36
38
|
* @param DeleteApiCommandInput - {@link DeleteApiCommandInput}
|
|
@@ -45,6 +47,8 @@ export interface DeleteApiCommandOutput extends __MetadataBearer {
|
|
|
45
47
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
46
48
|
* <p>A limit has been exceeded. See the accompanying error message for details.</p>
|
|
47
49
|
*
|
|
50
|
+
* @throws {@link ApiGatewayV2ServiceException}
|
|
51
|
+
* <p>Base exception class for all service exceptions from ApiGatewayV2 service.</p>
|
|
48
52
|
*
|
|
49
53
|
*/
|
|
50
54
|
export declare class DeleteApiCommand extends $Command<DeleteApiCommandInput, DeleteApiCommandOutput, ApiGatewayV2ClientResolvedConfig> {
|
|
@@ -32,6 +32,8 @@ export interface DeleteApiMappingCommandOutput extends __MetadataBearer {
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DeleteApiMappingCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // {};
|
|
36
|
+
*
|
|
35
37
|
* ```
|
|
36
38
|
*
|
|
37
39
|
* @param DeleteApiMappingCommandInput - {@link DeleteApiMappingCommandInput}
|
|
@@ -49,6 +51,8 @@ export interface DeleteApiMappingCommandOutput extends __MetadataBearer {
|
|
|
49
51
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
50
52
|
* <p>A limit has been exceeded. See the accompanying error message for details.</p>
|
|
51
53
|
*
|
|
54
|
+
* @throws {@link ApiGatewayV2ServiceException}
|
|
55
|
+
* <p>Base exception class for all service exceptions from ApiGatewayV2 service.</p>
|
|
52
56
|
*
|
|
53
57
|
*/
|
|
54
58
|
export declare class DeleteApiMappingCommand extends $Command<DeleteApiMappingCommandInput, DeleteApiMappingCommandOutput, ApiGatewayV2ClientResolvedConfig> {
|
|
@@ -32,6 +32,8 @@ export interface DeleteAuthorizerCommandOutput extends __MetadataBearer {
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DeleteAuthorizerCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // {};
|
|
36
|
+
*
|
|
35
37
|
* ```
|
|
36
38
|
*
|
|
37
39
|
* @param DeleteAuthorizerCommandInput - {@link DeleteAuthorizerCommandInput}
|
|
@@ -46,6 +48,8 @@ export interface DeleteAuthorizerCommandOutput extends __MetadataBearer {
|
|
|
46
48
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
47
49
|
* <p>A limit has been exceeded. See the accompanying error message for details.</p>
|
|
48
50
|
*
|
|
51
|
+
* @throws {@link ApiGatewayV2ServiceException}
|
|
52
|
+
* <p>Base exception class for all service exceptions from ApiGatewayV2 service.</p>
|
|
49
53
|
*
|
|
50
54
|
*/
|
|
51
55
|
export declare class DeleteAuthorizerCommand extends $Command<DeleteAuthorizerCommandInput, DeleteAuthorizerCommandOutput, ApiGatewayV2ClientResolvedConfig> {
|
|
@@ -31,6 +31,8 @@ export interface DeleteCorsConfigurationCommandOutput extends __MetadataBearer {
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteCorsConfigurationCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // {};
|
|
35
|
+
*
|
|
34
36
|
* ```
|
|
35
37
|
*
|
|
36
38
|
* @param DeleteCorsConfigurationCommandInput - {@link DeleteCorsConfigurationCommandInput}
|
|
@@ -45,6 +47,8 @@ export interface DeleteCorsConfigurationCommandOutput extends __MetadataBearer {
|
|
|
45
47
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
46
48
|
* <p>A limit has been exceeded. See the accompanying error message for details.</p>
|
|
47
49
|
*
|
|
50
|
+
* @throws {@link ApiGatewayV2ServiceException}
|
|
51
|
+
* <p>Base exception class for all service exceptions from ApiGatewayV2 service.</p>
|
|
48
52
|
*
|
|
49
53
|
*/
|
|
50
54
|
export declare class DeleteCorsConfigurationCommand extends $Command<DeleteCorsConfigurationCommandInput, DeleteCorsConfigurationCommandOutput, ApiGatewayV2ClientResolvedConfig> {
|
|
@@ -32,6 +32,8 @@ export interface DeleteDeploymentCommandOutput extends __MetadataBearer {
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DeleteDeploymentCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // {};
|
|
36
|
+
*
|
|
35
37
|
* ```
|
|
36
38
|
*
|
|
37
39
|
* @param DeleteDeploymentCommandInput - {@link DeleteDeploymentCommandInput}
|
|
@@ -46,6 +48,8 @@ export interface DeleteDeploymentCommandOutput extends __MetadataBearer {
|
|
|
46
48
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
47
49
|
* <p>A limit has been exceeded. See the accompanying error message for details.</p>
|
|
48
50
|
*
|
|
51
|
+
* @throws {@link ApiGatewayV2ServiceException}
|
|
52
|
+
* <p>Base exception class for all service exceptions from ApiGatewayV2 service.</p>
|
|
49
53
|
*
|
|
50
54
|
*/
|
|
51
55
|
export declare class DeleteDeploymentCommand extends $Command<DeleteDeploymentCommandInput, DeleteDeploymentCommandOutput, ApiGatewayV2ClientResolvedConfig> {
|
|
@@ -31,6 +31,8 @@ export interface DeleteDomainNameCommandOutput extends __MetadataBearer {
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteDomainNameCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // {};
|
|
35
|
+
*
|
|
34
36
|
* ```
|
|
35
37
|
*
|
|
36
38
|
* @param DeleteDomainNameCommandInput - {@link DeleteDomainNameCommandInput}
|
|
@@ -45,6 +47,8 @@ export interface DeleteDomainNameCommandOutput extends __MetadataBearer {
|
|
|
45
47
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
46
48
|
* <p>A limit has been exceeded. See the accompanying error message for details.</p>
|
|
47
49
|
*
|
|
50
|
+
* @throws {@link ApiGatewayV2ServiceException}
|
|
51
|
+
* <p>Base exception class for all service exceptions from ApiGatewayV2 service.</p>
|
|
48
52
|
*
|
|
49
53
|
*/
|
|
50
54
|
export declare class DeleteDomainNameCommand extends $Command<DeleteDomainNameCommandInput, DeleteDomainNameCommandOutput, ApiGatewayV2ClientResolvedConfig> {
|
|
@@ -32,6 +32,8 @@ export interface DeleteIntegrationCommandOutput extends __MetadataBearer {
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DeleteIntegrationCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // {};
|
|
36
|
+
*
|
|
35
37
|
* ```
|
|
36
38
|
*
|
|
37
39
|
* @param DeleteIntegrationCommandInput - {@link DeleteIntegrationCommandInput}
|
|
@@ -46,6 +48,8 @@ export interface DeleteIntegrationCommandOutput extends __MetadataBearer {
|
|
|
46
48
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
47
49
|
* <p>A limit has been exceeded. See the accompanying error message for details.</p>
|
|
48
50
|
*
|
|
51
|
+
* @throws {@link ApiGatewayV2ServiceException}
|
|
52
|
+
* <p>Base exception class for all service exceptions from ApiGatewayV2 service.</p>
|
|
49
53
|
*
|
|
50
54
|
*/
|
|
51
55
|
export declare class DeleteIntegrationCommand extends $Command<DeleteIntegrationCommandInput, DeleteIntegrationCommandOutput, ApiGatewayV2ClientResolvedConfig> {
|
|
@@ -33,6 +33,8 @@ export interface DeleteIntegrationResponseCommandOutput extends __MetadataBearer
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new DeleteIntegrationResponseCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // {};
|
|
37
|
+
*
|
|
36
38
|
* ```
|
|
37
39
|
*
|
|
38
40
|
* @param DeleteIntegrationResponseCommandInput - {@link DeleteIntegrationResponseCommandInput}
|
|
@@ -47,6 +49,8 @@ export interface DeleteIntegrationResponseCommandOutput extends __MetadataBearer
|
|
|
47
49
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
48
50
|
* <p>A limit has been exceeded. See the accompanying error message for details.</p>
|
|
49
51
|
*
|
|
52
|
+
* @throws {@link ApiGatewayV2ServiceException}
|
|
53
|
+
* <p>Base exception class for all service exceptions from ApiGatewayV2 service.</p>
|
|
50
54
|
*
|
|
51
55
|
*/
|
|
52
56
|
export declare class DeleteIntegrationResponseCommand extends $Command<DeleteIntegrationResponseCommandInput, DeleteIntegrationResponseCommandOutput, ApiGatewayV2ClientResolvedConfig> {
|
|
@@ -32,6 +32,8 @@ export interface DeleteModelCommandOutput extends __MetadataBearer {
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DeleteModelCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // {};
|
|
36
|
+
*
|
|
35
37
|
* ```
|
|
36
38
|
*
|
|
37
39
|
* @param DeleteModelCommandInput - {@link DeleteModelCommandInput}
|
|
@@ -46,6 +48,8 @@ export interface DeleteModelCommandOutput extends __MetadataBearer {
|
|
|
46
48
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
47
49
|
* <p>A limit has been exceeded. See the accompanying error message for details.</p>
|
|
48
50
|
*
|
|
51
|
+
* @throws {@link ApiGatewayV2ServiceException}
|
|
52
|
+
* <p>Base exception class for all service exceptions from ApiGatewayV2 service.</p>
|
|
49
53
|
*
|
|
50
54
|
*/
|
|
51
55
|
export declare class DeleteModelCommand extends $Command<DeleteModelCommandInput, DeleteModelCommandOutput, ApiGatewayV2ClientResolvedConfig> {
|
|
@@ -32,6 +32,8 @@ export interface DeleteRouteCommandOutput extends __MetadataBearer {
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DeleteRouteCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // {};
|
|
36
|
+
*
|
|
35
37
|
* ```
|
|
36
38
|
*
|
|
37
39
|
* @param DeleteRouteCommandInput - {@link DeleteRouteCommandInput}
|
|
@@ -46,6 +48,8 @@ export interface DeleteRouteCommandOutput extends __MetadataBearer {
|
|
|
46
48
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
47
49
|
* <p>A limit has been exceeded. See the accompanying error message for details.</p>
|
|
48
50
|
*
|
|
51
|
+
* @throws {@link ApiGatewayV2ServiceException}
|
|
52
|
+
* <p>Base exception class for all service exceptions from ApiGatewayV2 service.</p>
|
|
49
53
|
*
|
|
50
54
|
*/
|
|
51
55
|
export declare class DeleteRouteCommand extends $Command<DeleteRouteCommandInput, DeleteRouteCommandOutput, ApiGatewayV2ClientResolvedConfig> {
|