@aws-sdk/client-apigatewayv2 3.687.0 → 3.692.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/models/models_0.d.ts +717 -717
- package/dist-types/ts3.4/models/models_0.d.ts +717 -717
- package/package.json +36 -36
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
2
|
import { ApiGatewayV2ServiceException as __BaseException } from "./ApiGatewayV2ServiceException";
|
|
3
3
|
export interface Cors {
|
|
4
|
-
AllowCredentials?: boolean;
|
|
5
|
-
AllowHeaders?: string[];
|
|
6
|
-
AllowMethods?: string[];
|
|
7
|
-
AllowOrigins?: string[];
|
|
8
|
-
ExposeHeaders?: string[];
|
|
9
|
-
MaxAge?: number;
|
|
4
|
+
AllowCredentials?: boolean | undefined;
|
|
5
|
+
AllowHeaders?: string[] | undefined;
|
|
6
|
+
AllowMethods?: string[] | undefined;
|
|
7
|
+
AllowOrigins?: string[] | undefined;
|
|
8
|
+
ExposeHeaders?: string[] | undefined;
|
|
9
|
+
MaxAge?: number | undefined;
|
|
10
10
|
}
|
|
11
11
|
export declare const ProtocolType: {
|
|
12
12
|
readonly HTTP: "HTTP";
|
|
@@ -14,27 +14,27 @@ export declare const ProtocolType: {
|
|
|
14
14
|
};
|
|
15
15
|
export type ProtocolType = (typeof ProtocolType)[keyof typeof ProtocolType];
|
|
16
16
|
export interface Api {
|
|
17
|
-
ApiEndpoint?: string;
|
|
18
|
-
ApiGatewayManaged?: boolean;
|
|
19
|
-
ApiId?: string;
|
|
20
|
-
ApiKeySelectionExpression?: string;
|
|
21
|
-
CorsConfiguration?: Cors;
|
|
22
|
-
CreatedDate?: Date;
|
|
23
|
-
Description?: string;
|
|
24
|
-
DisableSchemaValidation?: boolean;
|
|
25
|
-
DisableExecuteApiEndpoint?: boolean;
|
|
26
|
-
ImportInfo?: string[];
|
|
17
|
+
ApiEndpoint?: string | undefined;
|
|
18
|
+
ApiGatewayManaged?: boolean | undefined;
|
|
19
|
+
ApiId?: string | undefined;
|
|
20
|
+
ApiKeySelectionExpression?: string | undefined;
|
|
21
|
+
CorsConfiguration?: Cors | undefined;
|
|
22
|
+
CreatedDate?: Date | undefined;
|
|
23
|
+
Description?: string | undefined;
|
|
24
|
+
DisableSchemaValidation?: boolean | undefined;
|
|
25
|
+
DisableExecuteApiEndpoint?: boolean | undefined;
|
|
26
|
+
ImportInfo?: string[] | undefined;
|
|
27
27
|
Name: string | undefined;
|
|
28
28
|
ProtocolType: ProtocolType | undefined;
|
|
29
29
|
RouteSelectionExpression: string | undefined;
|
|
30
|
-
Tags?: Record<string, string
|
|
31
|
-
Version?: string;
|
|
32
|
-
Warnings?: string[];
|
|
30
|
+
Tags?: Record<string, string> | undefined;
|
|
31
|
+
Version?: string | undefined;
|
|
32
|
+
Warnings?: string[] | undefined;
|
|
33
33
|
}
|
|
34
34
|
export interface ApiMapping {
|
|
35
35
|
ApiId: string | undefined;
|
|
36
|
-
ApiMappingId?: string;
|
|
37
|
-
ApiMappingKey?: string;
|
|
36
|
+
ApiMappingId?: string | undefined;
|
|
37
|
+
ApiMappingKey?: string | undefined;
|
|
38
38
|
Stage: string | undefined;
|
|
39
39
|
}
|
|
40
40
|
export declare const AuthorizerType: {
|
|
@@ -44,20 +44,20 @@ export declare const AuthorizerType: {
|
|
|
44
44
|
export type AuthorizerType =
|
|
45
45
|
(typeof AuthorizerType)[keyof typeof AuthorizerType];
|
|
46
46
|
export interface JWTConfiguration {
|
|
47
|
-
Audience?: string[];
|
|
48
|
-
Issuer?: string;
|
|
47
|
+
Audience?: string[] | undefined;
|
|
48
|
+
Issuer?: string | undefined;
|
|
49
49
|
}
|
|
50
50
|
export interface Authorizer {
|
|
51
|
-
AuthorizerCredentialsArn?: string;
|
|
52
|
-
AuthorizerId?: string;
|
|
53
|
-
AuthorizerPayloadFormatVersion?: string;
|
|
54
|
-
AuthorizerResultTtlInSeconds?: number;
|
|
55
|
-
AuthorizerType?: AuthorizerType;
|
|
56
|
-
AuthorizerUri?: string;
|
|
57
|
-
EnableSimpleResponses?: boolean;
|
|
58
|
-
IdentitySource?: string[];
|
|
59
|
-
IdentityValidationExpression?: string;
|
|
60
|
-
JwtConfiguration?: JWTConfiguration;
|
|
51
|
+
AuthorizerCredentialsArn?: string | undefined;
|
|
52
|
+
AuthorizerId?: string | undefined;
|
|
53
|
+
AuthorizerPayloadFormatVersion?: string | undefined;
|
|
54
|
+
AuthorizerResultTtlInSeconds?: number | undefined;
|
|
55
|
+
AuthorizerType?: AuthorizerType | undefined;
|
|
56
|
+
AuthorizerUri?: string | undefined;
|
|
57
|
+
EnableSimpleResponses?: boolean | undefined;
|
|
58
|
+
IdentitySource?: string[] | undefined;
|
|
59
|
+
IdentityValidationExpression?: string | undefined;
|
|
60
|
+
JwtConfiguration?: JWTConfiguration | undefined;
|
|
61
61
|
Name: string | undefined;
|
|
62
62
|
}
|
|
63
63
|
export declare const DeploymentStatus: {
|
|
@@ -68,12 +68,12 @@ export declare const DeploymentStatus: {
|
|
|
68
68
|
export type DeploymentStatus =
|
|
69
69
|
(typeof DeploymentStatus)[keyof typeof DeploymentStatus];
|
|
70
70
|
export interface Deployment {
|
|
71
|
-
AutoDeployed?: boolean;
|
|
72
|
-
CreatedDate?: Date;
|
|
73
|
-
DeploymentId?: string;
|
|
74
|
-
DeploymentStatus?: DeploymentStatus;
|
|
75
|
-
DeploymentStatusMessage?: string;
|
|
76
|
-
Description?: string;
|
|
71
|
+
AutoDeployed?: boolean | undefined;
|
|
72
|
+
CreatedDate?: Date | undefined;
|
|
73
|
+
DeploymentId?: string | undefined;
|
|
74
|
+
DeploymentStatus?: DeploymentStatus | undefined;
|
|
75
|
+
DeploymentStatusMessage?: string | undefined;
|
|
76
|
+
Description?: string | undefined;
|
|
77
77
|
}
|
|
78
78
|
export declare const DomainNameStatus: {
|
|
79
79
|
readonly AVAILABLE: "AVAILABLE";
|
|
@@ -95,28 +95,28 @@ export declare const SecurityPolicy: {
|
|
|
95
95
|
export type SecurityPolicy =
|
|
96
96
|
(typeof SecurityPolicy)[keyof typeof SecurityPolicy];
|
|
97
97
|
export interface DomainNameConfiguration {
|
|
98
|
-
ApiGatewayDomainName?: string;
|
|
99
|
-
CertificateArn?: string;
|
|
100
|
-
CertificateName?: string;
|
|
101
|
-
CertificateUploadDate?: Date;
|
|
102
|
-
DomainNameStatus?: DomainNameStatus;
|
|
103
|
-
DomainNameStatusMessage?: string;
|
|
104
|
-
EndpointType?: EndpointType;
|
|
105
|
-
HostedZoneId?: string;
|
|
106
|
-
SecurityPolicy?: SecurityPolicy;
|
|
107
|
-
OwnershipVerificationCertificateArn?: string;
|
|
98
|
+
ApiGatewayDomainName?: string | undefined;
|
|
99
|
+
CertificateArn?: string | undefined;
|
|
100
|
+
CertificateName?: string | undefined;
|
|
101
|
+
CertificateUploadDate?: Date | undefined;
|
|
102
|
+
DomainNameStatus?: DomainNameStatus | undefined;
|
|
103
|
+
DomainNameStatusMessage?: string | undefined;
|
|
104
|
+
EndpointType?: EndpointType | undefined;
|
|
105
|
+
HostedZoneId?: string | undefined;
|
|
106
|
+
SecurityPolicy?: SecurityPolicy | undefined;
|
|
107
|
+
OwnershipVerificationCertificateArn?: string | undefined;
|
|
108
108
|
}
|
|
109
109
|
export interface MutualTlsAuthentication {
|
|
110
|
-
TruststoreUri?: string;
|
|
111
|
-
TruststoreVersion?: string;
|
|
112
|
-
TruststoreWarnings?: string[];
|
|
110
|
+
TruststoreUri?: string | undefined;
|
|
111
|
+
TruststoreVersion?: string | undefined;
|
|
112
|
+
TruststoreWarnings?: string[] | undefined;
|
|
113
113
|
}
|
|
114
114
|
export interface DomainName {
|
|
115
|
-
ApiMappingSelectionExpression?: string;
|
|
115
|
+
ApiMappingSelectionExpression?: string | undefined;
|
|
116
116
|
DomainName: string | undefined;
|
|
117
|
-
DomainNameConfigurations?: DomainNameConfiguration[];
|
|
118
|
-
MutualTlsAuthentication?: MutualTlsAuthentication;
|
|
119
|
-
Tags?: Record<string, string
|
|
117
|
+
DomainNameConfigurations?: DomainNameConfiguration[] | undefined;
|
|
118
|
+
MutualTlsAuthentication?: MutualTlsAuthentication | undefined;
|
|
119
|
+
Tags?: Record<string, string> | undefined;
|
|
120
120
|
}
|
|
121
121
|
export declare const ConnectionType: {
|
|
122
122
|
readonly INTERNET: "INTERNET";
|
|
@@ -147,44 +147,44 @@ export declare const PassthroughBehavior: {
|
|
|
147
147
|
export type PassthroughBehavior =
|
|
148
148
|
(typeof PassthroughBehavior)[keyof typeof PassthroughBehavior];
|
|
149
149
|
export interface TlsConfig {
|
|
150
|
-
ServerNameToVerify?: string;
|
|
150
|
+
ServerNameToVerify?: string | undefined;
|
|
151
151
|
}
|
|
152
152
|
export interface Integration {
|
|
153
|
-
ApiGatewayManaged?: boolean;
|
|
154
|
-
ConnectionId?: string;
|
|
155
|
-
ConnectionType?: ConnectionType;
|
|
156
|
-
ContentHandlingStrategy?: ContentHandlingStrategy;
|
|
157
|
-
CredentialsArn?: string;
|
|
158
|
-
Description?: string;
|
|
159
|
-
IntegrationId?: string;
|
|
160
|
-
IntegrationMethod?: string;
|
|
161
|
-
IntegrationResponseSelectionExpression?: string;
|
|
162
|
-
IntegrationSubtype?: string;
|
|
163
|
-
IntegrationType?: IntegrationType;
|
|
164
|
-
IntegrationUri?: string;
|
|
165
|
-
PassthroughBehavior?: PassthroughBehavior;
|
|
166
|
-
PayloadFormatVersion?: string;
|
|
167
|
-
RequestParameters?: Record<string, string
|
|
168
|
-
RequestTemplates?: Record<string, string
|
|
169
|
-
ResponseParameters?: Record<string, Record<string, string
|
|
170
|
-
TemplateSelectionExpression?: string;
|
|
171
|
-
TimeoutInMillis?: number;
|
|
172
|
-
TlsConfig?: TlsConfig;
|
|
153
|
+
ApiGatewayManaged?: boolean | undefined;
|
|
154
|
+
ConnectionId?: string | undefined;
|
|
155
|
+
ConnectionType?: ConnectionType | undefined;
|
|
156
|
+
ContentHandlingStrategy?: ContentHandlingStrategy | undefined;
|
|
157
|
+
CredentialsArn?: string | undefined;
|
|
158
|
+
Description?: string | undefined;
|
|
159
|
+
IntegrationId?: string | undefined;
|
|
160
|
+
IntegrationMethod?: string | undefined;
|
|
161
|
+
IntegrationResponseSelectionExpression?: string | undefined;
|
|
162
|
+
IntegrationSubtype?: string | undefined;
|
|
163
|
+
IntegrationType?: IntegrationType | undefined;
|
|
164
|
+
IntegrationUri?: string | undefined;
|
|
165
|
+
PassthroughBehavior?: PassthroughBehavior | undefined;
|
|
166
|
+
PayloadFormatVersion?: string | undefined;
|
|
167
|
+
RequestParameters?: Record<string, string> | undefined;
|
|
168
|
+
RequestTemplates?: Record<string, string> | undefined;
|
|
169
|
+
ResponseParameters?: Record<string, Record<string, string>> | undefined;
|
|
170
|
+
TemplateSelectionExpression?: string | undefined;
|
|
171
|
+
TimeoutInMillis?: number | undefined;
|
|
172
|
+
TlsConfig?: TlsConfig | undefined;
|
|
173
173
|
}
|
|
174
174
|
export interface IntegrationResponse {
|
|
175
|
-
ContentHandlingStrategy?: ContentHandlingStrategy;
|
|
176
|
-
IntegrationResponseId?: string;
|
|
175
|
+
ContentHandlingStrategy?: ContentHandlingStrategy | undefined;
|
|
176
|
+
IntegrationResponseId?: string | undefined;
|
|
177
177
|
IntegrationResponseKey: string | undefined;
|
|
178
|
-
ResponseParameters?: Record<string, string
|
|
179
|
-
ResponseTemplates?: Record<string, string
|
|
180
|
-
TemplateSelectionExpression?: string;
|
|
178
|
+
ResponseParameters?: Record<string, string> | undefined;
|
|
179
|
+
ResponseTemplates?: Record<string, string> | undefined;
|
|
180
|
+
TemplateSelectionExpression?: string | undefined;
|
|
181
181
|
}
|
|
182
182
|
export interface Model {
|
|
183
|
-
ContentType?: string;
|
|
184
|
-
Description?: string;
|
|
185
|
-
ModelId?: string;
|
|
183
|
+
ContentType?: string | undefined;
|
|
184
|
+
Description?: string | undefined;
|
|
185
|
+
ModelId?: string | undefined;
|
|
186
186
|
Name: string | undefined;
|
|
187
|
-
Schema?: string;
|
|
187
|
+
Schema?: string | undefined;
|
|
188
188
|
}
|
|
189
189
|
export declare const AuthorizationType: {
|
|
190
190
|
readonly AWS_IAM: "AWS_IAM";
|
|
@@ -195,33 +195,33 @@ export declare const AuthorizationType: {
|
|
|
195
195
|
export type AuthorizationType =
|
|
196
196
|
(typeof AuthorizationType)[keyof typeof AuthorizationType];
|
|
197
197
|
export interface ParameterConstraints {
|
|
198
|
-
Required?: boolean;
|
|
198
|
+
Required?: boolean | undefined;
|
|
199
199
|
}
|
|
200
200
|
export interface Route {
|
|
201
|
-
ApiGatewayManaged?: boolean;
|
|
202
|
-
ApiKeyRequired?: boolean;
|
|
203
|
-
AuthorizationScopes?: string[];
|
|
204
|
-
AuthorizationType?: AuthorizationType;
|
|
205
|
-
AuthorizerId?: string;
|
|
206
|
-
ModelSelectionExpression?: string;
|
|
207
|
-
OperationName?: string;
|
|
208
|
-
RequestModels?: Record<string, string
|
|
209
|
-
RequestParameters?: Record<string, ParameterConstraints
|
|
210
|
-
RouteId?: string;
|
|
201
|
+
ApiGatewayManaged?: boolean | undefined;
|
|
202
|
+
ApiKeyRequired?: boolean | undefined;
|
|
203
|
+
AuthorizationScopes?: string[] | undefined;
|
|
204
|
+
AuthorizationType?: AuthorizationType | undefined;
|
|
205
|
+
AuthorizerId?: string | undefined;
|
|
206
|
+
ModelSelectionExpression?: string | undefined;
|
|
207
|
+
OperationName?: string | undefined;
|
|
208
|
+
RequestModels?: Record<string, string> | undefined;
|
|
209
|
+
RequestParameters?: Record<string, ParameterConstraints> | undefined;
|
|
210
|
+
RouteId?: string | undefined;
|
|
211
211
|
RouteKey: string | undefined;
|
|
212
|
-
RouteResponseSelectionExpression?: string;
|
|
213
|
-
Target?: string;
|
|
212
|
+
RouteResponseSelectionExpression?: string | undefined;
|
|
213
|
+
Target?: string | undefined;
|
|
214
214
|
}
|
|
215
215
|
export interface RouteResponse {
|
|
216
|
-
ModelSelectionExpression?: string;
|
|
217
|
-
ResponseModels?: Record<string, string
|
|
218
|
-
ResponseParameters?: Record<string, ParameterConstraints
|
|
219
|
-
RouteResponseId?: string;
|
|
216
|
+
ModelSelectionExpression?: string | undefined;
|
|
217
|
+
ResponseModels?: Record<string, string> | undefined;
|
|
218
|
+
ResponseParameters?: Record<string, ParameterConstraints> | undefined;
|
|
219
|
+
RouteResponseId?: string | undefined;
|
|
220
220
|
RouteResponseKey: string | undefined;
|
|
221
221
|
}
|
|
222
222
|
export interface AccessLogSettings {
|
|
223
|
-
DestinationArn?: string;
|
|
224
|
-
Format?: string;
|
|
223
|
+
DestinationArn?: string | undefined;
|
|
224
|
+
Format?: string | undefined;
|
|
225
225
|
}
|
|
226
226
|
export declare const LoggingLevel: {
|
|
227
227
|
readonly ERROR: "ERROR";
|
|
@@ -230,27 +230,27 @@ export declare const LoggingLevel: {
|
|
|
230
230
|
};
|
|
231
231
|
export type LoggingLevel = (typeof LoggingLevel)[keyof typeof LoggingLevel];
|
|
232
232
|
export interface RouteSettings {
|
|
233
|
-
DataTraceEnabled?: boolean;
|
|
234
|
-
DetailedMetricsEnabled?: boolean;
|
|
235
|
-
LoggingLevel?: LoggingLevel;
|
|
236
|
-
ThrottlingBurstLimit?: number;
|
|
237
|
-
ThrottlingRateLimit?: number;
|
|
233
|
+
DataTraceEnabled?: boolean | undefined;
|
|
234
|
+
DetailedMetricsEnabled?: boolean | undefined;
|
|
235
|
+
LoggingLevel?: LoggingLevel | undefined;
|
|
236
|
+
ThrottlingBurstLimit?: number | undefined;
|
|
237
|
+
ThrottlingRateLimit?: number | undefined;
|
|
238
238
|
}
|
|
239
239
|
export interface Stage {
|
|
240
|
-
AccessLogSettings?: AccessLogSettings;
|
|
241
|
-
ApiGatewayManaged?: boolean;
|
|
242
|
-
AutoDeploy?: boolean;
|
|
243
|
-
ClientCertificateId?: string;
|
|
244
|
-
CreatedDate?: Date;
|
|
245
|
-
DefaultRouteSettings?: RouteSettings;
|
|
246
|
-
DeploymentId?: string;
|
|
247
|
-
Description?: string;
|
|
248
|
-
LastDeploymentStatusMessage?: string;
|
|
249
|
-
LastUpdatedDate?: Date;
|
|
250
|
-
RouteSettings?: Record<string, RouteSettings
|
|
240
|
+
AccessLogSettings?: AccessLogSettings | undefined;
|
|
241
|
+
ApiGatewayManaged?: boolean | undefined;
|
|
242
|
+
AutoDeploy?: boolean | undefined;
|
|
243
|
+
ClientCertificateId?: string | undefined;
|
|
244
|
+
CreatedDate?: Date | undefined;
|
|
245
|
+
DefaultRouteSettings?: RouteSettings | undefined;
|
|
246
|
+
DeploymentId?: string | undefined;
|
|
247
|
+
Description?: string | undefined;
|
|
248
|
+
LastDeploymentStatusMessage?: string | undefined;
|
|
249
|
+
LastUpdatedDate?: Date | undefined;
|
|
250
|
+
RouteSettings?: Record<string, RouteSettings> | undefined;
|
|
251
251
|
StageName: string | undefined;
|
|
252
|
-
StageVariables?: Record<string, string
|
|
253
|
-
Tags?: Record<string, string
|
|
252
|
+
StageVariables?: Record<string, string> | undefined;
|
|
253
|
+
Tags?: Record<string, string> | undefined;
|
|
254
254
|
}
|
|
255
255
|
export declare const VpcLinkStatus: {
|
|
256
256
|
readonly AVAILABLE: "AVAILABLE";
|
|
@@ -266,20 +266,20 @@ export declare const VpcLinkVersion: {
|
|
|
266
266
|
export type VpcLinkVersion =
|
|
267
267
|
(typeof VpcLinkVersion)[keyof typeof VpcLinkVersion];
|
|
268
268
|
export interface VpcLink {
|
|
269
|
-
CreatedDate?: Date;
|
|
269
|
+
CreatedDate?: Date | undefined;
|
|
270
270
|
Name: string | undefined;
|
|
271
271
|
SecurityGroupIds: string[] | undefined;
|
|
272
272
|
SubnetIds: string[] | undefined;
|
|
273
|
-
Tags?: Record<string, string
|
|
273
|
+
Tags?: Record<string, string> | undefined;
|
|
274
274
|
VpcLinkId: string | undefined;
|
|
275
|
-
VpcLinkStatus?: VpcLinkStatus;
|
|
276
|
-
VpcLinkStatusMessage?: string;
|
|
277
|
-
VpcLinkVersion?: VpcLinkVersion;
|
|
275
|
+
VpcLinkStatus?: VpcLinkStatus | undefined;
|
|
276
|
+
VpcLinkStatusMessage?: string | undefined;
|
|
277
|
+
VpcLinkVersion?: VpcLinkVersion | undefined;
|
|
278
278
|
}
|
|
279
279
|
export declare class AccessDeniedException extends __BaseException {
|
|
280
280
|
readonly name: "AccessDeniedException";
|
|
281
281
|
readonly $fault: "client";
|
|
282
|
-
Message?: string;
|
|
282
|
+
Message?: string | undefined;
|
|
283
283
|
constructor(
|
|
284
284
|
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
285
285
|
);
|
|
@@ -287,7 +287,7 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
287
287
|
export declare class BadRequestException extends __BaseException {
|
|
288
288
|
readonly name: "BadRequestException";
|
|
289
289
|
readonly $fault: "client";
|
|
290
|
-
Message?: string;
|
|
290
|
+
Message?: string | undefined;
|
|
291
291
|
constructor(
|
|
292
292
|
opts: __ExceptionOptionType<BadRequestException, __BaseException>
|
|
293
293
|
);
|
|
@@ -295,291 +295,291 @@ export declare class BadRequestException extends __BaseException {
|
|
|
295
295
|
export declare class ConflictException extends __BaseException {
|
|
296
296
|
readonly name: "ConflictException";
|
|
297
297
|
readonly $fault: "client";
|
|
298
|
-
Message?: string;
|
|
298
|
+
Message?: string | undefined;
|
|
299
299
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
300
300
|
}
|
|
301
301
|
export interface CreateApiRequest {
|
|
302
|
-
ApiKeySelectionExpression?: string;
|
|
303
|
-
CorsConfiguration?: Cors;
|
|
304
|
-
CredentialsArn?: string;
|
|
305
|
-
Description?: string;
|
|
306
|
-
DisableSchemaValidation?: boolean;
|
|
307
|
-
DisableExecuteApiEndpoint?: boolean;
|
|
302
|
+
ApiKeySelectionExpression?: string | undefined;
|
|
303
|
+
CorsConfiguration?: Cors | undefined;
|
|
304
|
+
CredentialsArn?: string | undefined;
|
|
305
|
+
Description?: string | undefined;
|
|
306
|
+
DisableSchemaValidation?: boolean | undefined;
|
|
307
|
+
DisableExecuteApiEndpoint?: boolean | undefined;
|
|
308
308
|
Name: string | undefined;
|
|
309
309
|
ProtocolType: ProtocolType | undefined;
|
|
310
|
-
RouteKey?: string;
|
|
311
|
-
RouteSelectionExpression?: string;
|
|
312
|
-
Tags?: Record<string, string
|
|
313
|
-
Target?: string;
|
|
314
|
-
Version?: string;
|
|
310
|
+
RouteKey?: string | undefined;
|
|
311
|
+
RouteSelectionExpression?: string | undefined;
|
|
312
|
+
Tags?: Record<string, string> | undefined;
|
|
313
|
+
Target?: string | undefined;
|
|
314
|
+
Version?: string | undefined;
|
|
315
315
|
}
|
|
316
316
|
export interface CreateApiResponse {
|
|
317
|
-
ApiEndpoint?: string;
|
|
318
|
-
ApiGatewayManaged?: boolean;
|
|
319
|
-
ApiId?: string;
|
|
320
|
-
ApiKeySelectionExpression?: string;
|
|
321
|
-
CorsConfiguration?: Cors;
|
|
322
|
-
CreatedDate?: Date;
|
|
323
|
-
Description?: string;
|
|
324
|
-
DisableSchemaValidation?: boolean;
|
|
325
|
-
DisableExecuteApiEndpoint?: boolean;
|
|
326
|
-
ImportInfo?: string[];
|
|
327
|
-
Name?: string;
|
|
328
|
-
ProtocolType?: ProtocolType;
|
|
329
|
-
RouteSelectionExpression?: string;
|
|
330
|
-
Tags?: Record<string, string
|
|
331
|
-
Version?: string;
|
|
332
|
-
Warnings?: string[];
|
|
317
|
+
ApiEndpoint?: string | undefined;
|
|
318
|
+
ApiGatewayManaged?: boolean | undefined;
|
|
319
|
+
ApiId?: string | undefined;
|
|
320
|
+
ApiKeySelectionExpression?: string | undefined;
|
|
321
|
+
CorsConfiguration?: Cors | undefined;
|
|
322
|
+
CreatedDate?: Date | undefined;
|
|
323
|
+
Description?: string | undefined;
|
|
324
|
+
DisableSchemaValidation?: boolean | undefined;
|
|
325
|
+
DisableExecuteApiEndpoint?: boolean | undefined;
|
|
326
|
+
ImportInfo?: string[] | undefined;
|
|
327
|
+
Name?: string | undefined;
|
|
328
|
+
ProtocolType?: ProtocolType | undefined;
|
|
329
|
+
RouteSelectionExpression?: string | undefined;
|
|
330
|
+
Tags?: Record<string, string> | undefined;
|
|
331
|
+
Version?: string | undefined;
|
|
332
|
+
Warnings?: string[] | undefined;
|
|
333
333
|
}
|
|
334
334
|
export declare class NotFoundException extends __BaseException {
|
|
335
335
|
readonly name: "NotFoundException";
|
|
336
336
|
readonly $fault: "client";
|
|
337
|
-
Message?: string;
|
|
338
|
-
ResourceType?: string;
|
|
337
|
+
Message?: string | undefined;
|
|
338
|
+
ResourceType?: string | undefined;
|
|
339
339
|
constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
|
|
340
340
|
}
|
|
341
341
|
export declare class TooManyRequestsException extends __BaseException {
|
|
342
342
|
readonly name: "TooManyRequestsException";
|
|
343
343
|
readonly $fault: "client";
|
|
344
|
-
LimitType?: string;
|
|
345
|
-
Message?: string;
|
|
344
|
+
LimitType?: string | undefined;
|
|
345
|
+
Message?: string | undefined;
|
|
346
346
|
constructor(
|
|
347
347
|
opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>
|
|
348
348
|
);
|
|
349
349
|
}
|
|
350
350
|
export interface CreateApiMappingRequest {
|
|
351
351
|
ApiId: string | undefined;
|
|
352
|
-
ApiMappingKey?: string;
|
|
352
|
+
ApiMappingKey?: string | undefined;
|
|
353
353
|
DomainName: string | undefined;
|
|
354
354
|
Stage: string | undefined;
|
|
355
355
|
}
|
|
356
356
|
export interface CreateApiMappingResponse {
|
|
357
|
-
ApiId?: string;
|
|
358
|
-
ApiMappingId?: string;
|
|
359
|
-
ApiMappingKey?: string;
|
|
360
|
-
Stage?: string;
|
|
357
|
+
ApiId?: string | undefined;
|
|
358
|
+
ApiMappingId?: string | undefined;
|
|
359
|
+
ApiMappingKey?: string | undefined;
|
|
360
|
+
Stage?: string | undefined;
|
|
361
361
|
}
|
|
362
362
|
export interface CreateAuthorizerRequest {
|
|
363
363
|
ApiId: string | undefined;
|
|
364
|
-
AuthorizerCredentialsArn?: string;
|
|
365
|
-
AuthorizerPayloadFormatVersion?: string;
|
|
366
|
-
AuthorizerResultTtlInSeconds?: number;
|
|
364
|
+
AuthorizerCredentialsArn?: string | undefined;
|
|
365
|
+
AuthorizerPayloadFormatVersion?: string | undefined;
|
|
366
|
+
AuthorizerResultTtlInSeconds?: number | undefined;
|
|
367
367
|
AuthorizerType: AuthorizerType | undefined;
|
|
368
|
-
AuthorizerUri?: string;
|
|
369
|
-
EnableSimpleResponses?: boolean;
|
|
368
|
+
AuthorizerUri?: string | undefined;
|
|
369
|
+
EnableSimpleResponses?: boolean | undefined;
|
|
370
370
|
IdentitySource: string[] | undefined;
|
|
371
|
-
IdentityValidationExpression?: string;
|
|
372
|
-
JwtConfiguration?: JWTConfiguration;
|
|
371
|
+
IdentityValidationExpression?: string | undefined;
|
|
372
|
+
JwtConfiguration?: JWTConfiguration | undefined;
|
|
373
373
|
Name: string | undefined;
|
|
374
374
|
}
|
|
375
375
|
export interface CreateAuthorizerResponse {
|
|
376
|
-
AuthorizerCredentialsArn?: string;
|
|
377
|
-
AuthorizerId?: string;
|
|
378
|
-
AuthorizerPayloadFormatVersion?: string;
|
|
379
|
-
AuthorizerResultTtlInSeconds?: number;
|
|
380
|
-
AuthorizerType?: AuthorizerType;
|
|
381
|
-
AuthorizerUri?: string;
|
|
382
|
-
EnableSimpleResponses?: boolean;
|
|
383
|
-
IdentitySource?: string[];
|
|
384
|
-
IdentityValidationExpression?: string;
|
|
385
|
-
JwtConfiguration?: JWTConfiguration;
|
|
386
|
-
Name?: string;
|
|
376
|
+
AuthorizerCredentialsArn?: string | undefined;
|
|
377
|
+
AuthorizerId?: string | undefined;
|
|
378
|
+
AuthorizerPayloadFormatVersion?: string | undefined;
|
|
379
|
+
AuthorizerResultTtlInSeconds?: number | undefined;
|
|
380
|
+
AuthorizerType?: AuthorizerType | undefined;
|
|
381
|
+
AuthorizerUri?: string | undefined;
|
|
382
|
+
EnableSimpleResponses?: boolean | undefined;
|
|
383
|
+
IdentitySource?: string[] | undefined;
|
|
384
|
+
IdentityValidationExpression?: string | undefined;
|
|
385
|
+
JwtConfiguration?: JWTConfiguration | undefined;
|
|
386
|
+
Name?: string | undefined;
|
|
387
387
|
}
|
|
388
388
|
export interface CreateDeploymentRequest {
|
|
389
389
|
ApiId: string | undefined;
|
|
390
|
-
Description?: string;
|
|
391
|
-
StageName?: string;
|
|
390
|
+
Description?: string | undefined;
|
|
391
|
+
StageName?: string | undefined;
|
|
392
392
|
}
|
|
393
393
|
export interface CreateDeploymentResponse {
|
|
394
|
-
AutoDeployed?: boolean;
|
|
395
|
-
CreatedDate?: Date;
|
|
396
|
-
DeploymentId?: string;
|
|
397
|
-
DeploymentStatus?: DeploymentStatus;
|
|
398
|
-
DeploymentStatusMessage?: string;
|
|
399
|
-
Description?: string;
|
|
394
|
+
AutoDeployed?: boolean | undefined;
|
|
395
|
+
CreatedDate?: Date | undefined;
|
|
396
|
+
DeploymentId?: string | undefined;
|
|
397
|
+
DeploymentStatus?: DeploymentStatus | undefined;
|
|
398
|
+
DeploymentStatusMessage?: string | undefined;
|
|
399
|
+
Description?: string | undefined;
|
|
400
400
|
}
|
|
401
401
|
export interface MutualTlsAuthenticationInput {
|
|
402
|
-
TruststoreUri?: string;
|
|
403
|
-
TruststoreVersion?: string;
|
|
402
|
+
TruststoreUri?: string | undefined;
|
|
403
|
+
TruststoreVersion?: string | undefined;
|
|
404
404
|
}
|
|
405
405
|
export interface CreateDomainNameRequest {
|
|
406
406
|
DomainName: string | undefined;
|
|
407
|
-
DomainNameConfigurations?: DomainNameConfiguration[];
|
|
408
|
-
MutualTlsAuthentication?: MutualTlsAuthenticationInput;
|
|
409
|
-
Tags?: Record<string, string
|
|
407
|
+
DomainNameConfigurations?: DomainNameConfiguration[] | undefined;
|
|
408
|
+
MutualTlsAuthentication?: MutualTlsAuthenticationInput | undefined;
|
|
409
|
+
Tags?: Record<string, string> | undefined;
|
|
410
410
|
}
|
|
411
411
|
export interface CreateDomainNameResponse {
|
|
412
|
-
ApiMappingSelectionExpression?: string;
|
|
413
|
-
DomainName?: string;
|
|
414
|
-
DomainNameConfigurations?: DomainNameConfiguration[];
|
|
415
|
-
MutualTlsAuthentication?: MutualTlsAuthentication;
|
|
416
|
-
Tags?: Record<string, string
|
|
412
|
+
ApiMappingSelectionExpression?: string | undefined;
|
|
413
|
+
DomainName?: string | undefined;
|
|
414
|
+
DomainNameConfigurations?: DomainNameConfiguration[] | undefined;
|
|
415
|
+
MutualTlsAuthentication?: MutualTlsAuthentication | undefined;
|
|
416
|
+
Tags?: Record<string, string> | undefined;
|
|
417
417
|
}
|
|
418
418
|
export interface TlsConfigInput {
|
|
419
|
-
ServerNameToVerify?: string;
|
|
419
|
+
ServerNameToVerify?: string | undefined;
|
|
420
420
|
}
|
|
421
421
|
export interface CreateIntegrationRequest {
|
|
422
422
|
ApiId: string | undefined;
|
|
423
|
-
ConnectionId?: string;
|
|
424
|
-
ConnectionType?: ConnectionType;
|
|
425
|
-
ContentHandlingStrategy?: ContentHandlingStrategy;
|
|
426
|
-
CredentialsArn?: string;
|
|
427
|
-
Description?: string;
|
|
428
|
-
IntegrationMethod?: string;
|
|
429
|
-
IntegrationSubtype?: string;
|
|
423
|
+
ConnectionId?: string | undefined;
|
|
424
|
+
ConnectionType?: ConnectionType | undefined;
|
|
425
|
+
ContentHandlingStrategy?: ContentHandlingStrategy | undefined;
|
|
426
|
+
CredentialsArn?: string | undefined;
|
|
427
|
+
Description?: string | undefined;
|
|
428
|
+
IntegrationMethod?: string | undefined;
|
|
429
|
+
IntegrationSubtype?: string | undefined;
|
|
430
430
|
IntegrationType: IntegrationType | undefined;
|
|
431
|
-
IntegrationUri?: string;
|
|
432
|
-
PassthroughBehavior?: PassthroughBehavior;
|
|
433
|
-
PayloadFormatVersion?: string;
|
|
434
|
-
RequestParameters?: Record<string, string
|
|
435
|
-
RequestTemplates?: Record<string, string
|
|
436
|
-
ResponseParameters?: Record<string, Record<string, string
|
|
437
|
-
TemplateSelectionExpression?: string;
|
|
438
|
-
TimeoutInMillis?: number;
|
|
439
|
-
TlsConfig?: TlsConfigInput;
|
|
431
|
+
IntegrationUri?: string | undefined;
|
|
432
|
+
PassthroughBehavior?: PassthroughBehavior | undefined;
|
|
433
|
+
PayloadFormatVersion?: string | undefined;
|
|
434
|
+
RequestParameters?: Record<string, string> | undefined;
|
|
435
|
+
RequestTemplates?: Record<string, string> | undefined;
|
|
436
|
+
ResponseParameters?: Record<string, Record<string, string>> | undefined;
|
|
437
|
+
TemplateSelectionExpression?: string | undefined;
|
|
438
|
+
TimeoutInMillis?: number | undefined;
|
|
439
|
+
TlsConfig?: TlsConfigInput | undefined;
|
|
440
440
|
}
|
|
441
441
|
export interface CreateIntegrationResult {
|
|
442
|
-
ApiGatewayManaged?: boolean;
|
|
443
|
-
ConnectionId?: string;
|
|
444
|
-
ConnectionType?: ConnectionType;
|
|
445
|
-
ContentHandlingStrategy?: ContentHandlingStrategy;
|
|
446
|
-
CredentialsArn?: string;
|
|
447
|
-
Description?: string;
|
|
448
|
-
IntegrationId?: string;
|
|
449
|
-
IntegrationMethod?: string;
|
|
450
|
-
IntegrationResponseSelectionExpression?: string;
|
|
451
|
-
IntegrationSubtype?: string;
|
|
452
|
-
IntegrationType?: IntegrationType;
|
|
453
|
-
IntegrationUri?: string;
|
|
454
|
-
PassthroughBehavior?: PassthroughBehavior;
|
|
455
|
-
PayloadFormatVersion?: string;
|
|
456
|
-
RequestParameters?: Record<string, string
|
|
457
|
-
RequestTemplates?: Record<string, string
|
|
458
|
-
ResponseParameters?: Record<string, Record<string, string
|
|
459
|
-
TemplateSelectionExpression?: string;
|
|
460
|
-
TimeoutInMillis?: number;
|
|
461
|
-
TlsConfig?: TlsConfig;
|
|
442
|
+
ApiGatewayManaged?: boolean | undefined;
|
|
443
|
+
ConnectionId?: string | undefined;
|
|
444
|
+
ConnectionType?: ConnectionType | undefined;
|
|
445
|
+
ContentHandlingStrategy?: ContentHandlingStrategy | undefined;
|
|
446
|
+
CredentialsArn?: string | undefined;
|
|
447
|
+
Description?: string | undefined;
|
|
448
|
+
IntegrationId?: string | undefined;
|
|
449
|
+
IntegrationMethod?: string | undefined;
|
|
450
|
+
IntegrationResponseSelectionExpression?: string | undefined;
|
|
451
|
+
IntegrationSubtype?: string | undefined;
|
|
452
|
+
IntegrationType?: IntegrationType | undefined;
|
|
453
|
+
IntegrationUri?: string | undefined;
|
|
454
|
+
PassthroughBehavior?: PassthroughBehavior | undefined;
|
|
455
|
+
PayloadFormatVersion?: string | undefined;
|
|
456
|
+
RequestParameters?: Record<string, string> | undefined;
|
|
457
|
+
RequestTemplates?: Record<string, string> | undefined;
|
|
458
|
+
ResponseParameters?: Record<string, Record<string, string>> | undefined;
|
|
459
|
+
TemplateSelectionExpression?: string | undefined;
|
|
460
|
+
TimeoutInMillis?: number | undefined;
|
|
461
|
+
TlsConfig?: TlsConfig | undefined;
|
|
462
462
|
}
|
|
463
463
|
export interface CreateIntegrationResponseRequest {
|
|
464
464
|
ApiId: string | undefined;
|
|
465
|
-
ContentHandlingStrategy?: ContentHandlingStrategy;
|
|
465
|
+
ContentHandlingStrategy?: ContentHandlingStrategy | undefined;
|
|
466
466
|
IntegrationId: string | undefined;
|
|
467
467
|
IntegrationResponseKey: string | undefined;
|
|
468
|
-
ResponseParameters?: Record<string, string
|
|
469
|
-
ResponseTemplates?: Record<string, string
|
|
470
|
-
TemplateSelectionExpression?: string;
|
|
468
|
+
ResponseParameters?: Record<string, string> | undefined;
|
|
469
|
+
ResponseTemplates?: Record<string, string> | undefined;
|
|
470
|
+
TemplateSelectionExpression?: string | undefined;
|
|
471
471
|
}
|
|
472
472
|
export interface CreateIntegrationResponseResponse {
|
|
473
|
-
ContentHandlingStrategy?: ContentHandlingStrategy;
|
|
474
|
-
IntegrationResponseId?: string;
|
|
475
|
-
IntegrationResponseKey?: string;
|
|
476
|
-
ResponseParameters?: Record<string, string
|
|
477
|
-
ResponseTemplates?: Record<string, string
|
|
478
|
-
TemplateSelectionExpression?: string;
|
|
473
|
+
ContentHandlingStrategy?: ContentHandlingStrategy | undefined;
|
|
474
|
+
IntegrationResponseId?: string | undefined;
|
|
475
|
+
IntegrationResponseKey?: string | undefined;
|
|
476
|
+
ResponseParameters?: Record<string, string> | undefined;
|
|
477
|
+
ResponseTemplates?: Record<string, string> | undefined;
|
|
478
|
+
TemplateSelectionExpression?: string | undefined;
|
|
479
479
|
}
|
|
480
480
|
export interface CreateModelRequest {
|
|
481
481
|
ApiId: string | undefined;
|
|
482
|
-
ContentType?: string;
|
|
483
|
-
Description?: string;
|
|
482
|
+
ContentType?: string | undefined;
|
|
483
|
+
Description?: string | undefined;
|
|
484
484
|
Name: string | undefined;
|
|
485
485
|
Schema: string | undefined;
|
|
486
486
|
}
|
|
487
487
|
export interface CreateModelResponse {
|
|
488
|
-
ContentType?: string;
|
|
489
|
-
Description?: string;
|
|
490
|
-
ModelId?: string;
|
|
491
|
-
Name?: string;
|
|
492
|
-
Schema?: string;
|
|
488
|
+
ContentType?: string | undefined;
|
|
489
|
+
Description?: string | undefined;
|
|
490
|
+
ModelId?: string | undefined;
|
|
491
|
+
Name?: string | undefined;
|
|
492
|
+
Schema?: string | undefined;
|
|
493
493
|
}
|
|
494
494
|
export interface CreateRouteRequest {
|
|
495
495
|
ApiId: string | undefined;
|
|
496
|
-
ApiKeyRequired?: boolean;
|
|
497
|
-
AuthorizationScopes?: string[];
|
|
498
|
-
AuthorizationType?: AuthorizationType;
|
|
499
|
-
AuthorizerId?: string;
|
|
500
|
-
ModelSelectionExpression?: string;
|
|
501
|
-
OperationName?: string;
|
|
502
|
-
RequestModels?: Record<string, string
|
|
503
|
-
RequestParameters?: Record<string, ParameterConstraints
|
|
496
|
+
ApiKeyRequired?: boolean | undefined;
|
|
497
|
+
AuthorizationScopes?: string[] | undefined;
|
|
498
|
+
AuthorizationType?: AuthorizationType | undefined;
|
|
499
|
+
AuthorizerId?: string | undefined;
|
|
500
|
+
ModelSelectionExpression?: string | undefined;
|
|
501
|
+
OperationName?: string | undefined;
|
|
502
|
+
RequestModels?: Record<string, string> | undefined;
|
|
503
|
+
RequestParameters?: Record<string, ParameterConstraints> | undefined;
|
|
504
504
|
RouteKey: string | undefined;
|
|
505
|
-
RouteResponseSelectionExpression?: string;
|
|
506
|
-
Target?: string;
|
|
505
|
+
RouteResponseSelectionExpression?: string | undefined;
|
|
506
|
+
Target?: string | undefined;
|
|
507
507
|
}
|
|
508
508
|
export interface CreateRouteResult {
|
|
509
|
-
ApiGatewayManaged?: boolean;
|
|
510
|
-
ApiKeyRequired?: boolean;
|
|
511
|
-
AuthorizationScopes?: string[];
|
|
512
|
-
AuthorizationType?: AuthorizationType;
|
|
513
|
-
AuthorizerId?: string;
|
|
514
|
-
ModelSelectionExpression?: string;
|
|
515
|
-
OperationName?: string;
|
|
516
|
-
RequestModels?: Record<string, string
|
|
517
|
-
RequestParameters?: Record<string, ParameterConstraints
|
|
518
|
-
RouteId?: string;
|
|
519
|
-
RouteKey?: string;
|
|
520
|
-
RouteResponseSelectionExpression?: string;
|
|
521
|
-
Target?: string;
|
|
509
|
+
ApiGatewayManaged?: boolean | undefined;
|
|
510
|
+
ApiKeyRequired?: boolean | undefined;
|
|
511
|
+
AuthorizationScopes?: string[] | undefined;
|
|
512
|
+
AuthorizationType?: AuthorizationType | undefined;
|
|
513
|
+
AuthorizerId?: string | undefined;
|
|
514
|
+
ModelSelectionExpression?: string | undefined;
|
|
515
|
+
OperationName?: string | undefined;
|
|
516
|
+
RequestModels?: Record<string, string> | undefined;
|
|
517
|
+
RequestParameters?: Record<string, ParameterConstraints> | undefined;
|
|
518
|
+
RouteId?: string | undefined;
|
|
519
|
+
RouteKey?: string | undefined;
|
|
520
|
+
RouteResponseSelectionExpression?: string | undefined;
|
|
521
|
+
Target?: string | undefined;
|
|
522
522
|
}
|
|
523
523
|
export interface CreateRouteResponseRequest {
|
|
524
524
|
ApiId: string | undefined;
|
|
525
|
-
ModelSelectionExpression?: string;
|
|
526
|
-
ResponseModels?: Record<string, string
|
|
527
|
-
ResponseParameters?: Record<string, ParameterConstraints
|
|
525
|
+
ModelSelectionExpression?: string | undefined;
|
|
526
|
+
ResponseModels?: Record<string, string> | undefined;
|
|
527
|
+
ResponseParameters?: Record<string, ParameterConstraints> | undefined;
|
|
528
528
|
RouteId: string | undefined;
|
|
529
529
|
RouteResponseKey: string | undefined;
|
|
530
530
|
}
|
|
531
531
|
export interface CreateRouteResponseResponse {
|
|
532
|
-
ModelSelectionExpression?: string;
|
|
533
|
-
ResponseModels?: Record<string, string
|
|
534
|
-
ResponseParameters?: Record<string, ParameterConstraints
|
|
535
|
-
RouteResponseId?: string;
|
|
536
|
-
RouteResponseKey?: string;
|
|
532
|
+
ModelSelectionExpression?: string | undefined;
|
|
533
|
+
ResponseModels?: Record<string, string> | undefined;
|
|
534
|
+
ResponseParameters?: Record<string, ParameterConstraints> | undefined;
|
|
535
|
+
RouteResponseId?: string | undefined;
|
|
536
|
+
RouteResponseKey?: string | undefined;
|
|
537
537
|
}
|
|
538
538
|
export interface CreateStageRequest {
|
|
539
|
-
AccessLogSettings?: AccessLogSettings;
|
|
539
|
+
AccessLogSettings?: AccessLogSettings | undefined;
|
|
540
540
|
ApiId: string | undefined;
|
|
541
|
-
AutoDeploy?: boolean;
|
|
542
|
-
ClientCertificateId?: string;
|
|
543
|
-
DefaultRouteSettings?: RouteSettings;
|
|
544
|
-
DeploymentId?: string;
|
|
545
|
-
Description?: string;
|
|
546
|
-
RouteSettings?: Record<string, RouteSettings
|
|
541
|
+
AutoDeploy?: boolean | undefined;
|
|
542
|
+
ClientCertificateId?: string | undefined;
|
|
543
|
+
DefaultRouteSettings?: RouteSettings | undefined;
|
|
544
|
+
DeploymentId?: string | undefined;
|
|
545
|
+
Description?: string | undefined;
|
|
546
|
+
RouteSettings?: Record<string, RouteSettings> | undefined;
|
|
547
547
|
StageName: string | undefined;
|
|
548
|
-
StageVariables?: Record<string, string
|
|
549
|
-
Tags?: Record<string, string
|
|
548
|
+
StageVariables?: Record<string, string> | undefined;
|
|
549
|
+
Tags?: Record<string, string> | undefined;
|
|
550
550
|
}
|
|
551
551
|
export interface CreateStageResponse {
|
|
552
|
-
AccessLogSettings?: AccessLogSettings;
|
|
553
|
-
ApiGatewayManaged?: boolean;
|
|
554
|
-
AutoDeploy?: boolean;
|
|
555
|
-
ClientCertificateId?: string;
|
|
556
|
-
CreatedDate?: Date;
|
|
557
|
-
DefaultRouteSettings?: RouteSettings;
|
|
558
|
-
DeploymentId?: string;
|
|
559
|
-
Description?: string;
|
|
560
|
-
LastDeploymentStatusMessage?: string;
|
|
561
|
-
LastUpdatedDate?: Date;
|
|
562
|
-
RouteSettings?: Record<string, RouteSettings
|
|
563
|
-
StageName?: string;
|
|
564
|
-
StageVariables?: Record<string, string
|
|
565
|
-
Tags?: Record<string, string
|
|
552
|
+
AccessLogSettings?: AccessLogSettings | undefined;
|
|
553
|
+
ApiGatewayManaged?: boolean | undefined;
|
|
554
|
+
AutoDeploy?: boolean | undefined;
|
|
555
|
+
ClientCertificateId?: string | undefined;
|
|
556
|
+
CreatedDate?: Date | undefined;
|
|
557
|
+
DefaultRouteSettings?: RouteSettings | undefined;
|
|
558
|
+
DeploymentId?: string | undefined;
|
|
559
|
+
Description?: string | undefined;
|
|
560
|
+
LastDeploymentStatusMessage?: string | undefined;
|
|
561
|
+
LastUpdatedDate?: Date | undefined;
|
|
562
|
+
RouteSettings?: Record<string, RouteSettings> | undefined;
|
|
563
|
+
StageName?: string | undefined;
|
|
564
|
+
StageVariables?: Record<string, string> | undefined;
|
|
565
|
+
Tags?: Record<string, string> | undefined;
|
|
566
566
|
}
|
|
567
567
|
export interface CreateVpcLinkRequest {
|
|
568
568
|
Name: string | undefined;
|
|
569
|
-
SecurityGroupIds?: string[];
|
|
569
|
+
SecurityGroupIds?: string[] | undefined;
|
|
570
570
|
SubnetIds: string[] | undefined;
|
|
571
|
-
Tags?: Record<string, string
|
|
571
|
+
Tags?: Record<string, string> | undefined;
|
|
572
572
|
}
|
|
573
573
|
export interface CreateVpcLinkResponse {
|
|
574
|
-
CreatedDate?: Date;
|
|
575
|
-
Name?: string;
|
|
576
|
-
SecurityGroupIds?: string[];
|
|
577
|
-
SubnetIds?: string[];
|
|
578
|
-
Tags?: Record<string, string
|
|
579
|
-
VpcLinkId?: string;
|
|
580
|
-
VpcLinkStatus?: VpcLinkStatus;
|
|
581
|
-
VpcLinkStatusMessage?: string;
|
|
582
|
-
VpcLinkVersion?: VpcLinkVersion;
|
|
574
|
+
CreatedDate?: Date | undefined;
|
|
575
|
+
Name?: string | undefined;
|
|
576
|
+
SecurityGroupIds?: string[] | undefined;
|
|
577
|
+
SubnetIds?: string[] | undefined;
|
|
578
|
+
Tags?: Record<string, string> | undefined;
|
|
579
|
+
VpcLinkId?: string | undefined;
|
|
580
|
+
VpcLinkStatus?: VpcLinkStatus | undefined;
|
|
581
|
+
VpcLinkStatusMessage?: string | undefined;
|
|
582
|
+
VpcLinkVersion?: VpcLinkVersion | undefined;
|
|
583
583
|
}
|
|
584
584
|
export interface DeleteAccessLogSettingsRequest {
|
|
585
585
|
ApiId: string | undefined;
|
|
@@ -648,153 +648,153 @@ export interface DeleteVpcLinkRequest {
|
|
|
648
648
|
export interface DeleteVpcLinkResponse {}
|
|
649
649
|
export interface ExportApiRequest {
|
|
650
650
|
ApiId: string | undefined;
|
|
651
|
-
ExportVersion?: string;
|
|
652
|
-
IncludeExtensions?: boolean;
|
|
651
|
+
ExportVersion?: string | undefined;
|
|
652
|
+
IncludeExtensions?: boolean | undefined;
|
|
653
653
|
OutputType: string | undefined;
|
|
654
654
|
Specification: string | undefined;
|
|
655
|
-
StageName?: string;
|
|
655
|
+
StageName?: string | undefined;
|
|
656
656
|
}
|
|
657
657
|
export interface ExportApiResponse {
|
|
658
|
-
body?: Uint8Array;
|
|
658
|
+
body?: Uint8Array | undefined;
|
|
659
659
|
}
|
|
660
660
|
export interface GetApiRequest {
|
|
661
661
|
ApiId: string | undefined;
|
|
662
662
|
}
|
|
663
663
|
export interface GetApiResponse {
|
|
664
|
-
ApiEndpoint?: string;
|
|
665
|
-
ApiGatewayManaged?: boolean;
|
|
666
|
-
ApiId?: string;
|
|
667
|
-
ApiKeySelectionExpression?: string;
|
|
668
|
-
CorsConfiguration?: Cors;
|
|
669
|
-
CreatedDate?: Date;
|
|
670
|
-
Description?: string;
|
|
671
|
-
DisableSchemaValidation?: boolean;
|
|
672
|
-
DisableExecuteApiEndpoint?: boolean;
|
|
673
|
-
ImportInfo?: string[];
|
|
674
|
-
Name?: string;
|
|
675
|
-
ProtocolType?: ProtocolType;
|
|
676
|
-
RouteSelectionExpression?: string;
|
|
677
|
-
Tags?: Record<string, string
|
|
678
|
-
Version?: string;
|
|
679
|
-
Warnings?: string[];
|
|
664
|
+
ApiEndpoint?: string | undefined;
|
|
665
|
+
ApiGatewayManaged?: boolean | undefined;
|
|
666
|
+
ApiId?: string | undefined;
|
|
667
|
+
ApiKeySelectionExpression?: string | undefined;
|
|
668
|
+
CorsConfiguration?: Cors | undefined;
|
|
669
|
+
CreatedDate?: Date | undefined;
|
|
670
|
+
Description?: string | undefined;
|
|
671
|
+
DisableSchemaValidation?: boolean | undefined;
|
|
672
|
+
DisableExecuteApiEndpoint?: boolean | undefined;
|
|
673
|
+
ImportInfo?: string[] | undefined;
|
|
674
|
+
Name?: string | undefined;
|
|
675
|
+
ProtocolType?: ProtocolType | undefined;
|
|
676
|
+
RouteSelectionExpression?: string | undefined;
|
|
677
|
+
Tags?: Record<string, string> | undefined;
|
|
678
|
+
Version?: string | undefined;
|
|
679
|
+
Warnings?: string[] | undefined;
|
|
680
680
|
}
|
|
681
681
|
export interface GetApiMappingRequest {
|
|
682
682
|
ApiMappingId: string | undefined;
|
|
683
683
|
DomainName: string | undefined;
|
|
684
684
|
}
|
|
685
685
|
export interface GetApiMappingResponse {
|
|
686
|
-
ApiId?: string;
|
|
687
|
-
ApiMappingId?: string;
|
|
688
|
-
ApiMappingKey?: string;
|
|
689
|
-
Stage?: string;
|
|
686
|
+
ApiId?: string | undefined;
|
|
687
|
+
ApiMappingId?: string | undefined;
|
|
688
|
+
ApiMappingKey?: string | undefined;
|
|
689
|
+
Stage?: string | undefined;
|
|
690
690
|
}
|
|
691
691
|
export interface GetApiMappingsRequest {
|
|
692
692
|
DomainName: string | undefined;
|
|
693
|
-
MaxResults?: string;
|
|
694
|
-
NextToken?: string;
|
|
693
|
+
MaxResults?: string | undefined;
|
|
694
|
+
NextToken?: string | undefined;
|
|
695
695
|
}
|
|
696
696
|
export interface GetApiMappingsResponse {
|
|
697
|
-
Items?: ApiMapping[];
|
|
698
|
-
NextToken?: string;
|
|
697
|
+
Items?: ApiMapping[] | undefined;
|
|
698
|
+
NextToken?: string | undefined;
|
|
699
699
|
}
|
|
700
700
|
export interface GetApisRequest {
|
|
701
|
-
MaxResults?: string;
|
|
702
|
-
NextToken?: string;
|
|
701
|
+
MaxResults?: string | undefined;
|
|
702
|
+
NextToken?: string | undefined;
|
|
703
703
|
}
|
|
704
704
|
export interface GetApisResponse {
|
|
705
|
-
Items?: Api[];
|
|
706
|
-
NextToken?: string;
|
|
705
|
+
Items?: Api[] | undefined;
|
|
706
|
+
NextToken?: string | undefined;
|
|
707
707
|
}
|
|
708
708
|
export interface GetAuthorizerRequest {
|
|
709
709
|
ApiId: string | undefined;
|
|
710
710
|
AuthorizerId: string | undefined;
|
|
711
711
|
}
|
|
712
712
|
export interface GetAuthorizerResponse {
|
|
713
|
-
AuthorizerCredentialsArn?: string;
|
|
714
|
-
AuthorizerId?: string;
|
|
715
|
-
AuthorizerPayloadFormatVersion?: string;
|
|
716
|
-
AuthorizerResultTtlInSeconds?: number;
|
|
717
|
-
AuthorizerType?: AuthorizerType;
|
|
718
|
-
AuthorizerUri?: string;
|
|
719
|
-
EnableSimpleResponses?: boolean;
|
|
720
|
-
IdentitySource?: string[];
|
|
721
|
-
IdentityValidationExpression?: string;
|
|
722
|
-
JwtConfiguration?: JWTConfiguration;
|
|
723
|
-
Name?: string;
|
|
713
|
+
AuthorizerCredentialsArn?: string | undefined;
|
|
714
|
+
AuthorizerId?: string | undefined;
|
|
715
|
+
AuthorizerPayloadFormatVersion?: string | undefined;
|
|
716
|
+
AuthorizerResultTtlInSeconds?: number | undefined;
|
|
717
|
+
AuthorizerType?: AuthorizerType | undefined;
|
|
718
|
+
AuthorizerUri?: string | undefined;
|
|
719
|
+
EnableSimpleResponses?: boolean | undefined;
|
|
720
|
+
IdentitySource?: string[] | undefined;
|
|
721
|
+
IdentityValidationExpression?: string | undefined;
|
|
722
|
+
JwtConfiguration?: JWTConfiguration | undefined;
|
|
723
|
+
Name?: string | undefined;
|
|
724
724
|
}
|
|
725
725
|
export interface GetAuthorizersRequest {
|
|
726
726
|
ApiId: string | undefined;
|
|
727
|
-
MaxResults?: string;
|
|
728
|
-
NextToken?: string;
|
|
727
|
+
MaxResults?: string | undefined;
|
|
728
|
+
NextToken?: string | undefined;
|
|
729
729
|
}
|
|
730
730
|
export interface GetAuthorizersResponse {
|
|
731
|
-
Items?: Authorizer[];
|
|
732
|
-
NextToken?: string;
|
|
731
|
+
Items?: Authorizer[] | undefined;
|
|
732
|
+
NextToken?: string | undefined;
|
|
733
733
|
}
|
|
734
734
|
export interface GetDeploymentRequest {
|
|
735
735
|
ApiId: string | undefined;
|
|
736
736
|
DeploymentId: string | undefined;
|
|
737
737
|
}
|
|
738
738
|
export interface GetDeploymentResponse {
|
|
739
|
-
AutoDeployed?: boolean;
|
|
740
|
-
CreatedDate?: Date;
|
|
741
|
-
DeploymentId?: string;
|
|
742
|
-
DeploymentStatus?: DeploymentStatus;
|
|
743
|
-
DeploymentStatusMessage?: string;
|
|
744
|
-
Description?: string;
|
|
739
|
+
AutoDeployed?: boolean | undefined;
|
|
740
|
+
CreatedDate?: Date | undefined;
|
|
741
|
+
DeploymentId?: string | undefined;
|
|
742
|
+
DeploymentStatus?: DeploymentStatus | undefined;
|
|
743
|
+
DeploymentStatusMessage?: string | undefined;
|
|
744
|
+
Description?: string | undefined;
|
|
745
745
|
}
|
|
746
746
|
export interface GetDeploymentsRequest {
|
|
747
747
|
ApiId: string | undefined;
|
|
748
|
-
MaxResults?: string;
|
|
749
|
-
NextToken?: string;
|
|
748
|
+
MaxResults?: string | undefined;
|
|
749
|
+
NextToken?: string | undefined;
|
|
750
750
|
}
|
|
751
751
|
export interface GetDeploymentsResponse {
|
|
752
|
-
Items?: Deployment[];
|
|
753
|
-
NextToken?: string;
|
|
752
|
+
Items?: Deployment[] | undefined;
|
|
753
|
+
NextToken?: string | undefined;
|
|
754
754
|
}
|
|
755
755
|
export interface GetDomainNameRequest {
|
|
756
756
|
DomainName: string | undefined;
|
|
757
757
|
}
|
|
758
758
|
export interface GetDomainNameResponse {
|
|
759
|
-
ApiMappingSelectionExpression?: string;
|
|
760
|
-
DomainName?: string;
|
|
761
|
-
DomainNameConfigurations?: DomainNameConfiguration[];
|
|
762
|
-
MutualTlsAuthentication?: MutualTlsAuthentication;
|
|
763
|
-
Tags?: Record<string, string
|
|
759
|
+
ApiMappingSelectionExpression?: string | undefined;
|
|
760
|
+
DomainName?: string | undefined;
|
|
761
|
+
DomainNameConfigurations?: DomainNameConfiguration[] | undefined;
|
|
762
|
+
MutualTlsAuthentication?: MutualTlsAuthentication | undefined;
|
|
763
|
+
Tags?: Record<string, string> | undefined;
|
|
764
764
|
}
|
|
765
765
|
export interface GetDomainNamesRequest {
|
|
766
|
-
MaxResults?: string;
|
|
767
|
-
NextToken?: string;
|
|
766
|
+
MaxResults?: string | undefined;
|
|
767
|
+
NextToken?: string | undefined;
|
|
768
768
|
}
|
|
769
769
|
export interface GetDomainNamesResponse {
|
|
770
|
-
Items?: DomainName[];
|
|
771
|
-
NextToken?: string;
|
|
770
|
+
Items?: DomainName[] | undefined;
|
|
771
|
+
NextToken?: string | undefined;
|
|
772
772
|
}
|
|
773
773
|
export interface GetIntegrationRequest {
|
|
774
774
|
ApiId: string | undefined;
|
|
775
775
|
IntegrationId: string | undefined;
|
|
776
776
|
}
|
|
777
777
|
export interface GetIntegrationResult {
|
|
778
|
-
ApiGatewayManaged?: boolean;
|
|
779
|
-
ConnectionId?: string;
|
|
780
|
-
ConnectionType?: ConnectionType;
|
|
781
|
-
ContentHandlingStrategy?: ContentHandlingStrategy;
|
|
782
|
-
CredentialsArn?: string;
|
|
783
|
-
Description?: string;
|
|
784
|
-
IntegrationId?: string;
|
|
785
|
-
IntegrationMethod?: string;
|
|
786
|
-
IntegrationResponseSelectionExpression?: string;
|
|
787
|
-
IntegrationSubtype?: string;
|
|
788
|
-
IntegrationType?: IntegrationType;
|
|
789
|
-
IntegrationUri?: string;
|
|
790
|
-
PassthroughBehavior?: PassthroughBehavior;
|
|
791
|
-
PayloadFormatVersion?: string;
|
|
792
|
-
RequestParameters?: Record<string, string
|
|
793
|
-
RequestTemplates?: Record<string, string
|
|
794
|
-
ResponseParameters?: Record<string, Record<string, string
|
|
795
|
-
TemplateSelectionExpression?: string;
|
|
796
|
-
TimeoutInMillis?: number;
|
|
797
|
-
TlsConfig?: TlsConfig;
|
|
778
|
+
ApiGatewayManaged?: boolean | undefined;
|
|
779
|
+
ConnectionId?: string | undefined;
|
|
780
|
+
ConnectionType?: ConnectionType | undefined;
|
|
781
|
+
ContentHandlingStrategy?: ContentHandlingStrategy | undefined;
|
|
782
|
+
CredentialsArn?: string | undefined;
|
|
783
|
+
Description?: string | undefined;
|
|
784
|
+
IntegrationId?: string | undefined;
|
|
785
|
+
IntegrationMethod?: string | undefined;
|
|
786
|
+
IntegrationResponseSelectionExpression?: string | undefined;
|
|
787
|
+
IntegrationSubtype?: string | undefined;
|
|
788
|
+
IntegrationType?: IntegrationType | undefined;
|
|
789
|
+
IntegrationUri?: string | undefined;
|
|
790
|
+
PassthroughBehavior?: PassthroughBehavior | undefined;
|
|
791
|
+
PayloadFormatVersion?: string | undefined;
|
|
792
|
+
RequestParameters?: Record<string, string> | undefined;
|
|
793
|
+
RequestTemplates?: Record<string, string> | undefined;
|
|
794
|
+
ResponseParameters?: Record<string, Record<string, string>> | undefined;
|
|
795
|
+
TemplateSelectionExpression?: string | undefined;
|
|
796
|
+
TimeoutInMillis?: number | undefined;
|
|
797
|
+
TlsConfig?: TlsConfig | undefined;
|
|
798
798
|
}
|
|
799
799
|
export interface GetIntegrationResponseRequest {
|
|
800
800
|
ApiId: string | undefined;
|
|
@@ -802,77 +802,77 @@ export interface GetIntegrationResponseRequest {
|
|
|
802
802
|
IntegrationResponseId: string | undefined;
|
|
803
803
|
}
|
|
804
804
|
export interface GetIntegrationResponseResponse {
|
|
805
|
-
ContentHandlingStrategy?: ContentHandlingStrategy;
|
|
806
|
-
IntegrationResponseId?: string;
|
|
807
|
-
IntegrationResponseKey?: string;
|
|
808
|
-
ResponseParameters?: Record<string, string
|
|
809
|
-
ResponseTemplates?: Record<string, string
|
|
810
|
-
TemplateSelectionExpression?: string;
|
|
805
|
+
ContentHandlingStrategy?: ContentHandlingStrategy | undefined;
|
|
806
|
+
IntegrationResponseId?: string | undefined;
|
|
807
|
+
IntegrationResponseKey?: string | undefined;
|
|
808
|
+
ResponseParameters?: Record<string, string> | undefined;
|
|
809
|
+
ResponseTemplates?: Record<string, string> | undefined;
|
|
810
|
+
TemplateSelectionExpression?: string | undefined;
|
|
811
811
|
}
|
|
812
812
|
export interface GetIntegrationResponsesRequest {
|
|
813
813
|
ApiId: string | undefined;
|
|
814
814
|
IntegrationId: string | undefined;
|
|
815
|
-
MaxResults?: string;
|
|
816
|
-
NextToken?: string;
|
|
815
|
+
MaxResults?: string | undefined;
|
|
816
|
+
NextToken?: string | undefined;
|
|
817
817
|
}
|
|
818
818
|
export interface GetIntegrationResponsesResponse {
|
|
819
|
-
Items?: IntegrationResponse[];
|
|
820
|
-
NextToken?: string;
|
|
819
|
+
Items?: IntegrationResponse[] | undefined;
|
|
820
|
+
NextToken?: string | undefined;
|
|
821
821
|
}
|
|
822
822
|
export interface GetIntegrationsRequest {
|
|
823
823
|
ApiId: string | undefined;
|
|
824
|
-
MaxResults?: string;
|
|
825
|
-
NextToken?: string;
|
|
824
|
+
MaxResults?: string | undefined;
|
|
825
|
+
NextToken?: string | undefined;
|
|
826
826
|
}
|
|
827
827
|
export interface GetIntegrationsResponse {
|
|
828
|
-
Items?: Integration[];
|
|
829
|
-
NextToken?: string;
|
|
828
|
+
Items?: Integration[] | undefined;
|
|
829
|
+
NextToken?: string | undefined;
|
|
830
830
|
}
|
|
831
831
|
export interface GetModelRequest {
|
|
832
832
|
ApiId: string | undefined;
|
|
833
833
|
ModelId: string | undefined;
|
|
834
834
|
}
|
|
835
835
|
export interface GetModelResponse {
|
|
836
|
-
ContentType?: string;
|
|
837
|
-
Description?: string;
|
|
838
|
-
ModelId?: string;
|
|
839
|
-
Name?: string;
|
|
840
|
-
Schema?: string;
|
|
836
|
+
ContentType?: string | undefined;
|
|
837
|
+
Description?: string | undefined;
|
|
838
|
+
ModelId?: string | undefined;
|
|
839
|
+
Name?: string | undefined;
|
|
840
|
+
Schema?: string | undefined;
|
|
841
841
|
}
|
|
842
842
|
export interface GetModelsRequest {
|
|
843
843
|
ApiId: string | undefined;
|
|
844
|
-
MaxResults?: string;
|
|
845
|
-
NextToken?: string;
|
|
844
|
+
MaxResults?: string | undefined;
|
|
845
|
+
NextToken?: string | undefined;
|
|
846
846
|
}
|
|
847
847
|
export interface GetModelsResponse {
|
|
848
|
-
Items?: Model[];
|
|
849
|
-
NextToken?: string;
|
|
848
|
+
Items?: Model[] | undefined;
|
|
849
|
+
NextToken?: string | undefined;
|
|
850
850
|
}
|
|
851
851
|
export interface GetModelTemplateRequest {
|
|
852
852
|
ApiId: string | undefined;
|
|
853
853
|
ModelId: string | undefined;
|
|
854
854
|
}
|
|
855
855
|
export interface GetModelTemplateResponse {
|
|
856
|
-
Value?: string;
|
|
856
|
+
Value?: string | undefined;
|
|
857
857
|
}
|
|
858
858
|
export interface GetRouteRequest {
|
|
859
859
|
ApiId: string | undefined;
|
|
860
860
|
RouteId: string | undefined;
|
|
861
861
|
}
|
|
862
862
|
export interface GetRouteResult {
|
|
863
|
-
ApiGatewayManaged?: boolean;
|
|
864
|
-
ApiKeyRequired?: boolean;
|
|
865
|
-
AuthorizationScopes?: string[];
|
|
866
|
-
AuthorizationType?: AuthorizationType;
|
|
867
|
-
AuthorizerId?: string;
|
|
868
|
-
ModelSelectionExpression?: string;
|
|
869
|
-
OperationName?: string;
|
|
870
|
-
RequestModels?: Record<string, string
|
|
871
|
-
RequestParameters?: Record<string, ParameterConstraints
|
|
872
|
-
RouteId?: string;
|
|
873
|
-
RouteKey?: string;
|
|
874
|
-
RouteResponseSelectionExpression?: string;
|
|
875
|
-
Target?: string;
|
|
863
|
+
ApiGatewayManaged?: boolean | undefined;
|
|
864
|
+
ApiKeyRequired?: boolean | undefined;
|
|
865
|
+
AuthorizationScopes?: string[] | undefined;
|
|
866
|
+
AuthorizationType?: AuthorizationType | undefined;
|
|
867
|
+
AuthorizerId?: string | undefined;
|
|
868
|
+
ModelSelectionExpression?: string | undefined;
|
|
869
|
+
OperationName?: string | undefined;
|
|
870
|
+
RequestModels?: Record<string, string> | undefined;
|
|
871
|
+
RequestParameters?: Record<string, ParameterConstraints> | undefined;
|
|
872
|
+
RouteId?: string | undefined;
|
|
873
|
+
RouteKey?: string | undefined;
|
|
874
|
+
RouteResponseSelectionExpression?: string | undefined;
|
|
875
|
+
Target?: string | undefined;
|
|
876
876
|
}
|
|
877
877
|
export interface GetRouteResponseRequest {
|
|
878
878
|
ApiId: string | undefined;
|
|
@@ -880,134 +880,134 @@ export interface GetRouteResponseRequest {
|
|
|
880
880
|
RouteResponseId: string | undefined;
|
|
881
881
|
}
|
|
882
882
|
export interface GetRouteResponseResponse {
|
|
883
|
-
ModelSelectionExpression?: string;
|
|
884
|
-
ResponseModels?: Record<string, string
|
|
885
|
-
ResponseParameters?: Record<string, ParameterConstraints
|
|
886
|
-
RouteResponseId?: string;
|
|
887
|
-
RouteResponseKey?: string;
|
|
883
|
+
ModelSelectionExpression?: string | undefined;
|
|
884
|
+
ResponseModels?: Record<string, string> | undefined;
|
|
885
|
+
ResponseParameters?: Record<string, ParameterConstraints> | undefined;
|
|
886
|
+
RouteResponseId?: string | undefined;
|
|
887
|
+
RouteResponseKey?: string | undefined;
|
|
888
888
|
}
|
|
889
889
|
export interface GetRouteResponsesRequest {
|
|
890
890
|
ApiId: string | undefined;
|
|
891
|
-
MaxResults?: string;
|
|
892
|
-
NextToken?: string;
|
|
891
|
+
MaxResults?: string | undefined;
|
|
892
|
+
NextToken?: string | undefined;
|
|
893
893
|
RouteId: string | undefined;
|
|
894
894
|
}
|
|
895
895
|
export interface GetRouteResponsesResponse {
|
|
896
|
-
Items?: RouteResponse[];
|
|
897
|
-
NextToken?: string;
|
|
896
|
+
Items?: RouteResponse[] | undefined;
|
|
897
|
+
NextToken?: string | undefined;
|
|
898
898
|
}
|
|
899
899
|
export interface GetRoutesRequest {
|
|
900
900
|
ApiId: string | undefined;
|
|
901
|
-
MaxResults?: string;
|
|
902
|
-
NextToken?: string;
|
|
901
|
+
MaxResults?: string | undefined;
|
|
902
|
+
NextToken?: string | undefined;
|
|
903
903
|
}
|
|
904
904
|
export interface GetRoutesResponse {
|
|
905
|
-
Items?: Route[];
|
|
906
|
-
NextToken?: string;
|
|
905
|
+
Items?: Route[] | undefined;
|
|
906
|
+
NextToken?: string | undefined;
|
|
907
907
|
}
|
|
908
908
|
export interface GetStageRequest {
|
|
909
909
|
ApiId: string | undefined;
|
|
910
910
|
StageName: string | undefined;
|
|
911
911
|
}
|
|
912
912
|
export interface GetStageResponse {
|
|
913
|
-
AccessLogSettings?: AccessLogSettings;
|
|
914
|
-
ApiGatewayManaged?: boolean;
|
|
915
|
-
AutoDeploy?: boolean;
|
|
916
|
-
ClientCertificateId?: string;
|
|
917
|
-
CreatedDate?: Date;
|
|
918
|
-
DefaultRouteSettings?: RouteSettings;
|
|
919
|
-
DeploymentId?: string;
|
|
920
|
-
Description?: string;
|
|
921
|
-
LastDeploymentStatusMessage?: string;
|
|
922
|
-
LastUpdatedDate?: Date;
|
|
923
|
-
RouteSettings?: Record<string, RouteSettings
|
|
924
|
-
StageName?: string;
|
|
925
|
-
StageVariables?: Record<string, string
|
|
926
|
-
Tags?: Record<string, string
|
|
913
|
+
AccessLogSettings?: AccessLogSettings | undefined;
|
|
914
|
+
ApiGatewayManaged?: boolean | undefined;
|
|
915
|
+
AutoDeploy?: boolean | undefined;
|
|
916
|
+
ClientCertificateId?: string | undefined;
|
|
917
|
+
CreatedDate?: Date | undefined;
|
|
918
|
+
DefaultRouteSettings?: RouteSettings | undefined;
|
|
919
|
+
DeploymentId?: string | undefined;
|
|
920
|
+
Description?: string | undefined;
|
|
921
|
+
LastDeploymentStatusMessage?: string | undefined;
|
|
922
|
+
LastUpdatedDate?: Date | undefined;
|
|
923
|
+
RouteSettings?: Record<string, RouteSettings> | undefined;
|
|
924
|
+
StageName?: string | undefined;
|
|
925
|
+
StageVariables?: Record<string, string> | undefined;
|
|
926
|
+
Tags?: Record<string, string> | undefined;
|
|
927
927
|
}
|
|
928
928
|
export interface GetStagesRequest {
|
|
929
929
|
ApiId: string | undefined;
|
|
930
|
-
MaxResults?: string;
|
|
931
|
-
NextToken?: string;
|
|
930
|
+
MaxResults?: string | undefined;
|
|
931
|
+
NextToken?: string | undefined;
|
|
932
932
|
}
|
|
933
933
|
export interface GetStagesResponse {
|
|
934
|
-
Items?: Stage[];
|
|
935
|
-
NextToken?: string;
|
|
934
|
+
Items?: Stage[] | undefined;
|
|
935
|
+
NextToken?: string | undefined;
|
|
936
936
|
}
|
|
937
937
|
export interface GetTagsRequest {
|
|
938
938
|
ResourceArn: string | undefined;
|
|
939
939
|
}
|
|
940
940
|
export interface GetTagsResponse {
|
|
941
|
-
Tags?: Record<string, string
|
|
941
|
+
Tags?: Record<string, string> | undefined;
|
|
942
942
|
}
|
|
943
943
|
export interface GetVpcLinkRequest {
|
|
944
944
|
VpcLinkId: string | undefined;
|
|
945
945
|
}
|
|
946
946
|
export interface GetVpcLinkResponse {
|
|
947
|
-
CreatedDate?: Date;
|
|
948
|
-
Name?: string;
|
|
949
|
-
SecurityGroupIds?: string[];
|
|
950
|
-
SubnetIds?: string[];
|
|
951
|
-
Tags?: Record<string, string
|
|
952
|
-
VpcLinkId?: string;
|
|
953
|
-
VpcLinkStatus?: VpcLinkStatus;
|
|
954
|
-
VpcLinkStatusMessage?: string;
|
|
955
|
-
VpcLinkVersion?: VpcLinkVersion;
|
|
947
|
+
CreatedDate?: Date | undefined;
|
|
948
|
+
Name?: string | undefined;
|
|
949
|
+
SecurityGroupIds?: string[] | undefined;
|
|
950
|
+
SubnetIds?: string[] | undefined;
|
|
951
|
+
Tags?: Record<string, string> | undefined;
|
|
952
|
+
VpcLinkId?: string | undefined;
|
|
953
|
+
VpcLinkStatus?: VpcLinkStatus | undefined;
|
|
954
|
+
VpcLinkStatusMessage?: string | undefined;
|
|
955
|
+
VpcLinkVersion?: VpcLinkVersion | undefined;
|
|
956
956
|
}
|
|
957
957
|
export interface GetVpcLinksRequest {
|
|
958
|
-
MaxResults?: string;
|
|
959
|
-
NextToken?: string;
|
|
958
|
+
MaxResults?: string | undefined;
|
|
959
|
+
NextToken?: string | undefined;
|
|
960
960
|
}
|
|
961
961
|
export interface GetVpcLinksResponse {
|
|
962
|
-
Items?: VpcLink[];
|
|
963
|
-
NextToken?: string;
|
|
962
|
+
Items?: VpcLink[] | undefined;
|
|
963
|
+
NextToken?: string | undefined;
|
|
964
964
|
}
|
|
965
965
|
export interface ImportApiRequest {
|
|
966
|
-
Basepath?: string;
|
|
966
|
+
Basepath?: string | undefined;
|
|
967
967
|
Body: string | undefined;
|
|
968
|
-
FailOnWarnings?: boolean;
|
|
968
|
+
FailOnWarnings?: boolean | undefined;
|
|
969
969
|
}
|
|
970
970
|
export interface ImportApiResponse {
|
|
971
|
-
ApiEndpoint?: string;
|
|
972
|
-
ApiGatewayManaged?: boolean;
|
|
973
|
-
ApiId?: string;
|
|
974
|
-
ApiKeySelectionExpression?: string;
|
|
975
|
-
CorsConfiguration?: Cors;
|
|
976
|
-
CreatedDate?: Date;
|
|
977
|
-
Description?: string;
|
|
978
|
-
DisableSchemaValidation?: boolean;
|
|
979
|
-
DisableExecuteApiEndpoint?: boolean;
|
|
980
|
-
ImportInfo?: string[];
|
|
981
|
-
Name?: string;
|
|
982
|
-
ProtocolType?: ProtocolType;
|
|
983
|
-
RouteSelectionExpression?: string;
|
|
984
|
-
Tags?: Record<string, string
|
|
985
|
-
Version?: string;
|
|
986
|
-
Warnings?: string[];
|
|
971
|
+
ApiEndpoint?: string | undefined;
|
|
972
|
+
ApiGatewayManaged?: boolean | undefined;
|
|
973
|
+
ApiId?: string | undefined;
|
|
974
|
+
ApiKeySelectionExpression?: string | undefined;
|
|
975
|
+
CorsConfiguration?: Cors | undefined;
|
|
976
|
+
CreatedDate?: Date | undefined;
|
|
977
|
+
Description?: string | undefined;
|
|
978
|
+
DisableSchemaValidation?: boolean | undefined;
|
|
979
|
+
DisableExecuteApiEndpoint?: boolean | undefined;
|
|
980
|
+
ImportInfo?: string[] | undefined;
|
|
981
|
+
Name?: string | undefined;
|
|
982
|
+
ProtocolType?: ProtocolType | undefined;
|
|
983
|
+
RouteSelectionExpression?: string | undefined;
|
|
984
|
+
Tags?: Record<string, string> | undefined;
|
|
985
|
+
Version?: string | undefined;
|
|
986
|
+
Warnings?: string[] | undefined;
|
|
987
987
|
}
|
|
988
988
|
export interface ReimportApiRequest {
|
|
989
989
|
ApiId: string | undefined;
|
|
990
|
-
Basepath?: string;
|
|
990
|
+
Basepath?: string | undefined;
|
|
991
991
|
Body: string | undefined;
|
|
992
|
-
FailOnWarnings?: boolean;
|
|
992
|
+
FailOnWarnings?: boolean | undefined;
|
|
993
993
|
}
|
|
994
994
|
export interface ReimportApiResponse {
|
|
995
|
-
ApiEndpoint?: string;
|
|
996
|
-
ApiGatewayManaged?: boolean;
|
|
997
|
-
ApiId?: string;
|
|
998
|
-
ApiKeySelectionExpression?: string;
|
|
999
|
-
CorsConfiguration?: Cors;
|
|
1000
|
-
CreatedDate?: Date;
|
|
1001
|
-
Description?: string;
|
|
1002
|
-
DisableSchemaValidation?: boolean;
|
|
1003
|
-
DisableExecuteApiEndpoint?: boolean;
|
|
1004
|
-
ImportInfo?: string[];
|
|
1005
|
-
Name?: string;
|
|
1006
|
-
ProtocolType?: ProtocolType;
|
|
1007
|
-
RouteSelectionExpression?: string;
|
|
1008
|
-
Tags?: Record<string, string
|
|
1009
|
-
Version?: string;
|
|
1010
|
-
Warnings?: string[];
|
|
995
|
+
ApiEndpoint?: string | undefined;
|
|
996
|
+
ApiGatewayManaged?: boolean | undefined;
|
|
997
|
+
ApiId?: string | undefined;
|
|
998
|
+
ApiKeySelectionExpression?: string | undefined;
|
|
999
|
+
CorsConfiguration?: Cors | undefined;
|
|
1000
|
+
CreatedDate?: Date | undefined;
|
|
1001
|
+
Description?: string | undefined;
|
|
1002
|
+
DisableSchemaValidation?: boolean | undefined;
|
|
1003
|
+
DisableExecuteApiEndpoint?: boolean | undefined;
|
|
1004
|
+
ImportInfo?: string[] | undefined;
|
|
1005
|
+
Name?: string | undefined;
|
|
1006
|
+
ProtocolType?: ProtocolType | undefined;
|
|
1007
|
+
RouteSelectionExpression?: string | undefined;
|
|
1008
|
+
Tags?: Record<string, string> | undefined;
|
|
1009
|
+
Version?: string | undefined;
|
|
1010
|
+
Warnings?: string[] | undefined;
|
|
1011
1011
|
}
|
|
1012
1012
|
export interface ResetAuthorizersCacheRequest {
|
|
1013
1013
|
ApiId: string | undefined;
|
|
@@ -1015,7 +1015,7 @@ export interface ResetAuthorizersCacheRequest {
|
|
|
1015
1015
|
}
|
|
1016
1016
|
export interface TagResourceRequest {
|
|
1017
1017
|
ResourceArn: string | undefined;
|
|
1018
|
-
Tags?: Record<string, string
|
|
1018
|
+
Tags?: Record<string, string> | undefined;
|
|
1019
1019
|
}
|
|
1020
1020
|
export interface TagResourceResponse {}
|
|
1021
1021
|
export interface UntagResourceRequest {
|
|
@@ -1024,263 +1024,263 @@ export interface UntagResourceRequest {
|
|
|
1024
1024
|
}
|
|
1025
1025
|
export interface UpdateApiRequest {
|
|
1026
1026
|
ApiId: string | undefined;
|
|
1027
|
-
ApiKeySelectionExpression?: string;
|
|
1028
|
-
CorsConfiguration?: Cors;
|
|
1029
|
-
CredentialsArn?: string;
|
|
1030
|
-
Description?: string;
|
|
1031
|
-
DisableSchemaValidation?: boolean;
|
|
1032
|
-
DisableExecuteApiEndpoint?: boolean;
|
|
1033
|
-
Name?: string;
|
|
1034
|
-
RouteKey?: string;
|
|
1035
|
-
RouteSelectionExpression?: string;
|
|
1036
|
-
Target?: string;
|
|
1037
|
-
Version?: string;
|
|
1027
|
+
ApiKeySelectionExpression?: string | undefined;
|
|
1028
|
+
CorsConfiguration?: Cors | undefined;
|
|
1029
|
+
CredentialsArn?: string | undefined;
|
|
1030
|
+
Description?: string | undefined;
|
|
1031
|
+
DisableSchemaValidation?: boolean | undefined;
|
|
1032
|
+
DisableExecuteApiEndpoint?: boolean | undefined;
|
|
1033
|
+
Name?: string | undefined;
|
|
1034
|
+
RouteKey?: string | undefined;
|
|
1035
|
+
RouteSelectionExpression?: string | undefined;
|
|
1036
|
+
Target?: string | undefined;
|
|
1037
|
+
Version?: string | undefined;
|
|
1038
1038
|
}
|
|
1039
1039
|
export interface UpdateApiResponse {
|
|
1040
|
-
ApiEndpoint?: string;
|
|
1041
|
-
ApiGatewayManaged?: boolean;
|
|
1042
|
-
ApiId?: string;
|
|
1043
|
-
ApiKeySelectionExpression?: string;
|
|
1044
|
-
CorsConfiguration?: Cors;
|
|
1045
|
-
CreatedDate?: Date;
|
|
1046
|
-
Description?: string;
|
|
1047
|
-
DisableSchemaValidation?: boolean;
|
|
1048
|
-
DisableExecuteApiEndpoint?: boolean;
|
|
1049
|
-
ImportInfo?: string[];
|
|
1050
|
-
Name?: string;
|
|
1051
|
-
ProtocolType?: ProtocolType;
|
|
1052
|
-
RouteSelectionExpression?: string;
|
|
1053
|
-
Tags?: Record<string, string
|
|
1054
|
-
Version?: string;
|
|
1055
|
-
Warnings?: string[];
|
|
1040
|
+
ApiEndpoint?: string | undefined;
|
|
1041
|
+
ApiGatewayManaged?: boolean | undefined;
|
|
1042
|
+
ApiId?: string | undefined;
|
|
1043
|
+
ApiKeySelectionExpression?: string | undefined;
|
|
1044
|
+
CorsConfiguration?: Cors | undefined;
|
|
1045
|
+
CreatedDate?: Date | undefined;
|
|
1046
|
+
Description?: string | undefined;
|
|
1047
|
+
DisableSchemaValidation?: boolean | undefined;
|
|
1048
|
+
DisableExecuteApiEndpoint?: boolean | undefined;
|
|
1049
|
+
ImportInfo?: string[] | undefined;
|
|
1050
|
+
Name?: string | undefined;
|
|
1051
|
+
ProtocolType?: ProtocolType | undefined;
|
|
1052
|
+
RouteSelectionExpression?: string | undefined;
|
|
1053
|
+
Tags?: Record<string, string> | undefined;
|
|
1054
|
+
Version?: string | undefined;
|
|
1055
|
+
Warnings?: string[] | undefined;
|
|
1056
1056
|
}
|
|
1057
1057
|
export interface UpdateApiMappingRequest {
|
|
1058
1058
|
ApiId: string | undefined;
|
|
1059
1059
|
ApiMappingId: string | undefined;
|
|
1060
|
-
ApiMappingKey?: string;
|
|
1060
|
+
ApiMappingKey?: string | undefined;
|
|
1061
1061
|
DomainName: string | undefined;
|
|
1062
|
-
Stage?: string;
|
|
1062
|
+
Stage?: string | undefined;
|
|
1063
1063
|
}
|
|
1064
1064
|
export interface UpdateApiMappingResponse {
|
|
1065
|
-
ApiId?: string;
|
|
1066
|
-
ApiMappingId?: string;
|
|
1067
|
-
ApiMappingKey?: string;
|
|
1068
|
-
Stage?: string;
|
|
1065
|
+
ApiId?: string | undefined;
|
|
1066
|
+
ApiMappingId?: string | undefined;
|
|
1067
|
+
ApiMappingKey?: string | undefined;
|
|
1068
|
+
Stage?: string | undefined;
|
|
1069
1069
|
}
|
|
1070
1070
|
export interface UpdateAuthorizerRequest {
|
|
1071
1071
|
ApiId: string | undefined;
|
|
1072
|
-
AuthorizerCredentialsArn?: string;
|
|
1072
|
+
AuthorizerCredentialsArn?: string | undefined;
|
|
1073
1073
|
AuthorizerId: string | undefined;
|
|
1074
|
-
AuthorizerPayloadFormatVersion?: string;
|
|
1075
|
-
AuthorizerResultTtlInSeconds?: number;
|
|
1076
|
-
AuthorizerType?: AuthorizerType;
|
|
1077
|
-
AuthorizerUri?: string;
|
|
1078
|
-
EnableSimpleResponses?: boolean;
|
|
1079
|
-
IdentitySource?: string[];
|
|
1080
|
-
IdentityValidationExpression?: string;
|
|
1081
|
-
JwtConfiguration?: JWTConfiguration;
|
|
1082
|
-
Name?: string;
|
|
1074
|
+
AuthorizerPayloadFormatVersion?: string | undefined;
|
|
1075
|
+
AuthorizerResultTtlInSeconds?: number | undefined;
|
|
1076
|
+
AuthorizerType?: AuthorizerType | undefined;
|
|
1077
|
+
AuthorizerUri?: string | undefined;
|
|
1078
|
+
EnableSimpleResponses?: boolean | undefined;
|
|
1079
|
+
IdentitySource?: string[] | undefined;
|
|
1080
|
+
IdentityValidationExpression?: string | undefined;
|
|
1081
|
+
JwtConfiguration?: JWTConfiguration | undefined;
|
|
1082
|
+
Name?: string | undefined;
|
|
1083
1083
|
}
|
|
1084
1084
|
export interface UpdateAuthorizerResponse {
|
|
1085
|
-
AuthorizerCredentialsArn?: string;
|
|
1086
|
-
AuthorizerId?: string;
|
|
1087
|
-
AuthorizerPayloadFormatVersion?: string;
|
|
1088
|
-
AuthorizerResultTtlInSeconds?: number;
|
|
1089
|
-
AuthorizerType?: AuthorizerType;
|
|
1090
|
-
AuthorizerUri?: string;
|
|
1091
|
-
EnableSimpleResponses?: boolean;
|
|
1092
|
-
IdentitySource?: string[];
|
|
1093
|
-
IdentityValidationExpression?: string;
|
|
1094
|
-
JwtConfiguration?: JWTConfiguration;
|
|
1095
|
-
Name?: string;
|
|
1085
|
+
AuthorizerCredentialsArn?: string | undefined;
|
|
1086
|
+
AuthorizerId?: string | undefined;
|
|
1087
|
+
AuthorizerPayloadFormatVersion?: string | undefined;
|
|
1088
|
+
AuthorizerResultTtlInSeconds?: number | undefined;
|
|
1089
|
+
AuthorizerType?: AuthorizerType | undefined;
|
|
1090
|
+
AuthorizerUri?: string | undefined;
|
|
1091
|
+
EnableSimpleResponses?: boolean | undefined;
|
|
1092
|
+
IdentitySource?: string[] | undefined;
|
|
1093
|
+
IdentityValidationExpression?: string | undefined;
|
|
1094
|
+
JwtConfiguration?: JWTConfiguration | undefined;
|
|
1095
|
+
Name?: string | undefined;
|
|
1096
1096
|
}
|
|
1097
1097
|
export interface UpdateDeploymentRequest {
|
|
1098
1098
|
ApiId: string | undefined;
|
|
1099
1099
|
DeploymentId: string | undefined;
|
|
1100
|
-
Description?: string;
|
|
1100
|
+
Description?: string | undefined;
|
|
1101
1101
|
}
|
|
1102
1102
|
export interface UpdateDeploymentResponse {
|
|
1103
|
-
AutoDeployed?: boolean;
|
|
1104
|
-
CreatedDate?: Date;
|
|
1105
|
-
DeploymentId?: string;
|
|
1106
|
-
DeploymentStatus?: DeploymentStatus;
|
|
1107
|
-
DeploymentStatusMessage?: string;
|
|
1108
|
-
Description?: string;
|
|
1103
|
+
AutoDeployed?: boolean | undefined;
|
|
1104
|
+
CreatedDate?: Date | undefined;
|
|
1105
|
+
DeploymentId?: string | undefined;
|
|
1106
|
+
DeploymentStatus?: DeploymentStatus | undefined;
|
|
1107
|
+
DeploymentStatusMessage?: string | undefined;
|
|
1108
|
+
Description?: string | undefined;
|
|
1109
1109
|
}
|
|
1110
1110
|
export interface UpdateDomainNameRequest {
|
|
1111
1111
|
DomainName: string | undefined;
|
|
1112
|
-
DomainNameConfigurations?: DomainNameConfiguration[];
|
|
1113
|
-
MutualTlsAuthentication?: MutualTlsAuthenticationInput;
|
|
1112
|
+
DomainNameConfigurations?: DomainNameConfiguration[] | undefined;
|
|
1113
|
+
MutualTlsAuthentication?: MutualTlsAuthenticationInput | undefined;
|
|
1114
1114
|
}
|
|
1115
1115
|
export interface UpdateDomainNameResponse {
|
|
1116
|
-
ApiMappingSelectionExpression?: string;
|
|
1117
|
-
DomainName?: string;
|
|
1118
|
-
DomainNameConfigurations?: DomainNameConfiguration[];
|
|
1119
|
-
MutualTlsAuthentication?: MutualTlsAuthentication;
|
|
1120
|
-
Tags?: Record<string, string
|
|
1116
|
+
ApiMappingSelectionExpression?: string | undefined;
|
|
1117
|
+
DomainName?: string | undefined;
|
|
1118
|
+
DomainNameConfigurations?: DomainNameConfiguration[] | undefined;
|
|
1119
|
+
MutualTlsAuthentication?: MutualTlsAuthentication | undefined;
|
|
1120
|
+
Tags?: Record<string, string> | undefined;
|
|
1121
1121
|
}
|
|
1122
1122
|
export interface UpdateIntegrationRequest {
|
|
1123
1123
|
ApiId: string | undefined;
|
|
1124
|
-
ConnectionId?: string;
|
|
1125
|
-
ConnectionType?: ConnectionType;
|
|
1126
|
-
ContentHandlingStrategy?: ContentHandlingStrategy;
|
|
1127
|
-
CredentialsArn?: string;
|
|
1128
|
-
Description?: string;
|
|
1124
|
+
ConnectionId?: string | undefined;
|
|
1125
|
+
ConnectionType?: ConnectionType | undefined;
|
|
1126
|
+
ContentHandlingStrategy?: ContentHandlingStrategy | undefined;
|
|
1127
|
+
CredentialsArn?: string | undefined;
|
|
1128
|
+
Description?: string | undefined;
|
|
1129
1129
|
IntegrationId: string | undefined;
|
|
1130
|
-
IntegrationMethod?: string;
|
|
1131
|
-
IntegrationSubtype?: string;
|
|
1132
|
-
IntegrationType?: IntegrationType;
|
|
1133
|
-
IntegrationUri?: string;
|
|
1134
|
-
PassthroughBehavior?: PassthroughBehavior;
|
|
1135
|
-
PayloadFormatVersion?: string;
|
|
1136
|
-
RequestParameters?: Record<string, string
|
|
1137
|
-
RequestTemplates?: Record<string, string
|
|
1138
|
-
ResponseParameters?: Record<string, Record<string, string
|
|
1139
|
-
TemplateSelectionExpression?: string;
|
|
1140
|
-
TimeoutInMillis?: number;
|
|
1141
|
-
TlsConfig?: TlsConfigInput;
|
|
1130
|
+
IntegrationMethod?: string | undefined;
|
|
1131
|
+
IntegrationSubtype?: string | undefined;
|
|
1132
|
+
IntegrationType?: IntegrationType | undefined;
|
|
1133
|
+
IntegrationUri?: string | undefined;
|
|
1134
|
+
PassthroughBehavior?: PassthroughBehavior | undefined;
|
|
1135
|
+
PayloadFormatVersion?: string | undefined;
|
|
1136
|
+
RequestParameters?: Record<string, string> | undefined;
|
|
1137
|
+
RequestTemplates?: Record<string, string> | undefined;
|
|
1138
|
+
ResponseParameters?: Record<string, Record<string, string>> | undefined;
|
|
1139
|
+
TemplateSelectionExpression?: string | undefined;
|
|
1140
|
+
TimeoutInMillis?: number | undefined;
|
|
1141
|
+
TlsConfig?: TlsConfigInput | undefined;
|
|
1142
1142
|
}
|
|
1143
1143
|
export interface UpdateIntegrationResult {
|
|
1144
|
-
ApiGatewayManaged?: boolean;
|
|
1145
|
-
ConnectionId?: string;
|
|
1146
|
-
ConnectionType?: ConnectionType;
|
|
1147
|
-
ContentHandlingStrategy?: ContentHandlingStrategy;
|
|
1148
|
-
CredentialsArn?: string;
|
|
1149
|
-
Description?: string;
|
|
1150
|
-
IntegrationId?: string;
|
|
1151
|
-
IntegrationMethod?: string;
|
|
1152
|
-
IntegrationResponseSelectionExpression?: string;
|
|
1153
|
-
IntegrationSubtype?: string;
|
|
1154
|
-
IntegrationType?: IntegrationType;
|
|
1155
|
-
IntegrationUri?: string;
|
|
1156
|
-
PassthroughBehavior?: PassthroughBehavior;
|
|
1157
|
-
PayloadFormatVersion?: string;
|
|
1158
|
-
RequestParameters?: Record<string, string
|
|
1159
|
-
RequestTemplates?: Record<string, string
|
|
1160
|
-
ResponseParameters?: Record<string, Record<string, string
|
|
1161
|
-
TemplateSelectionExpression?: string;
|
|
1162
|
-
TimeoutInMillis?: number;
|
|
1163
|
-
TlsConfig?: TlsConfig;
|
|
1144
|
+
ApiGatewayManaged?: boolean | undefined;
|
|
1145
|
+
ConnectionId?: string | undefined;
|
|
1146
|
+
ConnectionType?: ConnectionType | undefined;
|
|
1147
|
+
ContentHandlingStrategy?: ContentHandlingStrategy | undefined;
|
|
1148
|
+
CredentialsArn?: string | undefined;
|
|
1149
|
+
Description?: string | undefined;
|
|
1150
|
+
IntegrationId?: string | undefined;
|
|
1151
|
+
IntegrationMethod?: string | undefined;
|
|
1152
|
+
IntegrationResponseSelectionExpression?: string | undefined;
|
|
1153
|
+
IntegrationSubtype?: string | undefined;
|
|
1154
|
+
IntegrationType?: IntegrationType | undefined;
|
|
1155
|
+
IntegrationUri?: string | undefined;
|
|
1156
|
+
PassthroughBehavior?: PassthroughBehavior | undefined;
|
|
1157
|
+
PayloadFormatVersion?: string | undefined;
|
|
1158
|
+
RequestParameters?: Record<string, string> | undefined;
|
|
1159
|
+
RequestTemplates?: Record<string, string> | undefined;
|
|
1160
|
+
ResponseParameters?: Record<string, Record<string, string>> | undefined;
|
|
1161
|
+
TemplateSelectionExpression?: string | undefined;
|
|
1162
|
+
TimeoutInMillis?: number | undefined;
|
|
1163
|
+
TlsConfig?: TlsConfig | undefined;
|
|
1164
1164
|
}
|
|
1165
1165
|
export interface UpdateIntegrationResponseRequest {
|
|
1166
1166
|
ApiId: string | undefined;
|
|
1167
|
-
ContentHandlingStrategy?: ContentHandlingStrategy;
|
|
1167
|
+
ContentHandlingStrategy?: ContentHandlingStrategy | undefined;
|
|
1168
1168
|
IntegrationId: string | undefined;
|
|
1169
1169
|
IntegrationResponseId: string | undefined;
|
|
1170
|
-
IntegrationResponseKey?: string;
|
|
1171
|
-
ResponseParameters?: Record<string, string
|
|
1172
|
-
ResponseTemplates?: Record<string, string
|
|
1173
|
-
TemplateSelectionExpression?: string;
|
|
1170
|
+
IntegrationResponseKey?: string | undefined;
|
|
1171
|
+
ResponseParameters?: Record<string, string> | undefined;
|
|
1172
|
+
ResponseTemplates?: Record<string, string> | undefined;
|
|
1173
|
+
TemplateSelectionExpression?: string | undefined;
|
|
1174
1174
|
}
|
|
1175
1175
|
export interface UpdateIntegrationResponseResponse {
|
|
1176
|
-
ContentHandlingStrategy?: ContentHandlingStrategy;
|
|
1177
|
-
IntegrationResponseId?: string;
|
|
1178
|
-
IntegrationResponseKey?: string;
|
|
1179
|
-
ResponseParameters?: Record<string, string
|
|
1180
|
-
ResponseTemplates?: Record<string, string
|
|
1181
|
-
TemplateSelectionExpression?: string;
|
|
1176
|
+
ContentHandlingStrategy?: ContentHandlingStrategy | undefined;
|
|
1177
|
+
IntegrationResponseId?: string | undefined;
|
|
1178
|
+
IntegrationResponseKey?: string | undefined;
|
|
1179
|
+
ResponseParameters?: Record<string, string> | undefined;
|
|
1180
|
+
ResponseTemplates?: Record<string, string> | undefined;
|
|
1181
|
+
TemplateSelectionExpression?: string | undefined;
|
|
1182
1182
|
}
|
|
1183
1183
|
export interface UpdateModelRequest {
|
|
1184
1184
|
ApiId: string | undefined;
|
|
1185
|
-
ContentType?: string;
|
|
1186
|
-
Description?: string;
|
|
1185
|
+
ContentType?: string | undefined;
|
|
1186
|
+
Description?: string | undefined;
|
|
1187
1187
|
ModelId: string | undefined;
|
|
1188
|
-
Name?: string;
|
|
1189
|
-
Schema?: string;
|
|
1188
|
+
Name?: string | undefined;
|
|
1189
|
+
Schema?: string | undefined;
|
|
1190
1190
|
}
|
|
1191
1191
|
export interface UpdateModelResponse {
|
|
1192
|
-
ContentType?: string;
|
|
1193
|
-
Description?: string;
|
|
1194
|
-
ModelId?: string;
|
|
1195
|
-
Name?: string;
|
|
1196
|
-
Schema?: string;
|
|
1192
|
+
ContentType?: string | undefined;
|
|
1193
|
+
Description?: string | undefined;
|
|
1194
|
+
ModelId?: string | undefined;
|
|
1195
|
+
Name?: string | undefined;
|
|
1196
|
+
Schema?: string | undefined;
|
|
1197
1197
|
}
|
|
1198
1198
|
export interface UpdateRouteRequest {
|
|
1199
1199
|
ApiId: string | undefined;
|
|
1200
|
-
ApiKeyRequired?: boolean;
|
|
1201
|
-
AuthorizationScopes?: string[];
|
|
1202
|
-
AuthorizationType?: AuthorizationType;
|
|
1203
|
-
AuthorizerId?: string;
|
|
1204
|
-
ModelSelectionExpression?: string;
|
|
1205
|
-
OperationName?: string;
|
|
1206
|
-
RequestModels?: Record<string, string
|
|
1207
|
-
RequestParameters?: Record<string, ParameterConstraints
|
|
1200
|
+
ApiKeyRequired?: boolean | undefined;
|
|
1201
|
+
AuthorizationScopes?: string[] | undefined;
|
|
1202
|
+
AuthorizationType?: AuthorizationType | undefined;
|
|
1203
|
+
AuthorizerId?: string | undefined;
|
|
1204
|
+
ModelSelectionExpression?: string | undefined;
|
|
1205
|
+
OperationName?: string | undefined;
|
|
1206
|
+
RequestModels?: Record<string, string> | undefined;
|
|
1207
|
+
RequestParameters?: Record<string, ParameterConstraints> | undefined;
|
|
1208
1208
|
RouteId: string | undefined;
|
|
1209
|
-
RouteKey?: string;
|
|
1210
|
-
RouteResponseSelectionExpression?: string;
|
|
1211
|
-
Target?: string;
|
|
1209
|
+
RouteKey?: string | undefined;
|
|
1210
|
+
RouteResponseSelectionExpression?: string | undefined;
|
|
1211
|
+
Target?: string | undefined;
|
|
1212
1212
|
}
|
|
1213
1213
|
export interface UpdateRouteResult {
|
|
1214
|
-
ApiGatewayManaged?: boolean;
|
|
1215
|
-
ApiKeyRequired?: boolean;
|
|
1216
|
-
AuthorizationScopes?: string[];
|
|
1217
|
-
AuthorizationType?: AuthorizationType;
|
|
1218
|
-
AuthorizerId?: string;
|
|
1219
|
-
ModelSelectionExpression?: string;
|
|
1220
|
-
OperationName?: string;
|
|
1221
|
-
RequestModels?: Record<string, string
|
|
1222
|
-
RequestParameters?: Record<string, ParameterConstraints
|
|
1223
|
-
RouteId?: string;
|
|
1224
|
-
RouteKey?: string;
|
|
1225
|
-
RouteResponseSelectionExpression?: string;
|
|
1226
|
-
Target?: string;
|
|
1214
|
+
ApiGatewayManaged?: boolean | undefined;
|
|
1215
|
+
ApiKeyRequired?: boolean | undefined;
|
|
1216
|
+
AuthorizationScopes?: string[] | undefined;
|
|
1217
|
+
AuthorizationType?: AuthorizationType | undefined;
|
|
1218
|
+
AuthorizerId?: string | undefined;
|
|
1219
|
+
ModelSelectionExpression?: string | undefined;
|
|
1220
|
+
OperationName?: string | undefined;
|
|
1221
|
+
RequestModels?: Record<string, string> | undefined;
|
|
1222
|
+
RequestParameters?: Record<string, ParameterConstraints> | undefined;
|
|
1223
|
+
RouteId?: string | undefined;
|
|
1224
|
+
RouteKey?: string | undefined;
|
|
1225
|
+
RouteResponseSelectionExpression?: string | undefined;
|
|
1226
|
+
Target?: string | undefined;
|
|
1227
1227
|
}
|
|
1228
1228
|
export interface UpdateRouteResponseRequest {
|
|
1229
1229
|
ApiId: string | undefined;
|
|
1230
|
-
ModelSelectionExpression?: string;
|
|
1231
|
-
ResponseModels?: Record<string, string
|
|
1232
|
-
ResponseParameters?: Record<string, ParameterConstraints
|
|
1230
|
+
ModelSelectionExpression?: string | undefined;
|
|
1231
|
+
ResponseModels?: Record<string, string> | undefined;
|
|
1232
|
+
ResponseParameters?: Record<string, ParameterConstraints> | undefined;
|
|
1233
1233
|
RouteId: string | undefined;
|
|
1234
1234
|
RouteResponseId: string | undefined;
|
|
1235
|
-
RouteResponseKey?: string;
|
|
1235
|
+
RouteResponseKey?: string | undefined;
|
|
1236
1236
|
}
|
|
1237
1237
|
export interface UpdateRouteResponseResponse {
|
|
1238
|
-
ModelSelectionExpression?: string;
|
|
1239
|
-
ResponseModels?: Record<string, string
|
|
1240
|
-
ResponseParameters?: Record<string, ParameterConstraints
|
|
1241
|
-
RouteResponseId?: string;
|
|
1242
|
-
RouteResponseKey?: string;
|
|
1238
|
+
ModelSelectionExpression?: string | undefined;
|
|
1239
|
+
ResponseModels?: Record<string, string> | undefined;
|
|
1240
|
+
ResponseParameters?: Record<string, ParameterConstraints> | undefined;
|
|
1241
|
+
RouteResponseId?: string | undefined;
|
|
1242
|
+
RouteResponseKey?: string | undefined;
|
|
1243
1243
|
}
|
|
1244
1244
|
export interface UpdateStageRequest {
|
|
1245
|
-
AccessLogSettings?: AccessLogSettings;
|
|
1245
|
+
AccessLogSettings?: AccessLogSettings | undefined;
|
|
1246
1246
|
ApiId: string | undefined;
|
|
1247
|
-
AutoDeploy?: boolean;
|
|
1248
|
-
ClientCertificateId?: string;
|
|
1249
|
-
DefaultRouteSettings?: RouteSettings;
|
|
1250
|
-
DeploymentId?: string;
|
|
1251
|
-
Description?: string;
|
|
1252
|
-
RouteSettings?: Record<string, RouteSettings
|
|
1247
|
+
AutoDeploy?: boolean | undefined;
|
|
1248
|
+
ClientCertificateId?: string | undefined;
|
|
1249
|
+
DefaultRouteSettings?: RouteSettings | undefined;
|
|
1250
|
+
DeploymentId?: string | undefined;
|
|
1251
|
+
Description?: string | undefined;
|
|
1252
|
+
RouteSettings?: Record<string, RouteSettings> | undefined;
|
|
1253
1253
|
StageName: string | undefined;
|
|
1254
|
-
StageVariables?: Record<string, string
|
|
1254
|
+
StageVariables?: Record<string, string> | undefined;
|
|
1255
1255
|
}
|
|
1256
1256
|
export interface UpdateStageResponse {
|
|
1257
|
-
AccessLogSettings?: AccessLogSettings;
|
|
1258
|
-
ApiGatewayManaged?: boolean;
|
|
1259
|
-
AutoDeploy?: boolean;
|
|
1260
|
-
ClientCertificateId?: string;
|
|
1261
|
-
CreatedDate?: Date;
|
|
1262
|
-
DefaultRouteSettings?: RouteSettings;
|
|
1263
|
-
DeploymentId?: string;
|
|
1264
|
-
Description?: string;
|
|
1265
|
-
LastDeploymentStatusMessage?: string;
|
|
1266
|
-
LastUpdatedDate?: Date;
|
|
1267
|
-
RouteSettings?: Record<string, RouteSettings
|
|
1268
|
-
StageName?: string;
|
|
1269
|
-
StageVariables?: Record<string, string
|
|
1270
|
-
Tags?: Record<string, string
|
|
1257
|
+
AccessLogSettings?: AccessLogSettings | undefined;
|
|
1258
|
+
ApiGatewayManaged?: boolean | undefined;
|
|
1259
|
+
AutoDeploy?: boolean | undefined;
|
|
1260
|
+
ClientCertificateId?: string | undefined;
|
|
1261
|
+
CreatedDate?: Date | undefined;
|
|
1262
|
+
DefaultRouteSettings?: RouteSettings | undefined;
|
|
1263
|
+
DeploymentId?: string | undefined;
|
|
1264
|
+
Description?: string | undefined;
|
|
1265
|
+
LastDeploymentStatusMessage?: string | undefined;
|
|
1266
|
+
LastUpdatedDate?: Date | undefined;
|
|
1267
|
+
RouteSettings?: Record<string, RouteSettings> | undefined;
|
|
1268
|
+
StageName?: string | undefined;
|
|
1269
|
+
StageVariables?: Record<string, string> | undefined;
|
|
1270
|
+
Tags?: Record<string, string> | undefined;
|
|
1271
1271
|
}
|
|
1272
1272
|
export interface UpdateVpcLinkRequest {
|
|
1273
|
-
Name?: string;
|
|
1273
|
+
Name?: string | undefined;
|
|
1274
1274
|
VpcLinkId: string | undefined;
|
|
1275
1275
|
}
|
|
1276
1276
|
export interface UpdateVpcLinkResponse {
|
|
1277
|
-
CreatedDate?: Date;
|
|
1278
|
-
Name?: string;
|
|
1279
|
-
SecurityGroupIds?: string[];
|
|
1280
|
-
SubnetIds?: string[];
|
|
1281
|
-
Tags?: Record<string, string
|
|
1282
|
-
VpcLinkId?: string;
|
|
1283
|
-
VpcLinkStatus?: VpcLinkStatus;
|
|
1284
|
-
VpcLinkStatusMessage?: string;
|
|
1285
|
-
VpcLinkVersion?: VpcLinkVersion;
|
|
1277
|
+
CreatedDate?: Date | undefined;
|
|
1278
|
+
Name?: string | undefined;
|
|
1279
|
+
SecurityGroupIds?: string[] | undefined;
|
|
1280
|
+
SubnetIds?: string[] | undefined;
|
|
1281
|
+
Tags?: Record<string, string> | undefined;
|
|
1282
|
+
VpcLinkId?: string | undefined;
|
|
1283
|
+
VpcLinkStatus?: VpcLinkStatus | undefined;
|
|
1284
|
+
VpcLinkStatusMessage?: string | undefined;
|
|
1285
|
+
VpcLinkVersion?: VpcLinkVersion | undefined;
|
|
1286
1286
|
}
|