@pulumi/aws 5.34.0-alpha.1680199795 → 5.34.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/appmesh/getRoute.d.ts +103 -0
- package/appmesh/getRoute.js +29 -0
- package/appmesh/getRoute.js.map +1 -0
- package/appmesh/getVirtualGateway.d.ts +90 -0
- package/appmesh/getVirtualGateway.js +31 -0
- package/appmesh/getVirtualGateway.js.map +1 -0
- package/appmesh/getVirtualService.d.ts +1 -1
- package/appmesh/index.d.ts +6 -0
- package/appmesh/index.js +7 -1
- package/appmesh/index.js.map +1 -1
- package/appmesh/mesh.d.ts +6 -0
- package/appmesh/mesh.js +1 -1
- package/appmesh/mesh.js.map +1 -1
- package/appmesh/route.d.ts +6 -0
- package/appmesh/route.js +1 -1
- package/appmesh/route.js.map +1 -1
- package/appmesh/virtualGateway.d.ts +6 -0
- package/appmesh/virtualGateway.js +1 -1
- package/appmesh/virtualGateway.js.map +1 -1
- package/appmesh/virtualService.d.ts +6 -0
- package/appmesh/virtualService.js +1 -1
- package/appmesh/virtualService.js.map +1 -1
- package/cloudwatch/eventBusPolicy.d.ts +6 -3
- package/cloudwatch/eventBusPolicy.js.map +1 -1
- package/cloudwatch/eventPermission.d.ts +6 -3
- package/cloudwatch/eventPermission.js.map +1 -1
- package/cloudwatch/eventRule.d.ts +6 -3
- package/cloudwatch/eventRule.js.map +1 -1
- package/cloudwatch/eventTarget.d.ts +6 -3
- package/cloudwatch/eventTarget.js.map +1 -1
- package/codepipeline/pipeline.d.ts +125 -0
- package/codepipeline/pipeline.js +125 -0
- package/codepipeline/pipeline.js.map +1 -1
- package/cognito/userPoolClient.d.ts +14 -11
- package/cognito/userPoolClient.js +14 -11
- package/cognito/userPoolClient.js.map +1 -1
- package/ec2/placementGroup.d.ts +10 -10
- package/ec2/securityGroup.d.ts +48 -14
- package/ec2/securityGroup.js +45 -8
- package/ec2/securityGroup.js.map +1 -1
- package/ec2/vpcIpam.d.ts +12 -0
- package/ec2/vpcIpam.js.map +1 -1
- package/ec2/vpcIpamResourceDiscoveryAssociation.d.ts +38 -11
- package/ec2/vpcIpamResourceDiscoveryAssociation.js +3 -0
- package/ec2/vpcIpamResourceDiscoveryAssociation.js.map +1 -1
- package/ec2/vpcIpamScope.d.ts +8 -2
- package/ec2/vpcIpamScope.js.map +1 -1
- package/ecs/getCluster.d.ts +18 -0
- package/ecs/getCluster.js +1 -0
- package/ecs/getCluster.js.map +1 -1
- package/gamelift/matchmakingConfiguration.d.ts +4 -4
- package/gamelift/matchmakingConfiguration.js +0 -6
- package/gamelift/matchmakingConfiguration.js.map +1 -1
- package/lightsail/instance.d.ts +18 -3
- package/lightsail/instance.js +15 -0
- package/lightsail/instance.js.map +1 -1
- package/oam/index.d.ts +3 -0
- package/oam/index.js +6 -1
- package/oam/index.js.map +1 -1
- package/oam/link.d.ts +156 -0
- package/oam/link.js +102 -0
- package/oam/link.js.map +1 -0
- package/package.json +2 -2
- package/package.json.dev +2 -2
- package/rds/cluster.d.ts +25 -3
- package/rds/cluster.js +22 -0
- package/rds/cluster.js.map +1 -1
- package/rds/getReservedInstanceOffering.d.ts +4 -4
- package/rds/reservedInstance.d.ts +15 -0
- package/rds/reservedInstance.js.map +1 -1
- package/securityhub/account.d.ts +12 -0
- package/securityhub/account.js +2 -0
- package/securityhub/account.js.map +1 -1
- package/securityhub/member.d.ts +2 -2
- package/securityhub/member.js +0 -3
- package/securityhub/member.js.map +1 -1
- package/sesv2/contactList.d.ts +154 -0
- package/sesv2/contactList.js +104 -0
- package/sesv2/contactList.js.map +1 -0
- package/sesv2/index.d.ts +3 -0
- package/sesv2/index.js +6 -1
- package/sesv2/index.js.map +1 -1
- package/types/input.d.ts +77 -7
- package/types/output.d.ts +702 -7
package/types/output.d.ts
CHANGED
|
@@ -4096,6 +4096,631 @@ export declare namespace appmesh {
|
|
|
4096
4096
|
*/
|
|
4097
4097
|
type: string;
|
|
4098
4098
|
}
|
|
4099
|
+
interface GetRouteSpec {
|
|
4100
|
+
/**
|
|
4101
|
+
* GRPC routing information for the route.
|
|
4102
|
+
*/
|
|
4103
|
+
grpcRoutes: outputs.appmesh.GetRouteSpecGrpcRoute[];
|
|
4104
|
+
/**
|
|
4105
|
+
* HTTP/2 routing information for the route.
|
|
4106
|
+
*/
|
|
4107
|
+
http2Routes: outputs.appmesh.GetRouteSpecHttp2Route[];
|
|
4108
|
+
/**
|
|
4109
|
+
* HTTP routing information for the route.
|
|
4110
|
+
*/
|
|
4111
|
+
httpRoutes: outputs.appmesh.GetRouteSpecHttpRoute[];
|
|
4112
|
+
/**
|
|
4113
|
+
* Priority for the route, between `0` and `1000`.
|
|
4114
|
+
*/
|
|
4115
|
+
priority: number;
|
|
4116
|
+
/**
|
|
4117
|
+
* TCP routing information for the route.
|
|
4118
|
+
*/
|
|
4119
|
+
tcpRoutes: outputs.appmesh.GetRouteSpecTcpRoute[];
|
|
4120
|
+
}
|
|
4121
|
+
interface GetRouteSpecGrpcRoute {
|
|
4122
|
+
/**
|
|
4123
|
+
* Action to take if a match is determined.
|
|
4124
|
+
*/
|
|
4125
|
+
actions: outputs.appmesh.GetRouteSpecGrpcRouteAction[];
|
|
4126
|
+
/**
|
|
4127
|
+
* Criteria for determining an HTTP request match.
|
|
4128
|
+
*/
|
|
4129
|
+
matches: outputs.appmesh.GetRouteSpecGrpcRouteMatch[];
|
|
4130
|
+
/**
|
|
4131
|
+
* Retry policy.
|
|
4132
|
+
*/
|
|
4133
|
+
retryPolicies: outputs.appmesh.GetRouteSpecGrpcRouteRetryPolicy[];
|
|
4134
|
+
/**
|
|
4135
|
+
* Types of timeouts.
|
|
4136
|
+
*/
|
|
4137
|
+
timeouts: outputs.appmesh.GetRouteSpecGrpcRouteTimeout[];
|
|
4138
|
+
}
|
|
4139
|
+
interface GetRouteSpecGrpcRouteAction {
|
|
4140
|
+
weightedTargets: outputs.appmesh.GetRouteSpecGrpcRouteActionWeightedTarget[];
|
|
4141
|
+
}
|
|
4142
|
+
interface GetRouteSpecGrpcRouteActionWeightedTarget {
|
|
4143
|
+
port: number;
|
|
4144
|
+
virtualNode: string;
|
|
4145
|
+
weight: number;
|
|
4146
|
+
}
|
|
4147
|
+
interface GetRouteSpecGrpcRouteMatch {
|
|
4148
|
+
metadatas: outputs.appmesh.GetRouteSpecGrpcRouteMatchMetadata[];
|
|
4149
|
+
methodName: string;
|
|
4150
|
+
port: number;
|
|
4151
|
+
prefix: string;
|
|
4152
|
+
serviceName: string;
|
|
4153
|
+
}
|
|
4154
|
+
interface GetRouteSpecGrpcRouteMatchMetadata {
|
|
4155
|
+
invert: boolean;
|
|
4156
|
+
/**
|
|
4157
|
+
* Criteria for determining an HTTP request match.
|
|
4158
|
+
*/
|
|
4159
|
+
matches: outputs.appmesh.GetRouteSpecGrpcRouteMatchMetadataMatch[];
|
|
4160
|
+
/**
|
|
4161
|
+
* Name of the route.
|
|
4162
|
+
*/
|
|
4163
|
+
name: string;
|
|
4164
|
+
}
|
|
4165
|
+
interface GetRouteSpecGrpcRouteMatchMetadataMatch {
|
|
4166
|
+
exact: string;
|
|
4167
|
+
prefix: string;
|
|
4168
|
+
ranges: outputs.appmesh.GetRouteSpecGrpcRouteMatchMetadataMatchRange[];
|
|
4169
|
+
regex: string;
|
|
4170
|
+
suffix: string;
|
|
4171
|
+
}
|
|
4172
|
+
interface GetRouteSpecGrpcRouteMatchMetadataMatchRange {
|
|
4173
|
+
end: number;
|
|
4174
|
+
start: number;
|
|
4175
|
+
}
|
|
4176
|
+
interface GetRouteSpecGrpcRouteRetryPolicy {
|
|
4177
|
+
grpcRetryEvents: string[];
|
|
4178
|
+
httpRetryEvents: string[];
|
|
4179
|
+
maxRetries: number;
|
|
4180
|
+
perRetryTimeouts: outputs.appmesh.GetRouteSpecGrpcRouteRetryPolicyPerRetryTimeout[];
|
|
4181
|
+
tcpRetryEvents: string[];
|
|
4182
|
+
}
|
|
4183
|
+
interface GetRouteSpecGrpcRouteRetryPolicyPerRetryTimeout {
|
|
4184
|
+
unit: string;
|
|
4185
|
+
value: number;
|
|
4186
|
+
}
|
|
4187
|
+
interface GetRouteSpecGrpcRouteTimeout {
|
|
4188
|
+
idles: outputs.appmesh.GetRouteSpecGrpcRouteTimeoutIdle[];
|
|
4189
|
+
perRequests: outputs.appmesh.GetRouteSpecGrpcRouteTimeoutPerRequest[];
|
|
4190
|
+
}
|
|
4191
|
+
interface GetRouteSpecGrpcRouteTimeoutIdle {
|
|
4192
|
+
unit: string;
|
|
4193
|
+
value: number;
|
|
4194
|
+
}
|
|
4195
|
+
interface GetRouteSpecGrpcRouteTimeoutPerRequest {
|
|
4196
|
+
unit: string;
|
|
4197
|
+
value: number;
|
|
4198
|
+
}
|
|
4199
|
+
interface GetRouteSpecHttp2Route {
|
|
4200
|
+
/**
|
|
4201
|
+
* Action to take if a match is determined.
|
|
4202
|
+
*/
|
|
4203
|
+
actions: outputs.appmesh.GetRouteSpecHttp2RouteAction[];
|
|
4204
|
+
/**
|
|
4205
|
+
* Criteria for determining an HTTP request match.
|
|
4206
|
+
*/
|
|
4207
|
+
matches: outputs.appmesh.GetRouteSpecHttp2RouteMatch[];
|
|
4208
|
+
/**
|
|
4209
|
+
* Retry policy.
|
|
4210
|
+
*/
|
|
4211
|
+
retryPolicies: outputs.appmesh.GetRouteSpecHttp2RouteRetryPolicy[];
|
|
4212
|
+
/**
|
|
4213
|
+
* Types of timeouts.
|
|
4214
|
+
*/
|
|
4215
|
+
timeouts: outputs.appmesh.GetRouteSpecHttp2RouteTimeout[];
|
|
4216
|
+
}
|
|
4217
|
+
interface GetRouteSpecHttp2RouteAction {
|
|
4218
|
+
weightedTargets: outputs.appmesh.GetRouteSpecHttp2RouteActionWeightedTarget[];
|
|
4219
|
+
}
|
|
4220
|
+
interface GetRouteSpecHttp2RouteActionWeightedTarget {
|
|
4221
|
+
port: number;
|
|
4222
|
+
virtualNode: string;
|
|
4223
|
+
weight: number;
|
|
4224
|
+
}
|
|
4225
|
+
interface GetRouteSpecHttp2RouteMatch {
|
|
4226
|
+
headers: outputs.appmesh.GetRouteSpecHttp2RouteMatchHeader[];
|
|
4227
|
+
method: string;
|
|
4228
|
+
port: number;
|
|
4229
|
+
prefix: string;
|
|
4230
|
+
scheme: string;
|
|
4231
|
+
}
|
|
4232
|
+
interface GetRouteSpecHttp2RouteMatchHeader {
|
|
4233
|
+
invert: boolean;
|
|
4234
|
+
/**
|
|
4235
|
+
* Criteria for determining an HTTP request match.
|
|
4236
|
+
*/
|
|
4237
|
+
matches: outputs.appmesh.GetRouteSpecHttp2RouteMatchHeaderMatch[];
|
|
4238
|
+
/**
|
|
4239
|
+
* Name of the route.
|
|
4240
|
+
*/
|
|
4241
|
+
name: string;
|
|
4242
|
+
}
|
|
4243
|
+
interface GetRouteSpecHttp2RouteMatchHeaderMatch {
|
|
4244
|
+
exact: string;
|
|
4245
|
+
prefix: string;
|
|
4246
|
+
ranges: outputs.appmesh.GetRouteSpecHttp2RouteMatchHeaderMatchRange[];
|
|
4247
|
+
regex: string;
|
|
4248
|
+
suffix: string;
|
|
4249
|
+
}
|
|
4250
|
+
interface GetRouteSpecHttp2RouteMatchHeaderMatchRange {
|
|
4251
|
+
end: number;
|
|
4252
|
+
start: number;
|
|
4253
|
+
}
|
|
4254
|
+
interface GetRouteSpecHttp2RouteRetryPolicy {
|
|
4255
|
+
httpRetryEvents: string[];
|
|
4256
|
+
maxRetries: number;
|
|
4257
|
+
perRetryTimeouts: outputs.appmesh.GetRouteSpecHttp2RouteRetryPolicyPerRetryTimeout[];
|
|
4258
|
+
tcpRetryEvents: string[];
|
|
4259
|
+
}
|
|
4260
|
+
interface GetRouteSpecHttp2RouteRetryPolicyPerRetryTimeout {
|
|
4261
|
+
unit: string;
|
|
4262
|
+
value: number;
|
|
4263
|
+
}
|
|
4264
|
+
interface GetRouteSpecHttp2RouteTimeout {
|
|
4265
|
+
idles: outputs.appmesh.GetRouteSpecHttp2RouteTimeoutIdle[];
|
|
4266
|
+
perRequests: outputs.appmesh.GetRouteSpecHttp2RouteTimeoutPerRequest[];
|
|
4267
|
+
}
|
|
4268
|
+
interface GetRouteSpecHttp2RouteTimeoutIdle {
|
|
4269
|
+
unit: string;
|
|
4270
|
+
value: number;
|
|
4271
|
+
}
|
|
4272
|
+
interface GetRouteSpecHttp2RouteTimeoutPerRequest {
|
|
4273
|
+
unit: string;
|
|
4274
|
+
value: number;
|
|
4275
|
+
}
|
|
4276
|
+
interface GetRouteSpecHttpRoute {
|
|
4277
|
+
/**
|
|
4278
|
+
* Action to take if a match is determined.
|
|
4279
|
+
*/
|
|
4280
|
+
actions: outputs.appmesh.GetRouteSpecHttpRouteAction[];
|
|
4281
|
+
/**
|
|
4282
|
+
* Criteria for determining an HTTP request match.
|
|
4283
|
+
*/
|
|
4284
|
+
matches: outputs.appmesh.GetRouteSpecHttpRouteMatch[];
|
|
4285
|
+
/**
|
|
4286
|
+
* Retry policy.
|
|
4287
|
+
*/
|
|
4288
|
+
retryPolicies: outputs.appmesh.GetRouteSpecHttpRouteRetryPolicy[];
|
|
4289
|
+
/**
|
|
4290
|
+
* Types of timeouts.
|
|
4291
|
+
*/
|
|
4292
|
+
timeouts: outputs.appmesh.GetRouteSpecHttpRouteTimeout[];
|
|
4293
|
+
}
|
|
4294
|
+
interface GetRouteSpecHttpRouteAction {
|
|
4295
|
+
weightedTargets: outputs.appmesh.GetRouteSpecHttpRouteActionWeightedTarget[];
|
|
4296
|
+
}
|
|
4297
|
+
interface GetRouteSpecHttpRouteActionWeightedTarget {
|
|
4298
|
+
port: number;
|
|
4299
|
+
virtualNode: string;
|
|
4300
|
+
weight: number;
|
|
4301
|
+
}
|
|
4302
|
+
interface GetRouteSpecHttpRouteMatch {
|
|
4303
|
+
headers: outputs.appmesh.GetRouteSpecHttpRouteMatchHeader[];
|
|
4304
|
+
method: string;
|
|
4305
|
+
port: number;
|
|
4306
|
+
prefix: string;
|
|
4307
|
+
scheme: string;
|
|
4308
|
+
}
|
|
4309
|
+
interface GetRouteSpecHttpRouteMatchHeader {
|
|
4310
|
+
invert: boolean;
|
|
4311
|
+
/**
|
|
4312
|
+
* Criteria for determining an HTTP request match.
|
|
4313
|
+
*/
|
|
4314
|
+
matches: outputs.appmesh.GetRouteSpecHttpRouteMatchHeaderMatch[];
|
|
4315
|
+
/**
|
|
4316
|
+
* Name of the route.
|
|
4317
|
+
*/
|
|
4318
|
+
name: string;
|
|
4319
|
+
}
|
|
4320
|
+
interface GetRouteSpecHttpRouteMatchHeaderMatch {
|
|
4321
|
+
exact: string;
|
|
4322
|
+
prefix: string;
|
|
4323
|
+
ranges: outputs.appmesh.GetRouteSpecHttpRouteMatchHeaderMatchRange[];
|
|
4324
|
+
regex: string;
|
|
4325
|
+
suffix: string;
|
|
4326
|
+
}
|
|
4327
|
+
interface GetRouteSpecHttpRouteMatchHeaderMatchRange {
|
|
4328
|
+
end: number;
|
|
4329
|
+
start: number;
|
|
4330
|
+
}
|
|
4331
|
+
interface GetRouteSpecHttpRouteRetryPolicy {
|
|
4332
|
+
httpRetryEvents: string[];
|
|
4333
|
+
maxRetries: number;
|
|
4334
|
+
perRetryTimeouts: outputs.appmesh.GetRouteSpecHttpRouteRetryPolicyPerRetryTimeout[];
|
|
4335
|
+
tcpRetryEvents: string[];
|
|
4336
|
+
}
|
|
4337
|
+
interface GetRouteSpecHttpRouteRetryPolicyPerRetryTimeout {
|
|
4338
|
+
unit: string;
|
|
4339
|
+
value: number;
|
|
4340
|
+
}
|
|
4341
|
+
interface GetRouteSpecHttpRouteTimeout {
|
|
4342
|
+
idles: outputs.appmesh.GetRouteSpecHttpRouteTimeoutIdle[];
|
|
4343
|
+
perRequests: outputs.appmesh.GetRouteSpecHttpRouteTimeoutPerRequest[];
|
|
4344
|
+
}
|
|
4345
|
+
interface GetRouteSpecHttpRouteTimeoutIdle {
|
|
4346
|
+
unit: string;
|
|
4347
|
+
value: number;
|
|
4348
|
+
}
|
|
4349
|
+
interface GetRouteSpecHttpRouteTimeoutPerRequest {
|
|
4350
|
+
unit: string;
|
|
4351
|
+
value: number;
|
|
4352
|
+
}
|
|
4353
|
+
interface GetRouteSpecTcpRoute {
|
|
4354
|
+
/**
|
|
4355
|
+
* Action to take if a match is determined.
|
|
4356
|
+
*/
|
|
4357
|
+
actions: outputs.appmesh.GetRouteSpecTcpRouteAction[];
|
|
4358
|
+
/**
|
|
4359
|
+
* Criteria for determining an HTTP request match.
|
|
4360
|
+
*/
|
|
4361
|
+
matches: outputs.appmesh.GetRouteSpecTcpRouteMatch[];
|
|
4362
|
+
/**
|
|
4363
|
+
* Types of timeouts.
|
|
4364
|
+
*/
|
|
4365
|
+
timeouts: outputs.appmesh.GetRouteSpecTcpRouteTimeout[];
|
|
4366
|
+
}
|
|
4367
|
+
interface GetRouteSpecTcpRouteAction {
|
|
4368
|
+
weightedTargets: outputs.appmesh.GetRouteSpecTcpRouteActionWeightedTarget[];
|
|
4369
|
+
}
|
|
4370
|
+
interface GetRouteSpecTcpRouteActionWeightedTarget {
|
|
4371
|
+
port: number;
|
|
4372
|
+
virtualNode: string;
|
|
4373
|
+
weight: number;
|
|
4374
|
+
}
|
|
4375
|
+
interface GetRouteSpecTcpRouteMatch {
|
|
4376
|
+
port: number;
|
|
4377
|
+
}
|
|
4378
|
+
interface GetRouteSpecTcpRouteTimeout {
|
|
4379
|
+
idles: outputs.appmesh.GetRouteSpecTcpRouteTimeoutIdle[];
|
|
4380
|
+
}
|
|
4381
|
+
interface GetRouteSpecTcpRouteTimeoutIdle {
|
|
4382
|
+
unit: string;
|
|
4383
|
+
value: number;
|
|
4384
|
+
}
|
|
4385
|
+
interface GetVirtualGatewaySpec {
|
|
4386
|
+
/**
|
|
4387
|
+
* Defaults for backends.
|
|
4388
|
+
*/
|
|
4389
|
+
backendDefaults: outputs.appmesh.GetVirtualGatewaySpecBackendDefault[];
|
|
4390
|
+
/**
|
|
4391
|
+
* Listeners that the mesh endpoint is expected to receive inbound traffic from. You can specify one listener.
|
|
4392
|
+
*/
|
|
4393
|
+
listeners: outputs.appmesh.GetVirtualGatewaySpecListener[];
|
|
4394
|
+
/**
|
|
4395
|
+
* Inbound and outbound access logging information for the virtual gateway.
|
|
4396
|
+
*/
|
|
4397
|
+
loggings: outputs.appmesh.GetVirtualGatewaySpecLogging[];
|
|
4398
|
+
}
|
|
4399
|
+
interface GetVirtualGatewaySpecBackendDefault {
|
|
4400
|
+
/**
|
|
4401
|
+
* Default client policy for virtual gateway backends.
|
|
4402
|
+
*/
|
|
4403
|
+
clientPolicies: outputs.appmesh.GetVirtualGatewaySpecBackendDefaultClientPolicy[];
|
|
4404
|
+
}
|
|
4405
|
+
interface GetVirtualGatewaySpecBackendDefaultClientPolicy {
|
|
4406
|
+
/**
|
|
4407
|
+
* Transport Layer Security (TLS) properties for the listener
|
|
4408
|
+
*/
|
|
4409
|
+
tls: outputs.appmesh.GetVirtualGatewaySpecBackendDefaultClientPolicyTl[];
|
|
4410
|
+
}
|
|
4411
|
+
interface GetVirtualGatewaySpecBackendDefaultClientPolicyTl {
|
|
4412
|
+
/**
|
|
4413
|
+
* Listener's TLS certificate.
|
|
4414
|
+
*/
|
|
4415
|
+
certificates: outputs.appmesh.GetVirtualGatewaySpecBackendDefaultClientPolicyTlCertificate[];
|
|
4416
|
+
/**
|
|
4417
|
+
* Whether the policy is enforced. Default is `true`.
|
|
4418
|
+
*/
|
|
4419
|
+
enforce: boolean;
|
|
4420
|
+
/**
|
|
4421
|
+
* One or more ports that the policy is enforced for.
|
|
4422
|
+
*/
|
|
4423
|
+
ports: number[];
|
|
4424
|
+
/**
|
|
4425
|
+
* Listener's Transport Layer Security (TLS) validation context.
|
|
4426
|
+
*/
|
|
4427
|
+
validations: outputs.appmesh.GetVirtualGatewaySpecBackendDefaultClientPolicyTlValidation[];
|
|
4428
|
+
}
|
|
4429
|
+
interface GetVirtualGatewaySpecBackendDefaultClientPolicyTlCertificate {
|
|
4430
|
+
/**
|
|
4431
|
+
* TLS validation context trust for a local file certificate.
|
|
4432
|
+
*/
|
|
4433
|
+
files: outputs.appmesh.GetVirtualGatewaySpecBackendDefaultClientPolicyTlCertificateFile[];
|
|
4434
|
+
/**
|
|
4435
|
+
* TLS validation context trust for a [Secret Discovery Service](https://www.envoyproxy.io/docs/envoy/latest/configuration/security/secret#secret-discovery-service-sds) certificate.
|
|
4436
|
+
*/
|
|
4437
|
+
sds: outputs.appmesh.GetVirtualGatewaySpecBackendDefaultClientPolicyTlCertificateSd[];
|
|
4438
|
+
}
|
|
4439
|
+
interface GetVirtualGatewaySpecBackendDefaultClientPolicyTlCertificateFile {
|
|
4440
|
+
/**
|
|
4441
|
+
* Certificate trust chain for a certificate stored on the file system of the mesh endpoint that the proxy is running on. Must be between 1 and 255 characters in length.
|
|
4442
|
+
*/
|
|
4443
|
+
certificateChain: string;
|
|
4444
|
+
/**
|
|
4445
|
+
* Private key for a certificate stored on the file system of the mesh endpoint that the proxy is running on. Must be between 1 and 255 characters in length.
|
|
4446
|
+
*/
|
|
4447
|
+
privateKey: string;
|
|
4448
|
+
}
|
|
4449
|
+
interface GetVirtualGatewaySpecBackendDefaultClientPolicyTlCertificateSd {
|
|
4450
|
+
/**
|
|
4451
|
+
* Name of the secret for a virtual gateway's Transport Layer Security (TLS) Secret Discovery Service validation context trust.
|
|
4452
|
+
*/
|
|
4453
|
+
secretName: string;
|
|
4454
|
+
}
|
|
4455
|
+
interface GetVirtualGatewaySpecBackendDefaultClientPolicyTlValidation {
|
|
4456
|
+
/**
|
|
4457
|
+
* SANs for a virtual gateway's listener's Transport Layer Security (TLS) validation context.
|
|
4458
|
+
*/
|
|
4459
|
+
subjectAlternativeNames: outputs.appmesh.GetVirtualGatewaySpecBackendDefaultClientPolicyTlValidationSubjectAlternativeName[];
|
|
4460
|
+
/**
|
|
4461
|
+
* TLS validation context trust.
|
|
4462
|
+
*/
|
|
4463
|
+
trusts: outputs.appmesh.GetVirtualGatewaySpecBackendDefaultClientPolicyTlValidationTrust[];
|
|
4464
|
+
}
|
|
4465
|
+
interface GetVirtualGatewaySpecBackendDefaultClientPolicyTlValidationSubjectAlternativeName {
|
|
4466
|
+
/**
|
|
4467
|
+
* Criteria for determining a SAN's match.
|
|
4468
|
+
*/
|
|
4469
|
+
matches: outputs.appmesh.GetVirtualGatewaySpecBackendDefaultClientPolicyTlValidationSubjectAlternativeNameMatch[];
|
|
4470
|
+
}
|
|
4471
|
+
interface GetVirtualGatewaySpecBackendDefaultClientPolicyTlValidationSubjectAlternativeNameMatch {
|
|
4472
|
+
/**
|
|
4473
|
+
* Values sent must match the specified values exactly.
|
|
4474
|
+
*/
|
|
4475
|
+
exacts: string[];
|
|
4476
|
+
}
|
|
4477
|
+
interface GetVirtualGatewaySpecBackendDefaultClientPolicyTlValidationTrust {
|
|
4478
|
+
/**
|
|
4479
|
+
* An AWS Certificate Manager (ACM) certificate.
|
|
4480
|
+
*/
|
|
4481
|
+
acms: outputs.appmesh.GetVirtualGatewaySpecBackendDefaultClientPolicyTlValidationTrustAcm[];
|
|
4482
|
+
/**
|
|
4483
|
+
* TLS validation context trust for a local file certificate.
|
|
4484
|
+
*/
|
|
4485
|
+
files: outputs.appmesh.GetVirtualGatewaySpecBackendDefaultClientPolicyTlValidationTrustFile[];
|
|
4486
|
+
/**
|
|
4487
|
+
* TLS validation context trust for a [Secret Discovery Service](https://www.envoyproxy.io/docs/envoy/latest/configuration/security/secret#secret-discovery-service-sds) certificate.
|
|
4488
|
+
*/
|
|
4489
|
+
sds: outputs.appmesh.GetVirtualGatewaySpecBackendDefaultClientPolicyTlValidationTrustSd[];
|
|
4490
|
+
}
|
|
4491
|
+
interface GetVirtualGatewaySpecBackendDefaultClientPolicyTlValidationTrustAcm {
|
|
4492
|
+
/**
|
|
4493
|
+
* One or more ACM ARNs.
|
|
4494
|
+
*/
|
|
4495
|
+
certificateAuthorityArns: string[];
|
|
4496
|
+
}
|
|
4497
|
+
interface GetVirtualGatewaySpecBackendDefaultClientPolicyTlValidationTrustFile {
|
|
4498
|
+
/**
|
|
4499
|
+
* Certificate trust chain for a certificate stored on the file system of the mesh endpoint that the proxy is running on. Must be between 1 and 255 characters in length.
|
|
4500
|
+
*/
|
|
4501
|
+
certificateChain: string;
|
|
4502
|
+
}
|
|
4503
|
+
interface GetVirtualGatewaySpecBackendDefaultClientPolicyTlValidationTrustSd {
|
|
4504
|
+
/**
|
|
4505
|
+
* Name of the secret for a virtual gateway's Transport Layer Security (TLS) Secret Discovery Service validation context trust.
|
|
4506
|
+
*/
|
|
4507
|
+
secretName: string;
|
|
4508
|
+
}
|
|
4509
|
+
interface GetVirtualGatewaySpecListener {
|
|
4510
|
+
/**
|
|
4511
|
+
* Connection pool information for the listener.
|
|
4512
|
+
*/
|
|
4513
|
+
connectionPools: outputs.appmesh.GetVirtualGatewaySpecListenerConnectionPool[];
|
|
4514
|
+
/**
|
|
4515
|
+
* Health check information for the listener.
|
|
4516
|
+
*/
|
|
4517
|
+
healthChecks: outputs.appmesh.GetVirtualGatewaySpecListenerHealthCheck[];
|
|
4518
|
+
/**
|
|
4519
|
+
* Port mapping information for the listener.
|
|
4520
|
+
*/
|
|
4521
|
+
portMappings: outputs.appmesh.GetVirtualGatewaySpecListenerPortMapping[];
|
|
4522
|
+
/**
|
|
4523
|
+
* Transport Layer Security (TLS) properties for the listener
|
|
4524
|
+
*/
|
|
4525
|
+
tls: outputs.appmesh.GetVirtualGatewaySpecListenerTl[];
|
|
4526
|
+
}
|
|
4527
|
+
interface GetVirtualGatewaySpecListenerConnectionPool {
|
|
4528
|
+
/**
|
|
4529
|
+
* Connection pool information for gRPC listeners.
|
|
4530
|
+
*/
|
|
4531
|
+
grpcs: outputs.appmesh.GetVirtualGatewaySpecListenerConnectionPoolGrpc[];
|
|
4532
|
+
/**
|
|
4533
|
+
* Connection pool information for HTTP2 listeners.
|
|
4534
|
+
*/
|
|
4535
|
+
http2s: outputs.appmesh.GetVirtualGatewaySpecListenerConnectionPoolHttp2[];
|
|
4536
|
+
/**
|
|
4537
|
+
* Connection pool information for HTTP listeners.
|
|
4538
|
+
*/
|
|
4539
|
+
https: outputs.appmesh.GetVirtualGatewaySpecListenerConnectionPoolHttp[];
|
|
4540
|
+
}
|
|
4541
|
+
interface GetVirtualGatewaySpecListenerConnectionPoolGrpc {
|
|
4542
|
+
/**
|
|
4543
|
+
* Maximum number of inflight requests Envoy can concurrently support across hosts in upstream cluster. Minimum value of `1`.
|
|
4544
|
+
*/
|
|
4545
|
+
maxRequests: number;
|
|
4546
|
+
}
|
|
4547
|
+
interface GetVirtualGatewaySpecListenerConnectionPoolHttp {
|
|
4548
|
+
/**
|
|
4549
|
+
* Maximum number of outbound TCP connections Envoy can establish concurrently with all hosts in upstream cluster. Minimum value of `1`.
|
|
4550
|
+
*/
|
|
4551
|
+
maxConnections: number;
|
|
4552
|
+
/**
|
|
4553
|
+
* Number of overflowing requests after `maxConnections` Envoy will queue to upstream cluster. Minimum value of `1`.
|
|
4554
|
+
*/
|
|
4555
|
+
maxPendingRequests: number;
|
|
4556
|
+
}
|
|
4557
|
+
interface GetVirtualGatewaySpecListenerConnectionPoolHttp2 {
|
|
4558
|
+
/**
|
|
4559
|
+
* Maximum number of inflight requests Envoy can concurrently support across hosts in upstream cluster. Minimum value of `1`.
|
|
4560
|
+
*/
|
|
4561
|
+
maxRequests: number;
|
|
4562
|
+
}
|
|
4563
|
+
interface GetVirtualGatewaySpecListenerHealthCheck {
|
|
4564
|
+
/**
|
|
4565
|
+
* Number of consecutive successful health checks that must occur before declaring listener healthy.
|
|
4566
|
+
*/
|
|
4567
|
+
healthyThreshold: number;
|
|
4568
|
+
/**
|
|
4569
|
+
* Time period in milliseconds between each health check execution.
|
|
4570
|
+
*/
|
|
4571
|
+
intervalMillis: number;
|
|
4572
|
+
/**
|
|
4573
|
+
* Destination path for the health check request. This is only required if the specified protocol is `http` or `http2`.
|
|
4574
|
+
*/
|
|
4575
|
+
path: string;
|
|
4576
|
+
/**
|
|
4577
|
+
* Destination port for the health check request. This port must match the port defined in the `portMapping` for the listener.
|
|
4578
|
+
*/
|
|
4579
|
+
port: number;
|
|
4580
|
+
/**
|
|
4581
|
+
* Protocol for the health check request. Valid values are `http`, `http2`, and `grpc`.
|
|
4582
|
+
*/
|
|
4583
|
+
protocol: string;
|
|
4584
|
+
/**
|
|
4585
|
+
* Amount of time to wait when receiving a response from the health check, in milliseconds.
|
|
4586
|
+
*/
|
|
4587
|
+
timeoutMillis: number;
|
|
4588
|
+
/**
|
|
4589
|
+
* Number of consecutive failed health checks that must occur before declaring a virtual gateway unhealthy.
|
|
4590
|
+
*/
|
|
4591
|
+
unhealthyThreshold: number;
|
|
4592
|
+
}
|
|
4593
|
+
interface GetVirtualGatewaySpecListenerPortMapping {
|
|
4594
|
+
/**
|
|
4595
|
+
* Destination port for the health check request. This port must match the port defined in the `portMapping` for the listener.
|
|
4596
|
+
*/
|
|
4597
|
+
port: number;
|
|
4598
|
+
/**
|
|
4599
|
+
* Protocol for the health check request. Valid values are `http`, `http2`, and `grpc`.
|
|
4600
|
+
*/
|
|
4601
|
+
protocol: string;
|
|
4602
|
+
}
|
|
4603
|
+
interface GetVirtualGatewaySpecListenerTl {
|
|
4604
|
+
/**
|
|
4605
|
+
* Listener's TLS certificate.
|
|
4606
|
+
*/
|
|
4607
|
+
certificates: outputs.appmesh.GetVirtualGatewaySpecListenerTlCertificate[];
|
|
4608
|
+
/**
|
|
4609
|
+
* Listener's TLS mode. Valid values: `DISABLED`, `PERMISSIVE`, `STRICT`.
|
|
4610
|
+
*/
|
|
4611
|
+
mode: string;
|
|
4612
|
+
/**
|
|
4613
|
+
* Listener's Transport Layer Security (TLS) validation context.
|
|
4614
|
+
*/
|
|
4615
|
+
validations: outputs.appmesh.GetVirtualGatewaySpecListenerTlValidation[];
|
|
4616
|
+
}
|
|
4617
|
+
interface GetVirtualGatewaySpecListenerTlCertificate {
|
|
4618
|
+
/**
|
|
4619
|
+
* An AWS Certificate Manager (ACM) certificate.
|
|
4620
|
+
*/
|
|
4621
|
+
acms: outputs.appmesh.GetVirtualGatewaySpecListenerTlCertificateAcm[];
|
|
4622
|
+
/**
|
|
4623
|
+
* TLS validation context trust for a local file certificate.
|
|
4624
|
+
*/
|
|
4625
|
+
files: outputs.appmesh.GetVirtualGatewaySpecListenerTlCertificateFile[];
|
|
4626
|
+
/**
|
|
4627
|
+
* TLS validation context trust for a [Secret Discovery Service](https://www.envoyproxy.io/docs/envoy/latest/configuration/security/secret#secret-discovery-service-sds) certificate.
|
|
4628
|
+
*/
|
|
4629
|
+
sds: outputs.appmesh.GetVirtualGatewaySpecListenerTlCertificateSd[];
|
|
4630
|
+
}
|
|
4631
|
+
interface GetVirtualGatewaySpecListenerTlCertificateAcm {
|
|
4632
|
+
/**
|
|
4633
|
+
* ARN for the certificate.
|
|
4634
|
+
*/
|
|
4635
|
+
certificateArn: string;
|
|
4636
|
+
}
|
|
4637
|
+
interface GetVirtualGatewaySpecListenerTlCertificateFile {
|
|
4638
|
+
/**
|
|
4639
|
+
* Certificate trust chain for a certificate stored on the file system of the mesh endpoint that the proxy is running on. Must be between 1 and 255 characters in length.
|
|
4640
|
+
*/
|
|
4641
|
+
certificateChain: string;
|
|
4642
|
+
/**
|
|
4643
|
+
* Private key for a certificate stored on the file system of the mesh endpoint that the proxy is running on. Must be between 1 and 255 characters in length.
|
|
4644
|
+
*/
|
|
4645
|
+
privateKey: string;
|
|
4646
|
+
}
|
|
4647
|
+
interface GetVirtualGatewaySpecListenerTlCertificateSd {
|
|
4648
|
+
/**
|
|
4649
|
+
* Name of the secret for a virtual gateway's Transport Layer Security (TLS) Secret Discovery Service validation context trust.
|
|
4650
|
+
*/
|
|
4651
|
+
secretName: string;
|
|
4652
|
+
}
|
|
4653
|
+
interface GetVirtualGatewaySpecListenerTlValidation {
|
|
4654
|
+
/**
|
|
4655
|
+
* SANs for a virtual gateway's listener's Transport Layer Security (TLS) validation context.
|
|
4656
|
+
*/
|
|
4657
|
+
subjectAlternativeNames: outputs.appmesh.GetVirtualGatewaySpecListenerTlValidationSubjectAlternativeName[];
|
|
4658
|
+
/**
|
|
4659
|
+
* TLS validation context trust.
|
|
4660
|
+
*/
|
|
4661
|
+
trusts: outputs.appmesh.GetVirtualGatewaySpecListenerTlValidationTrust[];
|
|
4662
|
+
}
|
|
4663
|
+
interface GetVirtualGatewaySpecListenerTlValidationSubjectAlternativeName {
|
|
4664
|
+
/**
|
|
4665
|
+
* Criteria for determining a SAN's match.
|
|
4666
|
+
*/
|
|
4667
|
+
matches: outputs.appmesh.GetVirtualGatewaySpecListenerTlValidationSubjectAlternativeNameMatch[];
|
|
4668
|
+
}
|
|
4669
|
+
interface GetVirtualGatewaySpecListenerTlValidationSubjectAlternativeNameMatch {
|
|
4670
|
+
/**
|
|
4671
|
+
* Values sent must match the specified values exactly.
|
|
4672
|
+
*/
|
|
4673
|
+
exacts: string[];
|
|
4674
|
+
}
|
|
4675
|
+
interface GetVirtualGatewaySpecListenerTlValidationTrust {
|
|
4676
|
+
/**
|
|
4677
|
+
* TLS validation context trust for a local file certificate.
|
|
4678
|
+
*/
|
|
4679
|
+
files: outputs.appmesh.GetVirtualGatewaySpecListenerTlValidationTrustFile[];
|
|
4680
|
+
/**
|
|
4681
|
+
* TLS validation context trust for a [Secret Discovery Service](https://www.envoyproxy.io/docs/envoy/latest/configuration/security/secret#secret-discovery-service-sds) certificate.
|
|
4682
|
+
*/
|
|
4683
|
+
sds: outputs.appmesh.GetVirtualGatewaySpecListenerTlValidationTrustSd[];
|
|
4684
|
+
}
|
|
4685
|
+
interface GetVirtualGatewaySpecListenerTlValidationTrustFile {
|
|
4686
|
+
/**
|
|
4687
|
+
* Certificate trust chain for a certificate stored on the file system of the mesh endpoint that the proxy is running on. Must be between 1 and 255 characters in length.
|
|
4688
|
+
*/
|
|
4689
|
+
certificateChain: string;
|
|
4690
|
+
}
|
|
4691
|
+
interface GetVirtualGatewaySpecListenerTlValidationTrustSd {
|
|
4692
|
+
/**
|
|
4693
|
+
* Name of the secret for a virtual gateway's Transport Layer Security (TLS) Secret Discovery Service validation context trust.
|
|
4694
|
+
*/
|
|
4695
|
+
secretName: string;
|
|
4696
|
+
}
|
|
4697
|
+
interface GetVirtualGatewaySpecLogging {
|
|
4698
|
+
/**
|
|
4699
|
+
* Access log configuration for a virtual gateway.
|
|
4700
|
+
*/
|
|
4701
|
+
accessLogs: outputs.appmesh.GetVirtualGatewaySpecLoggingAccessLog[];
|
|
4702
|
+
}
|
|
4703
|
+
interface GetVirtualGatewaySpecLoggingAccessLog {
|
|
4704
|
+
/**
|
|
4705
|
+
* TLS validation context trust for a local file certificate.
|
|
4706
|
+
*/
|
|
4707
|
+
files: outputs.appmesh.GetVirtualGatewaySpecLoggingAccessLogFile[];
|
|
4708
|
+
}
|
|
4709
|
+
interface GetVirtualGatewaySpecLoggingAccessLogFile {
|
|
4710
|
+
formats: outputs.appmesh.GetVirtualGatewaySpecLoggingAccessLogFileFormat[];
|
|
4711
|
+
/**
|
|
4712
|
+
* Destination path for the health check request. This is only required if the specified protocol is `http` or `http2`.
|
|
4713
|
+
*/
|
|
4714
|
+
path: string;
|
|
4715
|
+
}
|
|
4716
|
+
interface GetVirtualGatewaySpecLoggingAccessLogFileFormat {
|
|
4717
|
+
jsons: outputs.appmesh.GetVirtualGatewaySpecLoggingAccessLogFileFormatJson[];
|
|
4718
|
+
text: string;
|
|
4719
|
+
}
|
|
4720
|
+
interface GetVirtualGatewaySpecLoggingAccessLogFileFormatJson {
|
|
4721
|
+
key: string;
|
|
4722
|
+
value: string;
|
|
4723
|
+
}
|
|
4099
4724
|
interface GetVirtualServiceSpec {
|
|
4100
4725
|
/**
|
|
4101
4726
|
* App Mesh object that is acting as the provider for a virtual service.
|
|
@@ -5054,11 +5679,35 @@ export declare namespace appmesh {
|
|
|
5054
5679
|
file?: outputs.appmesh.VirtualGatewaySpecLoggingAccessLogFile;
|
|
5055
5680
|
}
|
|
5056
5681
|
interface VirtualGatewaySpecLoggingAccessLogFile {
|
|
5682
|
+
/**
|
|
5683
|
+
* The specified format for the logs.
|
|
5684
|
+
*/
|
|
5685
|
+
format?: outputs.appmesh.VirtualGatewaySpecLoggingAccessLogFileFormat;
|
|
5057
5686
|
/**
|
|
5058
5687
|
* File path to write access logs to. You can use `/dev/stdout` to send access logs to standard out. Must be between 1 and 255 characters in length.
|
|
5059
5688
|
*/
|
|
5060
5689
|
path: string;
|
|
5061
5690
|
}
|
|
5691
|
+
interface VirtualGatewaySpecLoggingAccessLogFileFormat {
|
|
5692
|
+
/**
|
|
5693
|
+
* The logging format for JSON.
|
|
5694
|
+
*/
|
|
5695
|
+
jsons?: outputs.appmesh.VirtualGatewaySpecLoggingAccessLogFileFormatJson[];
|
|
5696
|
+
/**
|
|
5697
|
+
* The logging format for text. Must be between 1 and 1000 characters in length.
|
|
5698
|
+
*/
|
|
5699
|
+
text?: string;
|
|
5700
|
+
}
|
|
5701
|
+
interface VirtualGatewaySpecLoggingAccessLogFileFormatJson {
|
|
5702
|
+
/**
|
|
5703
|
+
* The specified key for the JSON. Must be between 1 and 100 characters in length.
|
|
5704
|
+
*/
|
|
5705
|
+
key: string;
|
|
5706
|
+
/**
|
|
5707
|
+
* The specified value for the JSON. Must be between 1 and 100 characters in length.
|
|
5708
|
+
*/
|
|
5709
|
+
value: string;
|
|
5710
|
+
}
|
|
5062
5711
|
interface VirtualNodeSpec {
|
|
5063
5712
|
/**
|
|
5064
5713
|
* Defaults for backends.
|
|
@@ -5448,7 +6097,7 @@ export declare namespace appmesh {
|
|
|
5448
6097
|
*/
|
|
5449
6098
|
unit: string;
|
|
5450
6099
|
/**
|
|
5451
|
-
*
|
|
6100
|
+
* The specified value for the JSON. Must be between 1 and 100 characters in length.
|
|
5452
6101
|
*/
|
|
5453
6102
|
value: number;
|
|
5454
6103
|
}
|
|
@@ -5506,7 +6155,7 @@ export declare namespace appmesh {
|
|
|
5506
6155
|
*/
|
|
5507
6156
|
unit: string;
|
|
5508
6157
|
/**
|
|
5509
|
-
*
|
|
6158
|
+
* The specified value for the JSON. Must be between 1 and 100 characters in length.
|
|
5510
6159
|
*/
|
|
5511
6160
|
value: number;
|
|
5512
6161
|
}
|
|
@@ -5546,7 +6195,7 @@ export declare namespace appmesh {
|
|
|
5546
6195
|
*/
|
|
5547
6196
|
unit: string;
|
|
5548
6197
|
/**
|
|
5549
|
-
*
|
|
6198
|
+
* The specified value for the JSON. Must be between 1 and 100 characters in length.
|
|
5550
6199
|
*/
|
|
5551
6200
|
value: number;
|
|
5552
6201
|
}
|
|
@@ -5566,7 +6215,7 @@ export declare namespace appmesh {
|
|
|
5566
6215
|
*/
|
|
5567
6216
|
unit: string;
|
|
5568
6217
|
/**
|
|
5569
|
-
*
|
|
6218
|
+
* The specified value for the JSON. Must be between 1 and 100 characters in length.
|
|
5570
6219
|
*/
|
|
5571
6220
|
value: number;
|
|
5572
6221
|
}
|
|
@@ -5693,11 +6342,35 @@ export declare namespace appmesh {
|
|
|
5693
6342
|
file?: outputs.appmesh.VirtualNodeSpecLoggingAccessLogFile;
|
|
5694
6343
|
}
|
|
5695
6344
|
interface VirtualNodeSpecLoggingAccessLogFile {
|
|
6345
|
+
/**
|
|
6346
|
+
* The specified format for the logs.
|
|
6347
|
+
*/
|
|
6348
|
+
format?: outputs.appmesh.VirtualNodeSpecLoggingAccessLogFileFormat;
|
|
5696
6349
|
/**
|
|
5697
6350
|
* File path to write access logs to. You can use `/dev/stdout` to send access logs to standard out. Must be between 1 and 255 characters in length.
|
|
5698
6351
|
*/
|
|
5699
6352
|
path: string;
|
|
5700
6353
|
}
|
|
6354
|
+
interface VirtualNodeSpecLoggingAccessLogFileFormat {
|
|
6355
|
+
/**
|
|
6356
|
+
* The logging format for JSON.
|
|
6357
|
+
*/
|
|
6358
|
+
jsons?: outputs.appmesh.VirtualNodeSpecLoggingAccessLogFileFormatJson[];
|
|
6359
|
+
/**
|
|
6360
|
+
* The logging format for text. Must be between 1 and 1000 characters in length.
|
|
6361
|
+
*/
|
|
6362
|
+
text?: string;
|
|
6363
|
+
}
|
|
6364
|
+
interface VirtualNodeSpecLoggingAccessLogFileFormatJson {
|
|
6365
|
+
/**
|
|
6366
|
+
* The specified key for the JSON. Must be between 1 and 100 characters in length.
|
|
6367
|
+
*/
|
|
6368
|
+
key: string;
|
|
6369
|
+
/**
|
|
6370
|
+
* The specified value for the JSON. Must be between 1 and 100 characters in length.
|
|
6371
|
+
*/
|
|
6372
|
+
value: string;
|
|
6373
|
+
}
|
|
5701
6374
|
interface VirtualNodeSpecServiceDiscovery {
|
|
5702
6375
|
/**
|
|
5703
6376
|
* Any AWS Cloud Map information for the virtual node.
|
|
@@ -11468,7 +12141,7 @@ export declare namespace codepipeline {
|
|
|
11468
12141
|
export declare namespace codestarconnections {
|
|
11469
12142
|
interface HostVpcConfiguration {
|
|
11470
12143
|
/**
|
|
11471
|
-
*
|
|
12144
|
+
* ID of the security group or security groups associated with the Amazon VPC connected to the infrastructure where your provider type is installed.
|
|
11472
12145
|
*/
|
|
11473
12146
|
securityGroupIds: string[];
|
|
11474
12147
|
/**
|
|
@@ -11729,11 +12402,15 @@ export declare namespace cognito {
|
|
|
11729
12402
|
}
|
|
11730
12403
|
interface RiskConfigurationRiskExceptionConfiguration {
|
|
11731
12404
|
/**
|
|
11732
|
-
* Overrides the risk decision to always block the pre-authentication requests.
|
|
12405
|
+
* Overrides the risk decision to always block the pre-authentication requests.
|
|
12406
|
+
* The IP range is in CIDR notation, a compact representation of an IP address and its routing prefix.
|
|
12407
|
+
* Can contain a maximum of 200 items.
|
|
11733
12408
|
*/
|
|
11734
12409
|
blockedIpRangeLists?: string[];
|
|
11735
12410
|
/**
|
|
11736
|
-
* Risk detection isn't performed on the IP addresses in this range list.
|
|
12411
|
+
* Risk detection isn't performed on the IP addresses in this range list.
|
|
12412
|
+
* The IP range is in CIDR notation.
|
|
12413
|
+
* Can contain a maximum of 200 items.
|
|
11737
12414
|
*/
|
|
11738
12415
|
skippedIpRangeLists?: string[];
|
|
11739
12416
|
}
|
|
@@ -47388,6 +48065,24 @@ export declare namespace sesv2 {
|
|
|
47388
48065
|
*/
|
|
47389
48066
|
optimizedSharedDelivery?: string;
|
|
47390
48067
|
}
|
|
48068
|
+
interface ContactListTopic {
|
|
48069
|
+
/**
|
|
48070
|
+
* The default subscription status to be applied to a contact if the contact has not noted their preference for subscribing to a topic.
|
|
48071
|
+
*/
|
|
48072
|
+
defaultSubscriptionStatus: string;
|
|
48073
|
+
/**
|
|
48074
|
+
* A description of what the topic is about, which the contact will see.
|
|
48075
|
+
*/
|
|
48076
|
+
description?: string;
|
|
48077
|
+
/**
|
|
48078
|
+
* The name of the topic the contact will see.
|
|
48079
|
+
*/
|
|
48080
|
+
displayName: string;
|
|
48081
|
+
/**
|
|
48082
|
+
* The name of the topic.
|
|
48083
|
+
*/
|
|
48084
|
+
topicName: string;
|
|
48085
|
+
}
|
|
47391
48086
|
interface EmailIdentityDkimSigningAttributes {
|
|
47392
48087
|
/**
|
|
47393
48088
|
* [Easy DKIM] The key length of the DKIM key pair in use.
|