@awboost/cfntypes 0.100.358 → 0.100.360
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.
|
@@ -26993,6 +26993,11 @@ export type BedrockAgentCoreGatewayProps = {
|
|
|
26993
26993
|
*/
|
|
26994
26994
|
Description?: string;
|
|
26995
26995
|
ExceptionLevel?: BedrockAgentCoreGatewayExceptionLevel;
|
|
26996
|
+
/**
|
|
26997
|
+
* @minLength `1`
|
|
26998
|
+
* @maxLength `2`
|
|
26999
|
+
*/
|
|
27000
|
+
InterceptorConfigurations?: BedrockAgentCoreGatewayGatewayInterceptorConfiguration[];
|
|
26996
27001
|
/**
|
|
26997
27002
|
* @minLength `1`
|
|
26998
27003
|
* @maxLength `2048`
|
|
@@ -27057,7 +27062,7 @@ export type BedrockAgentCoreGatewayAuthorizerConfiguration = {
|
|
|
27057
27062
|
* Type definition for `AWS::BedrockAgentCore::Gateway.AuthorizerType`.
|
|
27058
27063
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-authorizertype.html}
|
|
27059
27064
|
*/
|
|
27060
|
-
export type BedrockAgentCoreGatewayAuthorizerType = "CUSTOM_JWT" | "AWS_IAM";
|
|
27065
|
+
export type BedrockAgentCoreGatewayAuthorizerType = "CUSTOM_JWT" | "AWS_IAM" | "NONE";
|
|
27061
27066
|
/**
|
|
27062
27067
|
* Type definition for `AWS::BedrockAgentCore::Gateway.CustomJWTAuthorizerConfiguration`.
|
|
27063
27068
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-customjwtauthorizerconfiguration.html}
|
|
@@ -27081,6 +27086,24 @@ export type BedrockAgentCoreGatewayCustomJWTAuthorizerConfiguration = {
|
|
|
27081
27086
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-exceptionlevel.html}
|
|
27082
27087
|
*/
|
|
27083
27088
|
export type BedrockAgentCoreGatewayExceptionLevel = "DEBUG";
|
|
27089
|
+
/**
|
|
27090
|
+
* Type definition for `AWS::BedrockAgentCore::Gateway.GatewayInterceptionPoint`.
|
|
27091
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-gatewayinterceptionpoint.html}
|
|
27092
|
+
*/
|
|
27093
|
+
export type BedrockAgentCoreGatewayGatewayInterceptionPoint = "REQUEST" | "RESPONSE";
|
|
27094
|
+
/**
|
|
27095
|
+
* Type definition for `AWS::BedrockAgentCore::Gateway.GatewayInterceptorConfiguration`.
|
|
27096
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-gatewayinterceptorconfiguration.html}
|
|
27097
|
+
*/
|
|
27098
|
+
export type BedrockAgentCoreGatewayGatewayInterceptorConfiguration = {
|
|
27099
|
+
InputConfiguration?: BedrockAgentCoreGatewayInterceptorInputConfiguration;
|
|
27100
|
+
/**
|
|
27101
|
+
* @minLength `1`
|
|
27102
|
+
* @maxLength `2`
|
|
27103
|
+
*/
|
|
27104
|
+
InterceptionPoints: BedrockAgentCoreGatewayGatewayInterceptionPoint[];
|
|
27105
|
+
Interceptor: BedrockAgentCoreGatewayInterceptorConfiguration;
|
|
27106
|
+
};
|
|
27084
27107
|
/**
|
|
27085
27108
|
* Type definition for `AWS::BedrockAgentCore::Gateway.GatewayProtocolConfiguration`.
|
|
27086
27109
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-gatewayprotocolconfiguration.html}
|
|
@@ -27098,6 +27121,32 @@ export type BedrockAgentCoreGatewayGatewayProtocolType = "MCP";
|
|
|
27098
27121
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-gatewaystatus.html}
|
|
27099
27122
|
*/
|
|
27100
27123
|
export type BedrockAgentCoreGatewayGatewayStatus = "CREATING" | "UPDATING" | "UPDATE_UNSUCCESSFUL" | "DELETING" | "READY" | "FAILED";
|
|
27124
|
+
/**
|
|
27125
|
+
* Type definition for `AWS::BedrockAgentCore::Gateway.InterceptorConfiguration`.
|
|
27126
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-interceptorconfiguration.html}
|
|
27127
|
+
*/
|
|
27128
|
+
export type BedrockAgentCoreGatewayInterceptorConfiguration = {
|
|
27129
|
+
Lambda: BedrockAgentCoreGatewayLambdaInterceptorConfiguration;
|
|
27130
|
+
};
|
|
27131
|
+
/**
|
|
27132
|
+
* Type definition for `AWS::BedrockAgentCore::Gateway.InterceptorInputConfiguration`.
|
|
27133
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-interceptorinputconfiguration.html}
|
|
27134
|
+
*/
|
|
27135
|
+
export type BedrockAgentCoreGatewayInterceptorInputConfiguration = {
|
|
27136
|
+
PassRequestHeaders: boolean;
|
|
27137
|
+
};
|
|
27138
|
+
/**
|
|
27139
|
+
* Type definition for `AWS::BedrockAgentCore::Gateway.LambdaInterceptorConfiguration`.
|
|
27140
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-lambdainterceptorconfiguration.html}
|
|
27141
|
+
*/
|
|
27142
|
+
export type BedrockAgentCoreGatewayLambdaInterceptorConfiguration = {
|
|
27143
|
+
/**
|
|
27144
|
+
* @minLength `1`
|
|
27145
|
+
* @maxLength `170`
|
|
27146
|
+
* @pattern `^arn:(aws[a-zA-Z-]*)?:lambda:([a-z]{2}(-gov)?-[a-z]+-\d{1}):(\d{12}):function:([a-zA-Z0-9-_.]+)(:(\$LATEST|[a-zA-Z0-9-_]+))?$`
|
|
27147
|
+
*/
|
|
27148
|
+
Arn: string;
|
|
27149
|
+
};
|
|
27101
27150
|
/**
|
|
27102
27151
|
* Type definition for `AWS::BedrockAgentCore::Gateway.MCPGatewayConfiguration`.
|
|
27103
27152
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-mcpgatewayconfiguration.html}
|
|
@@ -50059,7 +50108,7 @@ export type DataSyncAgentAttributes = {
|
|
|
50059
50108
|
/**
|
|
50060
50109
|
* The DataSync Agent ARN.
|
|
50061
50110
|
* @maxLength `128`
|
|
50062
|
-
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):datasync:[a-z\-0-9]+:[0-9]{12}:agent/agent-[0-9a-z]{17}$`
|
|
50111
|
+
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):datasync:[a-z\-0-9]+:[0-9]{12}:agent/agent-[0-9a-z]{17}$`
|
|
50063
50112
|
*/
|
|
50064
50113
|
AgentArn: string;
|
|
50065
50114
|
/**
|
|
@@ -50153,14 +50202,14 @@ export type DataSyncLocationAzureBlobAttributes = {
|
|
|
50153
50202
|
/**
|
|
50154
50203
|
* Specifies the ARN for an AWS Secrets Manager secret, managed by DataSync.
|
|
50155
50204
|
* @maxLength `2048`
|
|
50156
|
-
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
|
|
50205
|
+
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
|
|
50157
50206
|
*/
|
|
50158
50207
|
SecretArn: string;
|
|
50159
50208
|
};
|
|
50160
50209
|
/**
|
|
50161
50210
|
* The Amazon Resource Name (ARN) of the Azure Blob Location that is created.
|
|
50162
50211
|
* @maxLength `128`
|
|
50163
|
-
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):datasync:[a-z\-0-9]+:[0-9]{12}:location/loc-[0-9a-z]{17}$`
|
|
50212
|
+
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):datasync:[a-z\-0-9]+:[0-9]{12}:location/loc-[0-9a-z]{17}$`
|
|
50164
50213
|
*/
|
|
50165
50214
|
LocationArn: string;
|
|
50166
50215
|
/**
|
|
@@ -50176,7 +50225,7 @@ export type DataSyncLocationAzureBlobAttributes = {
|
|
|
50176
50225
|
/**
|
|
50177
50226
|
* Specifies the ARN for an AWS Secrets Manager secret.
|
|
50178
50227
|
* @maxLength `2048`
|
|
50179
|
-
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
|
|
50228
|
+
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
|
|
50180
50229
|
*/
|
|
50181
50230
|
SecretArn: string;
|
|
50182
50231
|
};
|
|
@@ -50204,7 +50253,7 @@ export type DataSyncLocationAzureBlobCmkSecretConfig = {
|
|
|
50204
50253
|
/**
|
|
50205
50254
|
* Specifies the ARN for the customer-managed AWS KMS key used to encrypt the secret specified for SecretArn. DataSync provides this key to AWS Secrets Manager.
|
|
50206
50255
|
* @maxLength `2048`
|
|
50207
|
-
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):kms:[a-z-0-9]+:[0-9]{12}:key/.*|)$`
|
|
50256
|
+
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):kms:[a-z-0-9]+:[0-9]{12}:key/.*|)$`
|
|
50208
50257
|
*/
|
|
50209
50258
|
KmsKeyArn?: string;
|
|
50210
50259
|
};
|
|
@@ -50217,13 +50266,13 @@ export type DataSyncLocationAzureBlobCustomSecretConfig = {
|
|
|
50217
50266
|
/**
|
|
50218
50267
|
* Specifies the ARN for the AWS Identity and Access Management role that DataSync uses to access the secret specified for SecretArn.
|
|
50219
50268
|
* @maxLength `2048`
|
|
50220
|
-
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):iam::[0-9]{12}:role/.*|)$`
|
|
50269
|
+
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):iam::[0-9]{12}:role/.*|)$`
|
|
50221
50270
|
*/
|
|
50222
50271
|
SecretAccessRoleArn: string;
|
|
50223
50272
|
/**
|
|
50224
50273
|
* Specifies the ARN for a customer created AWS Secrets Manager secret.
|
|
50225
50274
|
* @maxLength `2048`
|
|
50226
|
-
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
|
|
50275
|
+
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
|
|
50227
50276
|
*/
|
|
50228
50277
|
SecretArn: string;
|
|
50229
50278
|
};
|
|
@@ -50236,7 +50285,7 @@ export type DataSyncLocationAzureBlobManagedSecretConfig = {
|
|
|
50236
50285
|
/**
|
|
50237
50286
|
* Specifies the ARN for an AWS Secrets Manager secret.
|
|
50238
50287
|
* @maxLength `2048`
|
|
50239
|
-
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
|
|
50288
|
+
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
|
|
50240
50289
|
*/
|
|
50241
50290
|
SecretArn: string;
|
|
50242
50291
|
};
|
|
@@ -50269,7 +50318,7 @@ export type DataSyncLocationEFSProps = {
|
|
|
50269
50318
|
/**
|
|
50270
50319
|
* The Amazon Resource Name (ARN) for the Amazon EFS Access point that DataSync uses when accessing the EFS file system.
|
|
50271
50320
|
* @maxLength `128`
|
|
50272
|
-
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):elasticfilesystem:[a-z\-0-9]+:[0-9]{12}:access-point/fsap-[0-9a-f]{8,40}$`
|
|
50321
|
+
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):elasticfilesystem:[a-z\-0-9]+:[0-9]{12}:access-point/fsap-[0-9a-f]{8,40}$`
|
|
50273
50322
|
*/
|
|
50274
50323
|
AccessPointArn?: string;
|
|
50275
50324
|
/**
|
|
@@ -50279,13 +50328,13 @@ export type DataSyncLocationEFSProps = {
|
|
|
50279
50328
|
/**
|
|
50280
50329
|
* The Amazon Resource Name (ARN) for the Amazon EFS file system.
|
|
50281
50330
|
* @maxLength `128`
|
|
50282
|
-
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):elasticfilesystem:[a-z\-0-9]*:[0-9]{12}:file-system/fs-.*$`
|
|
50331
|
+
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):elasticfilesystem:[a-z\-0-9]*:[0-9]{12}:file-system/fs-.*$`
|
|
50283
50332
|
*/
|
|
50284
50333
|
EfsFilesystemArn?: string;
|
|
50285
50334
|
/**
|
|
50286
50335
|
* The Amazon Resource Name (ARN) of the AWS IAM role that the DataSync will assume when mounting the EFS file system.
|
|
50287
50336
|
* @maxLength `128`
|
|
50288
|
-
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):iam::[0-9]{12}:role/.*$`
|
|
50337
|
+
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):iam::[0-9]{12}:role/.*$`
|
|
50289
50338
|
*/
|
|
50290
50339
|
FileSystemAccessRoleArn?: string;
|
|
50291
50340
|
/**
|
|
@@ -50312,7 +50361,7 @@ export type DataSyncLocationEFSAttributes = {
|
|
|
50312
50361
|
/**
|
|
50313
50362
|
* The Amazon Resource Name (ARN) of the Amazon EFS file system location that is created.
|
|
50314
50363
|
* @maxLength `128`
|
|
50315
|
-
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):datasync:[a-z\-0-9]+:[0-9]{12}:location/loc-[0-9a-z]{17}$`
|
|
50364
|
+
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):datasync:[a-z\-0-9]+:[0-9]{12}:location/loc-[0-9a-z]{17}$`
|
|
50316
50365
|
*/
|
|
50317
50366
|
LocationArn: string;
|
|
50318
50367
|
/**
|
|
@@ -50337,7 +50386,7 @@ export type DataSyncLocationEFSEc2Config = {
|
|
|
50337
50386
|
/**
|
|
50338
50387
|
* The ARN of the subnet that DataSync uses to access the target EFS file system.
|
|
50339
50388
|
* @maxLength `128`
|
|
50340
|
-
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):ec2:[a-z\-0-9]*:[0-9]{12}:subnet/.*$`
|
|
50389
|
+
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):ec2:[a-z\-0-9]*:[0-9]{12}:subnet/.*$`
|
|
50341
50390
|
*/
|
|
50342
50391
|
SubnetArn: string;
|
|
50343
50392
|
};
|
|
@@ -50370,7 +50419,7 @@ export type DataSyncLocationFSxLustreProps = {
|
|
|
50370
50419
|
/**
|
|
50371
50420
|
* The Amazon Resource Name (ARN) for the FSx for Lustre file system.
|
|
50372
50421
|
* @maxLength `128`
|
|
50373
|
-
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):fsx:[a-z\-0-9]+:[0-9]{12}:file-system/fs-[0-9a-f]+$`
|
|
50422
|
+
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):fsx:[a-z\-0-9]+:[0-9]{12}:file-system/fs-[0-9a-f]+$`
|
|
50374
50423
|
*/
|
|
50375
50424
|
FsxFilesystemArn?: string;
|
|
50376
50425
|
/**
|
|
@@ -50400,7 +50449,7 @@ export type DataSyncLocationFSxLustreAttributes = {
|
|
|
50400
50449
|
/**
|
|
50401
50450
|
* The Amazon Resource Name (ARN) of the Amazon FSx for Lustre file system location that is created.
|
|
50402
50451
|
* @maxLength `128`
|
|
50403
|
-
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):datasync:[a-z\-0-9]+:[0-9]{12}:location/loc-[0-9a-z]{17}$`
|
|
50452
|
+
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):datasync:[a-z\-0-9]+:[0-9]{12}:location/loc-[0-9a-z]{17}$`
|
|
50404
50453
|
*/
|
|
50405
50454
|
LocationArn: string;
|
|
50406
50455
|
/**
|
|
@@ -50449,7 +50498,7 @@ export type DataSyncLocationFSxONTAPProps = {
|
|
|
50449
50498
|
/**
|
|
50450
50499
|
* The Amazon Resource Name (ARN) for the FSx ONTAP SVM.
|
|
50451
50500
|
* @maxLength `162`
|
|
50452
|
-
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):fsx:[a-z\-0-9]+:[0-9]{12}:storage-virtual-machine/fs-[0-9a-f]+/svm-[0-9a-f]{17,}$`
|
|
50501
|
+
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):fsx:[a-z\-0-9]+:[0-9]{12}:storage-virtual-machine/fs-[0-9a-f]+/svm-[0-9a-f]{17,}$`
|
|
50453
50502
|
*/
|
|
50454
50503
|
StorageVirtualMachineArn: string;
|
|
50455
50504
|
/**
|
|
@@ -50473,13 +50522,13 @@ export type DataSyncLocationFSxONTAPAttributes = {
|
|
|
50473
50522
|
/**
|
|
50474
50523
|
* The Amazon Resource Name (ARN) for the FSx ONAP file system.
|
|
50475
50524
|
* @maxLength `128`
|
|
50476
|
-
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):fsx:[a-z\-0-9]+:[0-9]{12}:file-system/fs-[0-9a-f]+$`
|
|
50525
|
+
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):fsx:[a-z\-0-9]+:[0-9]{12}:file-system/fs-[0-9a-f]+$`
|
|
50477
50526
|
*/
|
|
50478
50527
|
FsxFilesystemArn: string;
|
|
50479
50528
|
/**
|
|
50480
50529
|
* The Amazon Resource Name (ARN) of the Amazon FSx ONTAP file system location that is created.
|
|
50481
50530
|
* @maxLength `128`
|
|
50482
|
-
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):datasync:[a-z\-0-9]+:[0-9]{12}:location/loc-[0-9a-z]{17}$`
|
|
50531
|
+
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):datasync:[a-z\-0-9]+:[0-9]{12}:location/loc-[0-9a-z]{17}$`
|
|
50483
50532
|
*/
|
|
50484
50533
|
LocationArn: string;
|
|
50485
50534
|
/**
|
|
@@ -50595,7 +50644,7 @@ export type DataSyncLocationFSxOpenZFSProps = {
|
|
|
50595
50644
|
/**
|
|
50596
50645
|
* The Amazon Resource Name (ARN) for the FSx OpenZFS file system.
|
|
50597
50646
|
* @maxLength `128`
|
|
50598
|
-
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):fsx:[a-z\-0-9]+:[0-9]{12}:file-system/fs-[0-9a-f]+$`
|
|
50647
|
+
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):fsx:[a-z\-0-9]+:[0-9]{12}:file-system/fs-[0-9a-f]+$`
|
|
50599
50648
|
*/
|
|
50600
50649
|
FsxFilesystemArn?: string;
|
|
50601
50650
|
/**
|
|
@@ -50629,7 +50678,7 @@ export type DataSyncLocationFSxOpenZFSAttributes = {
|
|
|
50629
50678
|
/**
|
|
50630
50679
|
* The Amazon Resource Name (ARN) of the Amazon FSx OpenZFS file system location that is created.
|
|
50631
50680
|
* @maxLength `128`
|
|
50632
|
-
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):datasync:[a-z\-0-9]+:[0-9]{12}:location/loc-[0-9a-z]{17}$`
|
|
50681
|
+
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):datasync:[a-z\-0-9]+:[0-9]{12}:location/loc-[0-9a-z]{17}$`
|
|
50633
50682
|
*/
|
|
50634
50683
|
LocationArn: string;
|
|
50635
50684
|
/**
|
|
@@ -50707,7 +50756,7 @@ export type DataSyncLocationFSxWindowsProps = {
|
|
|
50707
50756
|
/**
|
|
50708
50757
|
* The Amazon Resource Name (ARN) for the FSx for Windows file system.
|
|
50709
50758
|
* @maxLength `128`
|
|
50710
|
-
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):fsx:[a-z\-0-9]*:[0-9]{12}:file-system/fs-.*$`
|
|
50759
|
+
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):fsx:[a-z\-0-9]*:[0-9]{12}:file-system/fs-.*$`
|
|
50711
50760
|
*/
|
|
50712
50761
|
FsxFilesystemArn?: string;
|
|
50713
50762
|
/**
|
|
@@ -50746,7 +50795,7 @@ export type DataSyncLocationFSxWindowsAttributes = {
|
|
|
50746
50795
|
/**
|
|
50747
50796
|
* The Amazon Resource Name (ARN) of the Amazon FSx for Windows file system location that is created.
|
|
50748
50797
|
* @maxLength `128`
|
|
50749
|
-
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):datasync:[a-z\-0-9]+:[0-9]{12}:location/loc-[0-9a-z]{17}$`
|
|
50798
|
+
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):datasync:[a-z\-0-9]+:[0-9]{12}:location/loc-[0-9a-z]{17}$`
|
|
50750
50799
|
*/
|
|
50751
50800
|
LocationArn: string;
|
|
50752
50801
|
/**
|
|
@@ -50864,7 +50913,7 @@ export type DataSyncLocationHDFSAttributes = {
|
|
|
50864
50913
|
/**
|
|
50865
50914
|
* The Amazon Resource Name (ARN) of the HDFS location.
|
|
50866
50915
|
* @maxLength `128`
|
|
50867
|
-
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):datasync:[a-z\-0-9]+:[0-9]{12}:location/loc-[0-9a-z]{17}$`
|
|
50916
|
+
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):datasync:[a-z\-0-9]+:[0-9]{12}:location/loc-[0-9a-z]{17}$`
|
|
50868
50917
|
*/
|
|
50869
50918
|
LocationArn: string;
|
|
50870
50919
|
/**
|
|
@@ -50966,7 +51015,7 @@ export type DataSyncLocationNFSAttributes = {
|
|
|
50966
51015
|
/**
|
|
50967
51016
|
* The Amazon Resource Name (ARN) of the NFS location.
|
|
50968
51017
|
* @maxLength `128`
|
|
50969
|
-
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):datasync:[a-z\-0-9]+:[0-9]{12}:location/loc-[0-9a-z]{17}$`
|
|
51018
|
+
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):datasync:[a-z\-0-9]+:[0-9]{12}:location/loc-[0-9a-z]{17}$`
|
|
50970
51019
|
*/
|
|
50971
51020
|
LocationArn: string;
|
|
50972
51021
|
/**
|
|
@@ -50996,7 +51045,7 @@ export type DataSyncLocationNFSOnPremConfig = {
|
|
|
50996
51045
|
/**
|
|
50997
51046
|
* ARN(s) of the agent(s) to use for an NFS location.
|
|
50998
51047
|
* @minLength `1`
|
|
50999
|
-
* @maxLength `
|
|
51048
|
+
* @maxLength `8`
|
|
51000
51049
|
*/
|
|
51001
51050
|
AgentArns: string[];
|
|
51002
51051
|
};
|
|
@@ -51106,14 +51155,14 @@ export type DataSyncLocationObjectStorageAttributes = {
|
|
|
51106
51155
|
/**
|
|
51107
51156
|
* Specifies the ARN for an AWS Secrets Manager secret, managed by DataSync.
|
|
51108
51157
|
* @maxLength `2048`
|
|
51109
|
-
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
|
|
51158
|
+
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
|
|
51110
51159
|
*/
|
|
51111
51160
|
SecretArn: string;
|
|
51112
51161
|
};
|
|
51113
51162
|
/**
|
|
51114
51163
|
* The Amazon Resource Name (ARN) of the location that is created.
|
|
51115
51164
|
* @maxLength `128`
|
|
51116
|
-
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):datasync:[a-z\-0-9]+:[0-9]{12}:location/loc-[0-9a-z]{17}$`
|
|
51165
|
+
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):datasync:[a-z\-0-9]+:[0-9]{12}:location/loc-[0-9a-z]{17}$`
|
|
51117
51166
|
*/
|
|
51118
51167
|
LocationArn: string;
|
|
51119
51168
|
/**
|
|
@@ -51129,7 +51178,7 @@ export type DataSyncLocationObjectStorageAttributes = {
|
|
|
51129
51178
|
/**
|
|
51130
51179
|
* Specifies the ARN for an AWS Secrets Manager secret.
|
|
51131
51180
|
* @maxLength `2048`
|
|
51132
|
-
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
|
|
51181
|
+
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
|
|
51133
51182
|
*/
|
|
51134
51183
|
SecretArn: string;
|
|
51135
51184
|
};
|
|
@@ -51143,7 +51192,7 @@ export type DataSyncLocationObjectStorageCmkSecretConfig = {
|
|
|
51143
51192
|
/**
|
|
51144
51193
|
* Specifies the ARN for the customer-managed AWS KMS key used to encrypt the secret specified for SecretArn. DataSync provides this key to AWS Secrets Manager.
|
|
51145
51194
|
* @maxLength `2048`
|
|
51146
|
-
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):kms:[a-z-0-9]+:[0-9]{12}:key/.*|)$`
|
|
51195
|
+
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):kms:[a-z-0-9]+:[0-9]{12}:key/.*|)$`
|
|
51147
51196
|
*/
|
|
51148
51197
|
KmsKeyArn?: string;
|
|
51149
51198
|
};
|
|
@@ -51156,13 +51205,13 @@ export type DataSyncLocationObjectStorageCustomSecretConfig = {
|
|
|
51156
51205
|
/**
|
|
51157
51206
|
* Specifies the ARN for the AWS Identity and Access Management role that DataSync uses to access the secret specified for SecretArn.
|
|
51158
51207
|
* @maxLength `2048`
|
|
51159
|
-
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):iam::[0-9]{12}:role/.*|)$`
|
|
51208
|
+
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):iam::[0-9]{12}:role/.*|)$`
|
|
51160
51209
|
*/
|
|
51161
51210
|
SecretAccessRoleArn: string;
|
|
51162
51211
|
/**
|
|
51163
51212
|
* Specifies the ARN for a customer created AWS Secrets Manager secret.
|
|
51164
51213
|
* @maxLength `2048`
|
|
51165
|
-
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
|
|
51214
|
+
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
|
|
51166
51215
|
*/
|
|
51167
51216
|
SecretArn: string;
|
|
51168
51217
|
};
|
|
@@ -51175,7 +51224,7 @@ export type DataSyncLocationObjectStorageManagedSecretConfig = {
|
|
|
51175
51224
|
/**
|
|
51176
51225
|
* Specifies the ARN for an AWS Secrets Manager secret.
|
|
51177
51226
|
* @maxLength `2048`
|
|
51178
|
-
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
|
|
51227
|
+
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
|
|
51179
51228
|
*/
|
|
51180
51229
|
SecretArn: string;
|
|
51181
51230
|
};
|
|
@@ -51208,7 +51257,7 @@ export type DataSyncLocationS3Props = {
|
|
|
51208
51257
|
/**
|
|
51209
51258
|
* The Amazon Resource Name (ARN) of the Amazon S3 bucket.
|
|
51210
51259
|
* @maxLength `156`
|
|
51211
|
-
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):s3:[a-z\-0-9]*:[0-9]*:.*$`
|
|
51260
|
+
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):s3:[a-z\-0-9]*:[0-9]*:.*$`
|
|
51212
51261
|
*/
|
|
51213
51262
|
S3BucketArn?: string;
|
|
51214
51263
|
/**
|
|
@@ -51239,7 +51288,7 @@ export type DataSyncLocationS3Attributes = {
|
|
|
51239
51288
|
/**
|
|
51240
51289
|
* The Amazon Resource Name (ARN) of the Amazon S3 bucket location.
|
|
51241
51290
|
* @maxLength `128`
|
|
51242
|
-
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):datasync:[a-z\-0-9]+:[0-9]{12}:location/loc-[0-9a-z]{17}$`
|
|
51291
|
+
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):datasync:[a-z\-0-9]+:[0-9]{12}:location/loc-[0-9a-z]{17}$`
|
|
51243
51292
|
*/
|
|
51244
51293
|
LocationArn: string;
|
|
51245
51294
|
/**
|
|
@@ -51258,7 +51307,7 @@ export type DataSyncLocationS3S3Config = {
|
|
|
51258
51307
|
/**
|
|
51259
51308
|
* The ARN of the IAM role of the Amazon S3 bucket.
|
|
51260
51309
|
* @maxLength `2048`
|
|
51261
|
-
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):iam::[0-9]{12}:role/.*$`
|
|
51310
|
+
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):iam::[0-9]{12}:role/.*$`
|
|
51262
51311
|
*/
|
|
51263
51312
|
BucketAccessRoleArn: string;
|
|
51264
51313
|
};
|
|
@@ -51291,7 +51340,7 @@ export type DataSyncLocationSMBProps = {
|
|
|
51291
51340
|
/**
|
|
51292
51341
|
* The Amazon Resource Names (ARNs) of agents to use for a Simple Message Block (SMB) location.
|
|
51293
51342
|
* @minLength `1`
|
|
51294
|
-
* @maxLength `
|
|
51343
|
+
* @maxLength `8`
|
|
51295
51344
|
*/
|
|
51296
51345
|
AgentArns: string[];
|
|
51297
51346
|
/**
|
|
@@ -51380,14 +51429,14 @@ export type DataSyncLocationSMBAttributes = {
|
|
|
51380
51429
|
/**
|
|
51381
51430
|
* Specifies the ARN for an AWS Secrets Manager secret, managed by DataSync.
|
|
51382
51431
|
* @maxLength `2048`
|
|
51383
|
-
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
|
|
51432
|
+
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
|
|
51384
51433
|
*/
|
|
51385
51434
|
SecretArn: string;
|
|
51386
51435
|
};
|
|
51387
51436
|
/**
|
|
51388
51437
|
* The Amazon Resource Name (ARN) of the SMB location that is created.
|
|
51389
51438
|
* @maxLength `128`
|
|
51390
|
-
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):datasync:[a-z\-0-9]+:[0-9]{12}:location/loc-[0-9a-z]{17}$`
|
|
51439
|
+
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):datasync:[a-z\-0-9]+:[0-9]{12}:location/loc-[0-9a-z]{17}$`
|
|
51391
51440
|
*/
|
|
51392
51441
|
LocationArn: string;
|
|
51393
51442
|
/**
|
|
@@ -51403,7 +51452,7 @@ export type DataSyncLocationSMBAttributes = {
|
|
|
51403
51452
|
/**
|
|
51404
51453
|
* Specifies the ARN for an AWS Secrets Manager secret.
|
|
51405
51454
|
* @maxLength `2048`
|
|
51406
|
-
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
|
|
51455
|
+
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
|
|
51407
51456
|
*/
|
|
51408
51457
|
SecretArn: string;
|
|
51409
51458
|
};
|
|
@@ -51417,7 +51466,7 @@ export type DataSyncLocationSMBCmkSecretConfig = {
|
|
|
51417
51466
|
/**
|
|
51418
51467
|
* Specifies the ARN for the customer-managed AWS KMS key used to encrypt the secret specified for SecretArn. DataSync provides this key to AWS Secrets Manager.
|
|
51419
51468
|
* @maxLength `2048`
|
|
51420
|
-
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):kms:[a-z-0-9]+:[0-9]{12}:key/.*|)$`
|
|
51469
|
+
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):kms:[a-z-0-9]+:[0-9]{12}:key/.*|)$`
|
|
51421
51470
|
*/
|
|
51422
51471
|
KmsKeyArn?: string;
|
|
51423
51472
|
};
|
|
@@ -51430,13 +51479,13 @@ export type DataSyncLocationSMBCustomSecretConfig = {
|
|
|
51430
51479
|
/**
|
|
51431
51480
|
* Specifies the ARN for the AWS Identity and Access Management role that DataSync uses to access the secret specified for SecretArn.
|
|
51432
51481
|
* @maxLength `2048`
|
|
51433
|
-
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):iam::[0-9]{12}:role/.*|)$`
|
|
51482
|
+
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):iam::[0-9]{12}:role/.*|)$`
|
|
51434
51483
|
*/
|
|
51435
51484
|
SecretAccessRoleArn: string;
|
|
51436
51485
|
/**
|
|
51437
51486
|
* Specifies the ARN for a customer created AWS Secrets Manager secret.
|
|
51438
51487
|
* @maxLength `2048`
|
|
51439
|
-
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
|
|
51488
|
+
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
|
|
51440
51489
|
*/
|
|
51441
51490
|
SecretArn: string;
|
|
51442
51491
|
};
|
|
@@ -51449,7 +51498,7 @@ export type DataSyncLocationSMBManagedSecretConfig = {
|
|
|
51449
51498
|
/**
|
|
51450
51499
|
* Specifies the ARN for an AWS Secrets Manager secret.
|
|
51451
51500
|
* @maxLength `2048`
|
|
51452
|
-
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
|
|
51501
|
+
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
|
|
51453
51502
|
*/
|
|
51454
51503
|
SecretArn: string;
|
|
51455
51504
|
};
|
|
@@ -51493,13 +51542,13 @@ export type DataSyncTaskProps = {
|
|
|
51493
51542
|
/**
|
|
51494
51543
|
* The ARN of the Amazon CloudWatch log group that is used to monitor and log events in the task.
|
|
51495
51544
|
* @maxLength `562`
|
|
51496
|
-
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):logs:[a-z\-0-9]*:[0-9]{12}:log-group:([^:\*]*)(:\*)?$`
|
|
51545
|
+
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):logs:[a-z\-0-9]*:[0-9]{12}:log-group:([^:\*]*)(:\*)?$`
|
|
51497
51546
|
*/
|
|
51498
51547
|
CloudWatchLogGroupArn?: string;
|
|
51499
51548
|
/**
|
|
51500
51549
|
* The ARN of an AWS storage resource's location.
|
|
51501
51550
|
* @maxLength `128`
|
|
51502
|
-
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):datasync:[a-z\-0-9]+:[0-9]{12}:location/loc-[0-9a-z]{17}$`
|
|
51551
|
+
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):datasync:[a-z\-0-9]+:[0-9]{12}:location/loc-[0-9a-z]{17}$`
|
|
51503
51552
|
*/
|
|
51504
51553
|
DestinationLocationArn: string;
|
|
51505
51554
|
/**
|
|
@@ -51534,7 +51583,7 @@ export type DataSyncTaskProps = {
|
|
|
51534
51583
|
/**
|
|
51535
51584
|
* The ARN of the source location for the task.
|
|
51536
51585
|
* @maxLength `128`
|
|
51537
|
-
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):datasync:[a-z\-0-9]+:[0-9]{12}:location/loc-[0-9a-z]{17}$`
|
|
51586
|
+
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):datasync:[a-z\-0-9]+:[0-9]{12}:location/loc-[0-9a-z]{17}$`
|
|
51538
51587
|
*/
|
|
51539
51588
|
SourceLocationArn: string;
|
|
51540
51589
|
/**
|
|
@@ -51573,7 +51622,7 @@ export type DataSyncTaskAttributes = {
|
|
|
51573
51622
|
/**
|
|
51574
51623
|
* The ARN of the task.
|
|
51575
51624
|
* @maxLength `128`
|
|
51576
|
-
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):datasync:[a-z\-0-9]*:[0-9]{12}:task/task-[0-9a-f]{17}$`
|
|
51625
|
+
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):datasync:[a-z\-0-9]*:[0-9]{12}:task/task-[0-9a-f]{17}$`
|
|
51577
51626
|
*/
|
|
51578
51627
|
TaskArn: string;
|
|
51579
51628
|
};
|
|
@@ -51629,7 +51678,7 @@ export type DataSyncTaskManifestConfigSourceS3 = {
|
|
|
51629
51678
|
/**
|
|
51630
51679
|
* Specifies the AWS Identity and Access Management (IAM) role that allows DataSync to access your manifest.
|
|
51631
51680
|
* @maxLength `2048`
|
|
51632
|
-
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):iam::[0-9]{12}:role/.*$`
|
|
51681
|
+
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):iam::[0-9]{12}:role/.*$`
|
|
51633
51682
|
*/
|
|
51634
51683
|
BucketAccessRoleArn?: string;
|
|
51635
51684
|
/**
|
|
@@ -51647,7 +51696,7 @@ export type DataSyncTaskManifestConfigSourceS3 = {
|
|
|
51647
51696
|
/**
|
|
51648
51697
|
* Specifies the Amazon Resource Name (ARN) of the S3 bucket where you're hosting your manifest.
|
|
51649
51698
|
* @maxLength `156`
|
|
51650
|
-
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):(s3|s3-outposts):[a-z\-0-9]*:[0-9]*:.*$`
|
|
51699
|
+
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):(s3|s3-outposts):[a-z\-0-9]*:[0-9]*:.*$`
|
|
51651
51700
|
*/
|
|
51652
51701
|
S3BucketArn?: string;
|
|
51653
51702
|
};
|
|
@@ -51818,13 +51867,13 @@ export type DataSyncTaskTaskReportConfigDestinationS3 = {
|
|
|
51818
51867
|
/**
|
|
51819
51868
|
* Specifies the Amazon Resource Name (ARN) of the IAM policy that allows Datasync to upload a task report to your S3 bucket.
|
|
51820
51869
|
* @maxLength `2048`
|
|
51821
|
-
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):iam::[0-9]{12}:role/.*$`
|
|
51870
|
+
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):iam::[0-9]{12}:role/.*$`
|
|
51822
51871
|
*/
|
|
51823
51872
|
BucketAccessRoleArn?: string;
|
|
51824
51873
|
/**
|
|
51825
51874
|
* Specifies the ARN of the S3 bucket where Datasync uploads your report.
|
|
51826
51875
|
* @maxLength `156`
|
|
51827
|
-
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):(s3|s3-outposts):[a-z\-0-9]*:[0-9]*:.*$`
|
|
51876
|
+
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):(s3|s3-outposts):[a-z\-0-9]*:[0-9]*:.*$`
|
|
51828
51877
|
*/
|
|
51829
51878
|
S3BucketArn?: string;
|
|
51830
51879
|
/**
|
|
@@ -54648,7 +54697,7 @@ export type DAXParameterGroupAttributes = {
|
|
|
54648
54697
|
Id: string;
|
|
54649
54698
|
};
|
|
54650
54699
|
/**
|
|
54651
|
-
* Resource
|
|
54700
|
+
* Resource type definition for AWS::DAX::SubnetGroup
|
|
54652
54701
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-subnetgroup.html}
|
|
54653
54702
|
*/
|
|
54654
54703
|
export type DAXSubnetGroupProps = {
|
|
@@ -54656,13 +54705,6 @@ export type DAXSubnetGroupProps = {
|
|
|
54656
54705
|
SubnetGroupName?: string;
|
|
54657
54706
|
SubnetIds: string[];
|
|
54658
54707
|
};
|
|
54659
|
-
/**
|
|
54660
|
-
* Attribute type definition for `AWS::DAX::SubnetGroup`.
|
|
54661
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-subnetgroup.html#aws-resource-dax-subnetgroup-return-values}
|
|
54662
|
-
*/
|
|
54663
|
-
export type DAXSubnetGroupAttributes = {
|
|
54664
|
-
Id: string;
|
|
54665
|
-
};
|
|
54666
54708
|
/**
|
|
54667
54709
|
* Definition of AWS::Deadline::Farm Resource Type
|
|
54668
54710
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-farm.html}
|
|
@@ -64676,22 +64718,26 @@ export type EC2NetworkInterfaceTag = {
|
|
|
64676
64718
|
Value: string;
|
|
64677
64719
|
};
|
|
64678
64720
|
/**
|
|
64679
|
-
* Resource
|
|
64721
|
+
* Resource type definition for `AWS::EC2::NetworkInterfaceAttachment`.
|
|
64722
|
+
* Attaches an elastic network interface (ENI) to an Amazon EC2 instance. You can use this resource type to attach additional network interfaces to an instance without interruption.
|
|
64680
64723
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfaceattachment.html}
|
|
64681
64724
|
*/
|
|
64682
64725
|
export type EC2NetworkInterfaceAttachmentProps = {
|
|
64683
64726
|
/**
|
|
64684
|
-
* Whether to delete the network interface when the instance terminates. By default, this value is set to true
|
|
64727
|
+
* Whether to delete the network interface when the instance terminates. By default, this value is set to ``true``.
|
|
64685
64728
|
*/
|
|
64686
64729
|
DeleteOnTermination?: boolean;
|
|
64687
64730
|
/**
|
|
64688
|
-
* The network interface's position in the attachment order. For example, the first attached network interface has a DeviceIndex of 0.
|
|
64731
|
+
* The network interface's position in the attachment order. For example, the first attached network interface has a ``DeviceIndex`` of 0.
|
|
64689
64732
|
*/
|
|
64690
64733
|
DeviceIndex: string;
|
|
64691
64734
|
/**
|
|
64692
|
-
* The number of ENA queues
|
|
64735
|
+
* The number of ENA queues created with the instance.
|
|
64693
64736
|
*/
|
|
64694
64737
|
EnaQueueCount?: number;
|
|
64738
|
+
/**
|
|
64739
|
+
* Configures ENA Express for the network interface that this action attaches to the instance.
|
|
64740
|
+
*/
|
|
64695
64741
|
EnaSrdSpecification?: EC2NetworkInterfaceAttachmentEnaSrdSpecification;
|
|
64696
64742
|
/**
|
|
64697
64743
|
* The ID of the instance to which you will attach the ENI.
|
|
@@ -64707,17 +64753,22 @@ export type EC2NetworkInterfaceAttachmentProps = {
|
|
|
64707
64753
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfaceattachment.html#aws-resource-ec2-networkinterfaceattachment-return-values}
|
|
64708
64754
|
*/
|
|
64709
64755
|
export type EC2NetworkInterfaceAttachmentAttributes = {
|
|
64710
|
-
/**
|
|
64711
|
-
* The ID of the network interface attachment.
|
|
64712
|
-
*/
|
|
64713
64756
|
AttachmentId: string;
|
|
64714
64757
|
};
|
|
64715
64758
|
/**
|
|
64716
64759
|
* Type definition for `AWS::EC2::NetworkInterfaceAttachment.EnaSrdSpecification`.
|
|
64760
|
+
* ENA Express uses AWS Scalable Reliable Datagram (SRD) technology to increase the maximum bandwidth used per stream and minimize tail latency of network traffic between EC2 instances. With ENA Express, you can communicate between two EC2 instances in the same subnet within the same account, or in different accounts. Both sending and receiving instances must have ENA Express enabled.
|
|
64761
|
+
To improve the reliability of network packet delivery, ENA Express reorders network packets on the receiving end by default. However, some UDP-based applications are designed to handle network packets that are out of order to reduce the overhead for packet delivery at the network layer. When ENA Express is enabled, you can specify whether UDP network traffic uses it.
|
|
64717
64762
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkinterfaceattachment-enasrdspecification.html}
|
|
64718
64763
|
*/
|
|
64719
64764
|
export type EC2NetworkInterfaceAttachmentEnaSrdSpecification = {
|
|
64765
|
+
/**
|
|
64766
|
+
* Indicates whether ENA Express is enabled for the network interface.
|
|
64767
|
+
*/
|
|
64720
64768
|
EnaSrdEnabled?: boolean;
|
|
64769
|
+
/**
|
|
64770
|
+
* Configures ENA Express for UDP network traffic.
|
|
64771
|
+
*/
|
|
64721
64772
|
EnaSrdUdpSpecification?: {
|
|
64722
64773
|
EnaSrdUdpEnabled?: boolean;
|
|
64723
64774
|
};
|
|
@@ -69779,7 +69830,7 @@ export type ECRSigningConfigurationRepositoryFilter = {
|
|
|
69779
69830
|
* Repository name pattern (supports '*' wildcard).
|
|
69780
69831
|
* @minLength `1`
|
|
69781
69832
|
* @maxLength `256`
|
|
69782
|
-
* @pattern `^(
|
|
69833
|
+
* @pattern `^(?:[a-z0-9*]+(?:[._-][a-z0-9*]+)/*)*[a-z0-9*]+(?:[._-][a-z0-9*]+)*$`
|
|
69783
69834
|
*/
|
|
69784
69835
|
Filter: string;
|
|
69785
69836
|
/**
|
|
@@ -70919,6 +70970,8 @@ export type ECSServiceDeploymentConfiguration = {
|
|
|
70919
70970
|
* The deployment strategy for the service. Choose from these valid values:
|
|
70920
70971
|
+ ``ROLLING`` - When you create a service which uses the rolling update (``ROLLING``) deployment strategy, the Amazon ECS service scheduler replaces the currently running tasks with new tasks. The number of tasks that Amazon ECS adds or removes from the service during a rolling update is controlled by the service deployment configuration.
|
|
70921
70972
|
+ ``BLUE_GREEN`` - A blue/green deployment strategy (``BLUE_GREEN``) is a release methodology that reduces downtime and risk by running two identical production environments called blue and green. With Amazon ECS blue/green deployments, you can validate new service revisions before directing production traffic to them. This approach provides a safer way to deploy changes with the ability to quickly roll back if needed.
|
|
70973
|
+
+ ``LINEAR`` - A *linear* deployment strategy (``LINEAR``) gradually shifts traffic from the current production environment to a new environment in equal percentages over time. With Amazon ECS linear deployments, you can control the pace of traffic shifting and validate new service revisions with increasing amounts of production traffic.
|
|
70974
|
+
+ ``CANARY`` - A *canary* deployment strategy (``CANARY``) shifts a small percentage of traffic to the new service revision first, then shifts the remaining traffic all at once after a specified time period. This allows you to test the new version with a subset of users before full deployment.
|
|
70922
70975
|
*/
|
|
70923
70976
|
Strategy?: "ROLLING" | "BLUE_GREEN" | "LINEAR" | "CANARY";
|
|
70924
70977
|
};
|
|
@@ -89874,6 +89927,468 @@ export type GroundStationDataflowEndpointGroupTag = {
|
|
|
89874
89927
|
*/
|
|
89875
89928
|
Value: string;
|
|
89876
89929
|
};
|
|
89930
|
+
/**
|
|
89931
|
+
* Resource type definition for `AWS::GroundStation::DataflowEndpointGroupV2`.
|
|
89932
|
+
* Resource Type definition for AWS Ground Station DataflowEndpointGroupV2
|
|
89933
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-dataflowendpointgroupv2.html}
|
|
89934
|
+
*/
|
|
89935
|
+
export type GroundStationDataflowEndpointGroupV2Props = {
|
|
89936
|
+
/**
|
|
89937
|
+
* Amount of time, in seconds, after a contact ends that the Ground Station Dataflow Endpoint Group will be in a POSTPASS state. A Ground Station Dataflow Endpoint Group State Change event will be emitted when the Dataflow Endpoint Group enters and exits the POSTPASS state.
|
|
89938
|
+
* @min `30`
|
|
89939
|
+
* @max `480`
|
|
89940
|
+
*/
|
|
89941
|
+
ContactPostPassDurationSeconds?: number;
|
|
89942
|
+
/**
|
|
89943
|
+
* Amount of time, in seconds, before a contact starts that the Ground Station Dataflow Endpoint Group will be in a PREPASS state. A Ground Station Dataflow Endpoint Group State Change event will be emitted when the Dataflow Endpoint Group enters and exits the PREPASS state.
|
|
89944
|
+
* @min `30`
|
|
89945
|
+
* @max `480`
|
|
89946
|
+
*/
|
|
89947
|
+
ContactPrePassDurationSeconds?: number;
|
|
89948
|
+
/**
|
|
89949
|
+
* @minLength `1`
|
|
89950
|
+
*/
|
|
89951
|
+
Endpoints?: GroundStationDataflowEndpointGroupV2CreateEndpointDetails[];
|
|
89952
|
+
Tags?: GroundStationDataflowEndpointGroupV2Tag[];
|
|
89953
|
+
};
|
|
89954
|
+
/**
|
|
89955
|
+
* Attribute type definition for `AWS::GroundStation::DataflowEndpointGroupV2`.
|
|
89956
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-dataflowendpointgroupv2.html#aws-resource-groundstation-dataflowendpointgroupv2-return-values}
|
|
89957
|
+
*/
|
|
89958
|
+
export type GroundStationDataflowEndpointGroupV2Attributes = {
|
|
89959
|
+
/**
|
|
89960
|
+
* @pattern `^(arn:(aws[a-zA-Z-]*)?:[a-z0-9-.]+:.*)|()$`
|
|
89961
|
+
*/
|
|
89962
|
+
Arn: string;
|
|
89963
|
+
/**
|
|
89964
|
+
* @minLength `1`
|
|
89965
|
+
*/
|
|
89966
|
+
EndpointDetails: {
|
|
89967
|
+
/**
|
|
89968
|
+
* Information about DownlinkAwsGroundStationAgentEndpoint
|
|
89969
|
+
*/
|
|
89970
|
+
DownlinkAwsGroundStationAgentEndpoint: {
|
|
89971
|
+
/**
|
|
89972
|
+
* The status of AgentEndpoint.
|
|
89973
|
+
*/
|
|
89974
|
+
AgentStatus: GroundStationDataflowEndpointGroupV2AgentStatus;
|
|
89975
|
+
/**
|
|
89976
|
+
* The results of the audit.
|
|
89977
|
+
*/
|
|
89978
|
+
AuditResults: GroundStationDataflowEndpointGroupV2AuditResults;
|
|
89979
|
+
/**
|
|
89980
|
+
* Dataflow details for downlink
|
|
89981
|
+
*/
|
|
89982
|
+
DataflowDetails: {
|
|
89983
|
+
/**
|
|
89984
|
+
* Connection details for downlink, from ground station to agent, and customer to agent
|
|
89985
|
+
*/
|
|
89986
|
+
AgentConnectionDetails: {
|
|
89987
|
+
/**
|
|
89988
|
+
* Socket address of an uplink or downlink agent endpoint with a port range and an optional mtu.
|
|
89989
|
+
*/
|
|
89990
|
+
AgentIpAndPortAddress: {
|
|
89991
|
+
/**
|
|
89992
|
+
* Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.
|
|
89993
|
+
* @min `1400`
|
|
89994
|
+
* @max `1500`
|
|
89995
|
+
*/
|
|
89996
|
+
Mtu: number;
|
|
89997
|
+
/**
|
|
89998
|
+
* A socket address with a port range.
|
|
89999
|
+
*/
|
|
90000
|
+
SocketAddress: {
|
|
90001
|
+
/**
|
|
90002
|
+
* IPv4 socket address.
|
|
90003
|
+
* @pattern `^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}$`
|
|
90004
|
+
*/
|
|
90005
|
+
Name: string;
|
|
90006
|
+
/**
|
|
90007
|
+
* Port range of a socket address.
|
|
90008
|
+
*/
|
|
90009
|
+
PortRange: {
|
|
90010
|
+
/**
|
|
90011
|
+
* A maximum value.
|
|
90012
|
+
*/
|
|
90013
|
+
Maximum: number;
|
|
90014
|
+
/**
|
|
90015
|
+
* A minimum value.
|
|
90016
|
+
*/
|
|
90017
|
+
Minimum: number;
|
|
90018
|
+
};
|
|
90019
|
+
};
|
|
90020
|
+
};
|
|
90021
|
+
/**
|
|
90022
|
+
* Socket address of an uplink or downlink agent endpoint with an optional mtu.
|
|
90023
|
+
*/
|
|
90024
|
+
EgressAddressAndPort: {
|
|
90025
|
+
/**
|
|
90026
|
+
* Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.
|
|
90027
|
+
* @min `1400`
|
|
90028
|
+
* @max `1500`
|
|
90029
|
+
*/
|
|
90030
|
+
Mtu: number;
|
|
90031
|
+
SocketAddress: {
|
|
90032
|
+
/**
|
|
90033
|
+
* IPv4 socket address.
|
|
90034
|
+
*/
|
|
90035
|
+
Name: string;
|
|
90036
|
+
/**
|
|
90037
|
+
* Port of a socket address.
|
|
90038
|
+
*/
|
|
90039
|
+
Port: number;
|
|
90040
|
+
};
|
|
90041
|
+
};
|
|
90042
|
+
};
|
|
90043
|
+
};
|
|
90044
|
+
/**
|
|
90045
|
+
* @pattern `^[ a-zA-Z0-9_:-]{1,256}$`
|
|
90046
|
+
*/
|
|
90047
|
+
Name: string;
|
|
90048
|
+
};
|
|
90049
|
+
/**
|
|
90050
|
+
* Information about UplinkAwsGroundStationAgentEndpoint
|
|
90051
|
+
*/
|
|
90052
|
+
UplinkAwsGroundStationAgentEndpoint: {
|
|
90053
|
+
/**
|
|
90054
|
+
* The status of AgentEndpoint.
|
|
90055
|
+
*/
|
|
90056
|
+
AgentStatus: GroundStationDataflowEndpointGroupV2AgentStatus;
|
|
90057
|
+
/**
|
|
90058
|
+
* The results of the audit.
|
|
90059
|
+
*/
|
|
90060
|
+
AuditResults: GroundStationDataflowEndpointGroupV2AuditResults;
|
|
90061
|
+
/**
|
|
90062
|
+
* Dataflow details for uplink
|
|
90063
|
+
*/
|
|
90064
|
+
DataflowDetails: {
|
|
90065
|
+
/**
|
|
90066
|
+
* Connection details for uplink, from ground station to agent, and customer to agent
|
|
90067
|
+
*/
|
|
90068
|
+
AgentConnectionDetails: {
|
|
90069
|
+
/**
|
|
90070
|
+
* Socket address of an uplink or downlink agent endpoint with a port range and an optional mtu.
|
|
90071
|
+
*/
|
|
90072
|
+
AgentIpAndPortAddress: {
|
|
90073
|
+
/**
|
|
90074
|
+
* Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.
|
|
90075
|
+
* @min `1400`
|
|
90076
|
+
* @max `1500`
|
|
90077
|
+
*/
|
|
90078
|
+
Mtu: number;
|
|
90079
|
+
/**
|
|
90080
|
+
* A socket address with a port range.
|
|
90081
|
+
*/
|
|
90082
|
+
SocketAddress: {
|
|
90083
|
+
/**
|
|
90084
|
+
* IPv4 socket address.
|
|
90085
|
+
* @pattern `^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}$`
|
|
90086
|
+
*/
|
|
90087
|
+
Name: string;
|
|
90088
|
+
/**
|
|
90089
|
+
* Port range of a socket address.
|
|
90090
|
+
*/
|
|
90091
|
+
PortRange: {
|
|
90092
|
+
/**
|
|
90093
|
+
* A maximum value.
|
|
90094
|
+
*/
|
|
90095
|
+
Maximum: number;
|
|
90096
|
+
/**
|
|
90097
|
+
* A minimum value.
|
|
90098
|
+
*/
|
|
90099
|
+
Minimum: number;
|
|
90100
|
+
};
|
|
90101
|
+
};
|
|
90102
|
+
};
|
|
90103
|
+
/**
|
|
90104
|
+
* Socket address of an uplink or downlink agent endpoint with an optional mtu.
|
|
90105
|
+
*/
|
|
90106
|
+
IngressAddressAndPort: {
|
|
90107
|
+
/**
|
|
90108
|
+
* Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.
|
|
90109
|
+
* @min `1400`
|
|
90110
|
+
* @max `1500`
|
|
90111
|
+
*/
|
|
90112
|
+
Mtu: number;
|
|
90113
|
+
SocketAddress: {
|
|
90114
|
+
/**
|
|
90115
|
+
* IPv4 socket address.
|
|
90116
|
+
*/
|
|
90117
|
+
Name: string;
|
|
90118
|
+
/**
|
|
90119
|
+
* Port of a socket address.
|
|
90120
|
+
*/
|
|
90121
|
+
Port: number;
|
|
90122
|
+
};
|
|
90123
|
+
};
|
|
90124
|
+
};
|
|
90125
|
+
};
|
|
90126
|
+
/**
|
|
90127
|
+
* @pattern `^[ a-zA-Z0-9_:-]{1,256}$`
|
|
90128
|
+
*/
|
|
90129
|
+
Name: string;
|
|
90130
|
+
};
|
|
90131
|
+
}[];
|
|
90132
|
+
Id: string;
|
|
90133
|
+
};
|
|
90134
|
+
/**
|
|
90135
|
+
* Type definition for `AWS::GroundStation::DataflowEndpointGroupV2.AgentStatus`.
|
|
90136
|
+
* The status of AgentEndpoint.
|
|
90137
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-agentstatus.html}
|
|
90138
|
+
*/
|
|
90139
|
+
export type GroundStationDataflowEndpointGroupV2AgentStatus = "SUCCESS" | "FAILED" | "ACTIVE" | "INACTIVE";
|
|
90140
|
+
/**
|
|
90141
|
+
* Type definition for `AWS::GroundStation::DataflowEndpointGroupV2.AuditResults`.
|
|
90142
|
+
* The results of the audit.
|
|
90143
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-auditresults.html}
|
|
90144
|
+
*/
|
|
90145
|
+
export type GroundStationDataflowEndpointGroupV2AuditResults = "HEALTHY" | "UNHEALTHY";
|
|
90146
|
+
/**
|
|
90147
|
+
* Type definition for `AWS::GroundStation::DataflowEndpointGroupV2.ConnectionDetails`.
|
|
90148
|
+
* Socket address of an uplink or downlink agent endpoint with an optional mtu.
|
|
90149
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-connectiondetails.html}
|
|
90150
|
+
*/
|
|
90151
|
+
export type GroundStationDataflowEndpointGroupV2ConnectionDetails = {
|
|
90152
|
+
/**
|
|
90153
|
+
* Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.
|
|
90154
|
+
* @min `1400`
|
|
90155
|
+
* @max `1500`
|
|
90156
|
+
*/
|
|
90157
|
+
Mtu?: number;
|
|
90158
|
+
SocketAddress: GroundStationDataflowEndpointGroupV2SocketAddress;
|
|
90159
|
+
};
|
|
90160
|
+
/**
|
|
90161
|
+
* Type definition for `AWS::GroundStation::DataflowEndpointGroupV2.CreateEndpointDetails`.
|
|
90162
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-createendpointdetails.html}
|
|
90163
|
+
*/
|
|
90164
|
+
export type GroundStationDataflowEndpointGroupV2CreateEndpointDetails = {
|
|
90165
|
+
/**
|
|
90166
|
+
* Information about DownlinkAwsGroundStationAgentEndpoint used for create
|
|
90167
|
+
*/
|
|
90168
|
+
DownlinkAwsGroundStationAgentEndpoint?: GroundStationDataflowEndpointGroupV2DownlinkAwsGroundStationAgentEndpoint;
|
|
90169
|
+
/**
|
|
90170
|
+
* Information about UplinkAwsGroundStationAgentEndpoint used for create
|
|
90171
|
+
*/
|
|
90172
|
+
UplinkAwsGroundStationAgentEndpoint?: GroundStationDataflowEndpointGroupV2UplinkAwsGroundStationAgentEndpoint;
|
|
90173
|
+
};
|
|
90174
|
+
/**
|
|
90175
|
+
* Type definition for `AWS::GroundStation::DataflowEndpointGroupV2.DownlinkAwsGroundStationAgentEndpoint`.
|
|
90176
|
+
* Information about DownlinkAwsGroundStationAgentEndpoint used for create
|
|
90177
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-downlinkawsgroundstationagentendpoint.html}
|
|
90178
|
+
*/
|
|
90179
|
+
export type GroundStationDataflowEndpointGroupV2DownlinkAwsGroundStationAgentEndpoint = {
|
|
90180
|
+
/**
|
|
90181
|
+
* Dataflow details for downlink
|
|
90182
|
+
*/
|
|
90183
|
+
DataflowDetails: GroundStationDataflowEndpointGroupV2DownlinkDataflowDetails;
|
|
90184
|
+
/**
|
|
90185
|
+
* @pattern `^[ a-zA-Z0-9_:-]{1,256}$`
|
|
90186
|
+
*/
|
|
90187
|
+
Name: string;
|
|
90188
|
+
};
|
|
90189
|
+
/**
|
|
90190
|
+
* Type definition for `AWS::GroundStation::DataflowEndpointGroupV2.DownlinkAwsGroundStationAgentEndpointDetails`.
|
|
90191
|
+
* Information about DownlinkAwsGroundStationAgentEndpoint
|
|
90192
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-downlinkawsgroundstationagentendpointdetails.html}
|
|
90193
|
+
*/
|
|
90194
|
+
export type GroundStationDataflowEndpointGroupV2DownlinkAwsGroundStationAgentEndpointDetails = {
|
|
90195
|
+
/**
|
|
90196
|
+
* The status of AgentEndpoint.
|
|
90197
|
+
*/
|
|
90198
|
+
AgentStatus?: GroundStationDataflowEndpointGroupV2AgentStatus;
|
|
90199
|
+
/**
|
|
90200
|
+
* The results of the audit.
|
|
90201
|
+
*/
|
|
90202
|
+
AuditResults?: GroundStationDataflowEndpointGroupV2AuditResults;
|
|
90203
|
+
/**
|
|
90204
|
+
* Dataflow details for downlink
|
|
90205
|
+
*/
|
|
90206
|
+
DataflowDetails: GroundStationDataflowEndpointGroupV2DownlinkDataflowDetails;
|
|
90207
|
+
/**
|
|
90208
|
+
* @pattern `^[ a-zA-Z0-9_:-]{1,256}$`
|
|
90209
|
+
*/
|
|
90210
|
+
Name: string;
|
|
90211
|
+
};
|
|
90212
|
+
/**
|
|
90213
|
+
* Type definition for `AWS::GroundStation::DataflowEndpointGroupV2.DownlinkConnectionDetails`.
|
|
90214
|
+
* Connection details for downlink, from ground station to agent, and customer to agent
|
|
90215
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-downlinkconnectiondetails.html}
|
|
90216
|
+
*/
|
|
90217
|
+
export type GroundStationDataflowEndpointGroupV2DownlinkConnectionDetails = {
|
|
90218
|
+
/**
|
|
90219
|
+
* Socket address of an uplink or downlink agent endpoint with a port range and an optional mtu.
|
|
90220
|
+
*/
|
|
90221
|
+
AgentIpAndPortAddress: GroundStationDataflowEndpointGroupV2RangedConnectionDetails;
|
|
90222
|
+
/**
|
|
90223
|
+
* Socket address of an uplink or downlink agent endpoint with an optional mtu.
|
|
90224
|
+
*/
|
|
90225
|
+
EgressAddressAndPort: GroundStationDataflowEndpointGroupV2ConnectionDetails;
|
|
90226
|
+
};
|
|
90227
|
+
/**
|
|
90228
|
+
* Type definition for `AWS::GroundStation::DataflowEndpointGroupV2.DownlinkDataflowDetails`.
|
|
90229
|
+
* Dataflow details for downlink
|
|
90230
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-downlinkdataflowdetails.html}
|
|
90231
|
+
*/
|
|
90232
|
+
export type GroundStationDataflowEndpointGroupV2DownlinkDataflowDetails = {
|
|
90233
|
+
/**
|
|
90234
|
+
* Connection details for downlink, from ground station to agent, and customer to agent
|
|
90235
|
+
*/
|
|
90236
|
+
AgentConnectionDetails?: GroundStationDataflowEndpointGroupV2DownlinkConnectionDetails;
|
|
90237
|
+
};
|
|
90238
|
+
/**
|
|
90239
|
+
* Type definition for `AWS::GroundStation::DataflowEndpointGroupV2.EndpointDetails`.
|
|
90240
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-endpointdetails.html}
|
|
90241
|
+
*/
|
|
90242
|
+
export type GroundStationDataflowEndpointGroupV2EndpointDetails = {
|
|
90243
|
+
/**
|
|
90244
|
+
* Information about DownlinkAwsGroundStationAgentEndpoint
|
|
90245
|
+
*/
|
|
90246
|
+
DownlinkAwsGroundStationAgentEndpoint?: GroundStationDataflowEndpointGroupV2DownlinkAwsGroundStationAgentEndpointDetails;
|
|
90247
|
+
/**
|
|
90248
|
+
* Information about UplinkAwsGroundStationAgentEndpoint
|
|
90249
|
+
*/
|
|
90250
|
+
UplinkAwsGroundStationAgentEndpoint?: GroundStationDataflowEndpointGroupV2UplinkAwsGroundStationAgentEndpointDetails;
|
|
90251
|
+
};
|
|
90252
|
+
/**
|
|
90253
|
+
* Type definition for `AWS::GroundStation::DataflowEndpointGroupV2.IntegerRange`.
|
|
90254
|
+
* An integer range that has a minimum and maximum value.
|
|
90255
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-integerrange.html}
|
|
90256
|
+
*/
|
|
90257
|
+
export type GroundStationDataflowEndpointGroupV2IntegerRange = {
|
|
90258
|
+
/**
|
|
90259
|
+
* A maximum value.
|
|
90260
|
+
*/
|
|
90261
|
+
Maximum: number;
|
|
90262
|
+
/**
|
|
90263
|
+
* A minimum value.
|
|
90264
|
+
*/
|
|
90265
|
+
Minimum: number;
|
|
90266
|
+
};
|
|
90267
|
+
/**
|
|
90268
|
+
* Type definition for `AWS::GroundStation::DataflowEndpointGroupV2.RangedConnectionDetails`.
|
|
90269
|
+
* Socket address of an uplink or downlink agent endpoint with a port range and an optional mtu.
|
|
90270
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-rangedconnectiondetails.html}
|
|
90271
|
+
*/
|
|
90272
|
+
export type GroundStationDataflowEndpointGroupV2RangedConnectionDetails = {
|
|
90273
|
+
/**
|
|
90274
|
+
* Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.
|
|
90275
|
+
* @min `1400`
|
|
90276
|
+
* @max `1500`
|
|
90277
|
+
*/
|
|
90278
|
+
Mtu?: number;
|
|
90279
|
+
/**
|
|
90280
|
+
* A socket address with a port range.
|
|
90281
|
+
*/
|
|
90282
|
+
SocketAddress: GroundStationDataflowEndpointGroupV2RangedSocketAddress;
|
|
90283
|
+
};
|
|
90284
|
+
/**
|
|
90285
|
+
* Type definition for `AWS::GroundStation::DataflowEndpointGroupV2.RangedSocketAddress`.
|
|
90286
|
+
* A socket address with a port range.
|
|
90287
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-rangedsocketaddress.html}
|
|
90288
|
+
*/
|
|
90289
|
+
export type GroundStationDataflowEndpointGroupV2RangedSocketAddress = {
|
|
90290
|
+
/**
|
|
90291
|
+
* IPv4 socket address.
|
|
90292
|
+
* @pattern `^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}$`
|
|
90293
|
+
*/
|
|
90294
|
+
Name: string;
|
|
90295
|
+
/**
|
|
90296
|
+
* Port range of a socket address.
|
|
90297
|
+
*/
|
|
90298
|
+
PortRange: GroundStationDataflowEndpointGroupV2IntegerRange;
|
|
90299
|
+
};
|
|
90300
|
+
/**
|
|
90301
|
+
* Type definition for `AWS::GroundStation::DataflowEndpointGroupV2.SocketAddress`.
|
|
90302
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-socketaddress.html}
|
|
90303
|
+
*/
|
|
90304
|
+
export type GroundStationDataflowEndpointGroupV2SocketAddress = {
|
|
90305
|
+
/**
|
|
90306
|
+
* IPv4 socket address.
|
|
90307
|
+
*/
|
|
90308
|
+
Name: string;
|
|
90309
|
+
/**
|
|
90310
|
+
* Port of a socket address.
|
|
90311
|
+
*/
|
|
90312
|
+
Port: number;
|
|
90313
|
+
};
|
|
90314
|
+
/**
|
|
90315
|
+
* Type definition for `AWS::GroundStation::DataflowEndpointGroupV2.Tag`.
|
|
90316
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-tag.html}
|
|
90317
|
+
*/
|
|
90318
|
+
export type GroundStationDataflowEndpointGroupV2Tag = {
|
|
90319
|
+
/**
|
|
90320
|
+
* @pattern `^[ a-zA-Z0-9\+\-=._:/@]{1,128}$`
|
|
90321
|
+
*/
|
|
90322
|
+
Key: string;
|
|
90323
|
+
/**
|
|
90324
|
+
* @pattern `^[ a-zA-Z0-9\+\-=._:/@]{1,256}$`
|
|
90325
|
+
*/
|
|
90326
|
+
Value: string;
|
|
90327
|
+
};
|
|
90328
|
+
/**
|
|
90329
|
+
* Type definition for `AWS::GroundStation::DataflowEndpointGroupV2.UplinkAwsGroundStationAgentEndpoint`.
|
|
90330
|
+
* Information about UplinkAwsGroundStationAgentEndpoint used for create
|
|
90331
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-uplinkawsgroundstationagentendpoint.html}
|
|
90332
|
+
*/
|
|
90333
|
+
export type GroundStationDataflowEndpointGroupV2UplinkAwsGroundStationAgentEndpoint = {
|
|
90334
|
+
/**
|
|
90335
|
+
* Dataflow details for uplink
|
|
90336
|
+
*/
|
|
90337
|
+
DataflowDetails: GroundStationDataflowEndpointGroupV2UplinkDataflowDetails;
|
|
90338
|
+
/**
|
|
90339
|
+
* @pattern `^[ a-zA-Z0-9_:-]{1,256}$`
|
|
90340
|
+
*/
|
|
90341
|
+
Name: string;
|
|
90342
|
+
};
|
|
90343
|
+
/**
|
|
90344
|
+
* Type definition for `AWS::GroundStation::DataflowEndpointGroupV2.UplinkAwsGroundStationAgentEndpointDetails`.
|
|
90345
|
+
* Information about UplinkAwsGroundStationAgentEndpoint
|
|
90346
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-uplinkawsgroundstationagentendpointdetails.html}
|
|
90347
|
+
*/
|
|
90348
|
+
export type GroundStationDataflowEndpointGroupV2UplinkAwsGroundStationAgentEndpointDetails = {
|
|
90349
|
+
/**
|
|
90350
|
+
* The status of AgentEndpoint.
|
|
90351
|
+
*/
|
|
90352
|
+
AgentStatus?: GroundStationDataflowEndpointGroupV2AgentStatus;
|
|
90353
|
+
/**
|
|
90354
|
+
* The results of the audit.
|
|
90355
|
+
*/
|
|
90356
|
+
AuditResults?: GroundStationDataflowEndpointGroupV2AuditResults;
|
|
90357
|
+
/**
|
|
90358
|
+
* Dataflow details for uplink
|
|
90359
|
+
*/
|
|
90360
|
+
DataflowDetails: GroundStationDataflowEndpointGroupV2UplinkDataflowDetails;
|
|
90361
|
+
/**
|
|
90362
|
+
* @pattern `^[ a-zA-Z0-9_:-]{1,256}$`
|
|
90363
|
+
*/
|
|
90364
|
+
Name: string;
|
|
90365
|
+
};
|
|
90366
|
+
/**
|
|
90367
|
+
* Type definition for `AWS::GroundStation::DataflowEndpointGroupV2.UplinkConnectionDetails`.
|
|
90368
|
+
* Connection details for uplink, from ground station to agent, and customer to agent
|
|
90369
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-uplinkconnectiondetails.html}
|
|
90370
|
+
*/
|
|
90371
|
+
export type GroundStationDataflowEndpointGroupV2UplinkConnectionDetails = {
|
|
90372
|
+
/**
|
|
90373
|
+
* Socket address of an uplink or downlink agent endpoint with a port range and an optional mtu.
|
|
90374
|
+
*/
|
|
90375
|
+
AgentIpAndPortAddress: GroundStationDataflowEndpointGroupV2RangedConnectionDetails;
|
|
90376
|
+
/**
|
|
90377
|
+
* Socket address of an uplink or downlink agent endpoint with an optional mtu.
|
|
90378
|
+
*/
|
|
90379
|
+
IngressAddressAndPort: GroundStationDataflowEndpointGroupV2ConnectionDetails;
|
|
90380
|
+
};
|
|
90381
|
+
/**
|
|
90382
|
+
* Type definition for `AWS::GroundStation::DataflowEndpointGroupV2.UplinkDataflowDetails`.
|
|
90383
|
+
* Dataflow details for uplink
|
|
90384
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-uplinkdataflowdetails.html}
|
|
90385
|
+
*/
|
|
90386
|
+
export type GroundStationDataflowEndpointGroupV2UplinkDataflowDetails = {
|
|
90387
|
+
/**
|
|
90388
|
+
* Connection details for uplink, from ground station to agent, and customer to agent
|
|
90389
|
+
*/
|
|
90390
|
+
AgentConnectionDetails?: GroundStationDataflowEndpointGroupV2UplinkConnectionDetails;
|
|
90391
|
+
};
|
|
89877
90392
|
/**
|
|
89878
90393
|
* Resource type definition for `AWS::GroundStation::MissionProfile`.
|
|
89879
90394
|
* AWS Ground Station Mission Profile resource type for CloudFormation.
|
|
@@ -105128,6 +105643,10 @@ export type KafkaConnectConnectorProps = {
|
|
|
105128
105643
|
* Details of what logs are delivered and where they are delivered.
|
|
105129
105644
|
*/
|
|
105130
105645
|
LogDelivery?: KafkaConnectConnectorLogDelivery;
|
|
105646
|
+
/**
|
|
105647
|
+
* The network type of the Connector.
|
|
105648
|
+
*/
|
|
105649
|
+
NetworkType?: "IPV4" | "DUAL";
|
|
105131
105650
|
/**
|
|
105132
105651
|
* List of plugins to use with the connector.
|
|
105133
105652
|
* @minLength `1`
|
|
@@ -112695,7 +113214,7 @@ export type LaunchWizardDeploymentTags = {
|
|
|
112695
113214
|
};
|
|
112696
113215
|
/**
|
|
112697
113216
|
* Resource type definition for `AWS::Lex::Bot`.
|
|
112698
|
-
* Amazon Lex conversational bot performing automated tasks such as ordering a pizza, booking a hotel, and so on.
|
|
113217
|
+
* Resource Type definition for an Amazon Lex conversational bot performing automated tasks such as ordering a pizza, booking a hotel, and so on.
|
|
112699
113218
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lex-bot.html}
|
|
112700
113219
|
*/
|
|
112701
113220
|
export type LexBotProps = {
|
|
@@ -112921,6 +113440,8 @@ export type LexBotBotLocale = {
|
|
|
112921
113440
|
* @maxLength `250`
|
|
112922
113441
|
*/
|
|
112923
113442
|
SlotTypes?: LexBotSlotType[];
|
|
113443
|
+
SpeechDetectionSensitivity?: LexBotSpeechDetectionSensitivity;
|
|
113444
|
+
UnifiedSpeechSettings?: LexBotUnifiedSpeechSettings;
|
|
112924
113445
|
VoiceSettings?: LexBotVoiceSettings;
|
|
112925
113446
|
};
|
|
112926
113447
|
/**
|
|
@@ -113244,7 +113765,9 @@ export type LexBotGenerativeAISettings = {
|
|
|
113244
113765
|
};
|
|
113245
113766
|
RuntimeSettings?: {
|
|
113246
113767
|
NluImprovementSpecification?: {
|
|
113768
|
+
AssistedNluMode?: "Primary" | "Fallback";
|
|
113247
113769
|
Enabled: boolean;
|
|
113770
|
+
IntentDisambiguationSettings?: LexBotIntentDisambiguationSettings;
|
|
113248
113771
|
};
|
|
113249
113772
|
SlotResolutionImprovementSpecification?: {
|
|
113250
113773
|
BedrockModelSpecification?: LexBotBedrockModelSpecification;
|
|
@@ -113337,11 +113860,16 @@ export type LexBotInputContext = {
|
|
|
113337
113860
|
export type LexBotIntent = {
|
|
113338
113861
|
BedrockAgentIntentConfiguration?: LexBotBedrockAgentIntentConfiguration;
|
|
113339
113862
|
/**
|
|
113340
|
-
*
|
|
113863
|
+
* Resource Type definition for the intent.
|
|
113341
113864
|
* @maxLength `2000`
|
|
113342
113865
|
*/
|
|
113343
113866
|
Description?: string;
|
|
113344
113867
|
DialogCodeHook?: LexBotDialogCodeHookSetting;
|
|
113868
|
+
/**
|
|
113869
|
+
* @minLength `1`
|
|
113870
|
+
* @maxLength `100`
|
|
113871
|
+
*/
|
|
113872
|
+
DisplayName?: string;
|
|
113345
113873
|
FulfillmentCodeHook?: LexBotFulfillmentCodeHookSetting;
|
|
113346
113874
|
InitialResponseSetting?: LexBotInitialResponseSetting;
|
|
113347
113875
|
/**
|
|
@@ -113400,6 +113928,23 @@ export type LexBotIntentConfirmationSetting = {
|
|
|
113400
113928
|
IsActive?: boolean;
|
|
113401
113929
|
PromptSpecification: LexBotPromptSpecification;
|
|
113402
113930
|
};
|
|
113931
|
+
/**
|
|
113932
|
+
* Type definition for `AWS::Lex::Bot.IntentDisambiguationSettings`.
|
|
113933
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-intentdisambiguationsettings.html}
|
|
113934
|
+
*/
|
|
113935
|
+
export type LexBotIntentDisambiguationSettings = {
|
|
113936
|
+
/**
|
|
113937
|
+
* @minLength `1`
|
|
113938
|
+
* @maxLength `1000`
|
|
113939
|
+
*/
|
|
113940
|
+
CustomDisambiguationMessage?: string;
|
|
113941
|
+
Enabled: boolean;
|
|
113942
|
+
/**
|
|
113943
|
+
* @min `2`
|
|
113944
|
+
* @max `5`
|
|
113945
|
+
*/
|
|
113946
|
+
MaxDisambiguationIntents?: number;
|
|
113947
|
+
};
|
|
113403
113948
|
/**
|
|
113404
113949
|
* Type definition for `AWS::Lex::Bot.IntentOverride`.
|
|
113405
113950
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-intentoverride.html}
|
|
@@ -113965,9 +114510,15 @@ export type LexBotSpecifications = {
|
|
|
113965
114510
|
* @maxLength `25`
|
|
113966
114511
|
* @pattern `^((AMAZON\.)[a-zA-Z_]+?|[0-9a-zA-Z]+)$`
|
|
113967
114512
|
*/
|
|
113968
|
-
SlotTypeId
|
|
114513
|
+
SlotTypeId?: string;
|
|
114514
|
+
SlotTypeName?: string;
|
|
113969
114515
|
ValueElicitationSetting: LexBotSubSlotValueElicitationSetting;
|
|
113970
114516
|
};
|
|
114517
|
+
/**
|
|
114518
|
+
* Type definition for `AWS::Lex::Bot.SpeechDetectionSensitivity`.
|
|
114519
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-speechdetectionsensitivity.html}
|
|
114520
|
+
*/
|
|
114521
|
+
export type LexBotSpeechDetectionSensitivity = "Default" | "HighNoiseTolerance" | "MaximumNoiseTolerance";
|
|
113971
114522
|
/**
|
|
113972
114523
|
* Type definition for `AWS::Lex::Bot.SSMLMessage`.
|
|
113973
114524
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-ssmlmessage.html}
|
|
@@ -114030,7 +114581,8 @@ export type LexBotSubSlotTypeComposition = {
|
|
|
114030
114581
|
* @maxLength `25`
|
|
114031
114582
|
* @pattern `^((AMAZON\.)[a-zA-Z_]+?|[0-9a-zA-Z]+)$`
|
|
114032
114583
|
*/
|
|
114033
|
-
SlotTypeId
|
|
114584
|
+
SlotTypeId?: string;
|
|
114585
|
+
SlotTypeName?: string;
|
|
114034
114586
|
};
|
|
114035
114587
|
/**
|
|
114036
114588
|
* Type definition for `AWS::Lex::Bot.SubSlotValueElicitationSetting`.
|
|
@@ -114102,6 +114654,16 @@ export type LexBotTextLogSetting = {
|
|
|
114102
114654
|
Destination: LexBotTextLogDestination;
|
|
114103
114655
|
Enabled: boolean;
|
|
114104
114656
|
};
|
|
114657
|
+
/**
|
|
114658
|
+
* Type definition for `AWS::Lex::Bot.UnifiedSpeechSettings`.
|
|
114659
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-unifiedspeechsettings.html}
|
|
114660
|
+
*/
|
|
114661
|
+
export type LexBotUnifiedSpeechSettings = {
|
|
114662
|
+
SpeechFoundationModel: {
|
|
114663
|
+
ModelArn: string;
|
|
114664
|
+
VoiceId?: string;
|
|
114665
|
+
};
|
|
114666
|
+
};
|
|
114105
114667
|
/**
|
|
114106
114668
|
* Type definition for `AWS::Lex::Bot.VoiceSettings`.
|
|
114107
114669
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-voicesettings.html}
|
|
@@ -114122,7 +114684,7 @@ export type LexBotWaitAndContinueSpecification = {
|
|
|
114122
114684
|
};
|
|
114123
114685
|
/**
|
|
114124
114686
|
* Resource type definition for `AWS::Lex::BotAlias`.
|
|
114125
|
-
*
|
|
114687
|
+
* Resource Type definition for a Bot Alias, which enables you to change the version of a bot without updating applications that use the bot
|
|
114126
114688
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lex-botalias.html}
|
|
114127
114689
|
*/
|
|
114128
114690
|
export type LexBotAliasProps = {
|
|
@@ -114182,6 +114744,7 @@ export type LexBotAliasProps = {
|
|
|
114182
114744
|
*/
|
|
114183
114745
|
export type LexBotAliasAttributes = {
|
|
114184
114746
|
/**
|
|
114747
|
+
* The Amazon Resource Name (ARN) of the bot alias.
|
|
114185
114748
|
* @maxLength `1000`
|
|
114186
114749
|
*/
|
|
114187
114750
|
Arn: string;
|
|
@@ -183530,6 +184093,9 @@ export type S3AccessPointVpcConfiguration = {
|
|
|
183530
184093
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-bucket.html}
|
|
183531
184094
|
*/
|
|
183532
184095
|
export type S3BucketProps = {
|
|
184096
|
+
/**
|
|
184097
|
+
* The ABAC status of the general purpose bucket. When ABAC is enabled for the general purpose bucket, you can use tags to manage access to the general purpose buckets as well as for cost tracking purposes. When ABAC is disabled for the general purpose buckets, you can only use tags for cost tracking purposes. For more information, see [Using tags with S3 general purpose buckets](https://docs.aws.amazon.com/AmazonS3/latest/userguide/buckets-tagging.html).
|
|
184098
|
+
*/
|
|
183533
184099
|
AbacStatus?: "Enabled" | "Disabled";
|
|
183534
184100
|
/**
|
|
183535
184101
|
* Configures the transfer acceleration state for an Amazon S3 bucket. For more information, see [Amazon S3 Transfer Acceleration](https://docs.aws.amazon.com/AmazonS3/latest/dev/transfer-acceleration.html) in the *Amazon S3 User Guide*.
|
|
@@ -183772,12 +184338,20 @@ export type S3BucketAnalyticsConfiguration = {
|
|
|
183772
184338
|
};
|
|
183773
184339
|
/**
|
|
183774
184340
|
* Type definition for `AWS::S3::Bucket.BlockedEncryptionTypes`.
|
|
184341
|
+
* A bucket-level setting for Amazon S3 general purpose buckets used to prevent the upload of new objects encrypted with the specified server-side encryption type. For example, blocking an encryption type will block ``PutObject``, ``CopyObject``, ``PostObject``, multipart upload, and replication requests to the bucket for objects with the specified encryption type. However, you can continue to read and list any pre-existing objects already encrypted with the specified encryption type. For more information, see [Blocking or unblocking SSE-C for a general purpose bucket](https://docs.aws.amazon.com/AmazonS3/latest/userguide/blocking-unblocking-s3-c-encryption-gpb.html).
|
|
184342
|
+
This data type is used with the following actions:
|
|
184343
|
+
+ [PutBucketEncryption](https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketEncryption.html)
|
|
184344
|
+
+ [GetBucketEncryption](https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketEncryption.html)
|
|
184345
|
+
+ [DeleteBucketEncryption](https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteBucketEncryption.html)
|
|
184346
|
+
|
|
184347
|
+
+ Permissions You must have the s3:PutEncryptionConfiguration permission to block or unblock an encryption type for a bucket. You must have the s3:GetEncryptionConfiguration permission to view a bucket's encryption type.
|
|
183775
184348
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-blockedencryptiontypes.html}
|
|
183776
184349
|
*/
|
|
183777
184350
|
export type S3BucketBlockedEncryptionTypes = {
|
|
183778
184351
|
/**
|
|
183779
|
-
|
|
183780
|
-
|
|
184352
|
+
* The object encryption type that you want to block or unblock for an Amazon S3 general purpose bucket.
|
|
184353
|
+
Currently, this parameter only supports blocking or unblocking server side encryption with customer-provided keys (SSE-C). For more information about SSE-C, see [Using server-side encryption with customer-provided keys (SSE-C)](https://docs.aws.amazon.com/AmazonS3/latest/userguide/ServerSideEncryptionCustomerKeys.html).
|
|
184354
|
+
*/
|
|
183781
184355
|
EncryptionType?: ("NONE" | "SSE-C")[];
|
|
183782
184356
|
};
|
|
183783
184357
|
/**
|
|
@@ -184004,7 +184578,7 @@ export type S3BucketInventoryConfiguration = {
|
|
|
184004
184578
|
/**
|
|
184005
184579
|
* Contains the optional fields that are included in the inventory results.
|
|
184006
184580
|
*/
|
|
184007
|
-
OptionalFields?: ("Size" | "LastModifiedDate" | "StorageClass" | "ETag" | "IsMultipartUploaded" | "ReplicationStatus" | "EncryptionStatus" | "ObjectLockRetainUntilDate" | "ObjectLockMode" | "ObjectLockLegalHoldStatus" | "IntelligentTieringAccessTier" | "BucketKeyStatus" | "ChecksumAlgorithm" | "ObjectAccessControlList" | "ObjectOwner")[];
|
|
184581
|
+
OptionalFields?: ("Size" | "LastModifiedDate" | "StorageClass" | "ETag" | "IsMultipartUploaded" | "ReplicationStatus" | "EncryptionStatus" | "ObjectLockRetainUntilDate" | "ObjectLockMode" | "ObjectLockLegalHoldStatus" | "IntelligentTieringAccessTier" | "BucketKeyStatus" | "ChecksumAlgorithm" | "ObjectAccessControlList" | "ObjectOwner" | "LifecycleExpirationDate")[];
|
|
184008
184582
|
/**
|
|
184009
184583
|
* Specifies the inventory filter prefix.
|
|
184010
184584
|
*/
|
|
@@ -184342,7 +184916,7 @@ export type S3BucketPartitionedPrefix = {
|
|
|
184342
184916
|
};
|
|
184343
184917
|
/**
|
|
184344
184918
|
* Type definition for `AWS::S3::Bucket.PublicAccessBlockConfiguration`.
|
|
184345
|
-
* The PublicAccessBlock configuration that you want to apply to this Amazon S3 bucket. You can enable the configuration options in any combination. For more information about when Amazon S3 considers a bucket or object public, see [The Meaning of "Public"](https://docs.aws.amazon.com/AmazonS3/latest/dev/access-control-block-public-access.html#access-control-block-public-access-policy-status) in the *Amazon S3 User Guide*.
|
|
184919
|
+
* The PublicAccessBlock configuration that you want to apply to this Amazon S3 bucket. You can enable the configuration options in any combination. Bucket-level settings work alongside account-level settings (which may inherit from organization-level policies). For more information about when Amazon S3 considers a bucket or object public, see [The Meaning of "Public"](https://docs.aws.amazon.com/AmazonS3/latest/dev/access-control-block-public-access.html#access-control-block-public-access-policy-status) in the *Amazon S3 User Guide*.
|
|
184346
184920
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html}
|
|
184347
184921
|
*/
|
|
184348
184922
|
export type S3BucketPublicAccessBlockConfiguration = {
|
|
@@ -184806,6 +185380,10 @@ export type S3BucketServerSideEncryptionByDefault = {
|
|
|
184806
185380
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-serversideencryptionrule.html}
|
|
184807
185381
|
*/
|
|
184808
185382
|
export type S3BucketServerSideEncryptionRule = {
|
|
185383
|
+
/**
|
|
185384
|
+
* A bucket-level setting for Amazon S3 general purpose buckets used to prevent the upload of new objects encrypted with the specified server-side encryption type. For example, blocking an encryption type will block ``PutObject``, ``CopyObject``, ``PostObject``, multipart upload, and replication requests to the bucket for objects with the specified encryption type. However, you can continue to read and list any pre-existing objects already encrypted with the specified encryption type. For more information, see [Blocking or unblocking SSE-C for a general purpose bucket](https://docs.aws.amazon.com/AmazonS3/latest/userguide/blocking-unblocking-s3-c-encryption-gpb.html).
|
|
185385
|
+
Currently, this parameter only supports blocking or unblocking server-side encryption with customer-provided keys (SSE-C). For more information about SSE-C, see [Using server-side encryption with customer-provided keys (SSE-C)](https://docs.aws.amazon.com/AmazonS3/latest/userguide/ServerSideEncryptionCustomerKeys.html).
|
|
185386
|
+
*/
|
|
184809
185387
|
BlockedEncryptionTypes?: S3BucketBlockedEncryptionTypes;
|
|
184810
185388
|
/**
|
|
184811
185389
|
* Specifies whether Amazon S3 should use an S3 Bucket Key with server-side encryption using KMS (SSE-KMS) for new objects in the bucket. Existing objects are not affected. Setting the ``BucketKeyEnabled`` element to ``true`` causes Amazon S3 to use an S3 Bucket Key. By default, S3 Bucket Key is not enabled.
|
|
@@ -197451,6 +198029,9 @@ export type SecretsManagerSecretProps = {
|
|
|
197451
198029
|
+ If you use your tagging schema across multiple services and resources, other services might have restrictions on allowed characters. Generally allowed characters: letters, spaces, and numbers representable in UTF-8, plus the following special characters: + - = . _ : / @.
|
|
197452
198030
|
*/
|
|
197453
198031
|
Tags?: SecretsManagerSecretTag[];
|
|
198032
|
+
/**
|
|
198033
|
+
* The exact string that identifies the third-party partner that holds the external secret. For more information, see [Managed external secret partners](https://docs.aws.amazon.com/secretsmanager/latest/userguide/mes-partners.html).
|
|
198034
|
+
*/
|
|
197454
198035
|
Type?: string;
|
|
197455
198036
|
};
|
|
197456
198037
|
/**
|
|
@@ -203207,6 +203788,72 @@ export type SESTemplateTemplate = {
|
|
|
203207
203788
|
*/
|
|
203208
203789
|
TextPart?: string;
|
|
203209
203790
|
};
|
|
203791
|
+
/**
|
|
203792
|
+
* Resource Type definition for AWS::SES::Tenant
|
|
203793
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-tenant.html}
|
|
203794
|
+
*/
|
|
203795
|
+
export type SESTenantProps = {
|
|
203796
|
+
/**
|
|
203797
|
+
* The list of resources to associate with the tenant.
|
|
203798
|
+
* @minLength `0`
|
|
203799
|
+
*/
|
|
203800
|
+
ResourceAssociations?: SESTenantResourceAssociation[];
|
|
203801
|
+
/**
|
|
203802
|
+
* The tags (keys and values) associated with the tenant.
|
|
203803
|
+
* @minLength `0`
|
|
203804
|
+
* @maxLength `50`
|
|
203805
|
+
*/
|
|
203806
|
+
Tags?: SESTenantTag[];
|
|
203807
|
+
/**
|
|
203808
|
+
* The name of the tenant.
|
|
203809
|
+
* @minLength `1`
|
|
203810
|
+
* @maxLength `64`
|
|
203811
|
+
* @pattern `^[\w\-_]+$`
|
|
203812
|
+
*/
|
|
203813
|
+
TenantName: string;
|
|
203814
|
+
};
|
|
203815
|
+
/**
|
|
203816
|
+
* Attribute type definition for `AWS::SES::Tenant`.
|
|
203817
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-tenant.html#aws-resource-ses-tenant-return-values}
|
|
203818
|
+
*/
|
|
203819
|
+
export type SESTenantAttributes = {
|
|
203820
|
+
/**
|
|
203821
|
+
* Amazon Resource Name (ARN) of the tenant.
|
|
203822
|
+
* @minLength `1`
|
|
203823
|
+
*/
|
|
203824
|
+
Arn: string;
|
|
203825
|
+
};
|
|
203826
|
+
/**
|
|
203827
|
+
* Type definition for `AWS::SES::Tenant.ResourceAssociation`.
|
|
203828
|
+
* The resource to associate with the tenant
|
|
203829
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-tenant-resourceassociation.html}
|
|
203830
|
+
*/
|
|
203831
|
+
export type SESTenantResourceAssociation = {
|
|
203832
|
+
/**
|
|
203833
|
+
* The ARN of the resource to associate with the tenant
|
|
203834
|
+
* @minLength `1`
|
|
203835
|
+
*/
|
|
203836
|
+
ResourceArn: string;
|
|
203837
|
+
};
|
|
203838
|
+
/**
|
|
203839
|
+
* Type definition for `AWS::SES::Tenant.Tag`.
|
|
203840
|
+
* An object that defines the tags (keys and values) that you want to associate with the tenant.
|
|
203841
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-tenant-tag.html}
|
|
203842
|
+
*/
|
|
203843
|
+
export type SESTenantTag = {
|
|
203844
|
+
/**
|
|
203845
|
+
* The key of the key-value tag.
|
|
203846
|
+
* @minLength `1`
|
|
203847
|
+
* @maxLength `128`
|
|
203848
|
+
*/
|
|
203849
|
+
Key: string;
|
|
203850
|
+
/**
|
|
203851
|
+
* The value of the key-value tag.
|
|
203852
|
+
* @minLength `0`
|
|
203853
|
+
* @maxLength `256`
|
|
203854
|
+
*/
|
|
203855
|
+
Value: string;
|
|
203856
|
+
};
|
|
203210
203857
|
/**
|
|
203211
203858
|
* Resource Type definition for AWS::SES::VdmAttributes
|
|
203212
203859
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-vdmattributes.html}
|
|
@@ -204956,19 +205603,61 @@ export type SSMMaintenanceWindowTargetTargets = {
|
|
|
204956
205603
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html}
|
|
204957
205604
|
*/
|
|
204958
205605
|
export type SSMMaintenanceWindowTaskProps = {
|
|
205606
|
+
/**
|
|
205607
|
+
* The specification for whether tasks should continue to run after the cutoff time specified in the maintenance windows is reached.
|
|
205608
|
+
*/
|
|
204959
205609
|
CutoffBehavior?: string;
|
|
205610
|
+
/**
|
|
205611
|
+
* A description of the task.
|
|
205612
|
+
*/
|
|
204960
205613
|
Description?: string;
|
|
205614
|
+
/**
|
|
205615
|
+
* Information about an Amazon S3 bucket to write Run Command task-level logs to.
|
|
205616
|
+
*/
|
|
204961
205617
|
LoggingInfo?: SSMMaintenanceWindowTaskLoggingInfo;
|
|
205618
|
+
/**
|
|
205619
|
+
* The maximum number of targets this task can be run for, in parallel.
|
|
205620
|
+
*/
|
|
204962
205621
|
MaxConcurrency?: string;
|
|
205622
|
+
/**
|
|
205623
|
+
* The maximum number of errors allowed before this task stops being scheduled.
|
|
205624
|
+
*/
|
|
204963
205625
|
MaxErrors?: string;
|
|
205626
|
+
/**
|
|
205627
|
+
* The task name.
|
|
205628
|
+
*/
|
|
204964
205629
|
Name?: string;
|
|
205630
|
+
/**
|
|
205631
|
+
* The priority of the task in the maintenance window. The lower the number, the higher the priority. Tasks that have the same priority are scheduled in parallel.
|
|
205632
|
+
*/
|
|
204965
205633
|
Priority: number;
|
|
205634
|
+
/**
|
|
205635
|
+
* The Amazon Resource Name (ARN) of the IAM service role for AWS Systems Manager to assume when running a maintenance window task.
|
|
205636
|
+
*/
|
|
204966
205637
|
ServiceRoleArn?: string;
|
|
205638
|
+
/**
|
|
205639
|
+
* The targets (either instances or window target ids).
|
|
205640
|
+
*/
|
|
204967
205641
|
Targets?: SSMMaintenanceWindowTaskTarget[];
|
|
205642
|
+
/**
|
|
205643
|
+
* The resource that the task uses during execution.
|
|
205644
|
+
*/
|
|
204968
205645
|
TaskArn: string;
|
|
205646
|
+
/**
|
|
205647
|
+
* The parameters to pass to the task when it runs. Populate only the fields that match the task type. All other fields should be empty.
|
|
205648
|
+
*/
|
|
204969
205649
|
TaskInvocationParameters?: SSMMaintenanceWindowTaskTaskInvocationParameters;
|
|
205650
|
+
/**
|
|
205651
|
+
* The parameters to pass to the task when it runs.
|
|
205652
|
+
*/
|
|
204970
205653
|
TaskParameters?: Record<string, any>;
|
|
205654
|
+
/**
|
|
205655
|
+
* The type of task.
|
|
205656
|
+
*/
|
|
204971
205657
|
TaskType: string;
|
|
205658
|
+
/**
|
|
205659
|
+
* The ID of the maintenance window where the task is registered.
|
|
205660
|
+
*/
|
|
204972
205661
|
WindowId: string;
|
|
204973
205662
|
};
|
|
204974
205663
|
/**
|
|
@@ -204976,14 +205665,23 @@ export type SSMMaintenanceWindowTaskProps = {
|
|
|
204976
205665
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#aws-resource-ssm-maintenancewindowtask-return-values}
|
|
204977
205666
|
*/
|
|
204978
205667
|
export type SSMMaintenanceWindowTaskAttributes = {
|
|
204979
|
-
|
|
205668
|
+
/**
|
|
205669
|
+
* Unique identifier of the maintenance window task.
|
|
205670
|
+
*/
|
|
205671
|
+
WindowTaskId: string;
|
|
204980
205672
|
};
|
|
204981
205673
|
/**
|
|
204982
205674
|
* Type definition for `AWS::SSM::MaintenanceWindowTask.CloudWatchOutputConfig`.
|
|
204983
205675
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-cloudwatchoutputconfig.html}
|
|
204984
205676
|
*/
|
|
204985
205677
|
export type SSMMaintenanceWindowTaskCloudWatchOutputConfig = {
|
|
205678
|
+
/**
|
|
205679
|
+
* The name of the CloudWatch log group where you want to send command output.
|
|
205680
|
+
*/
|
|
204986
205681
|
CloudWatchLogGroupName?: string;
|
|
205682
|
+
/**
|
|
205683
|
+
* Enables Systems Manager to send command output to CloudWatch Logs.
|
|
205684
|
+
*/
|
|
204987
205685
|
CloudWatchOutputEnabled?: boolean;
|
|
204988
205686
|
};
|
|
204989
205687
|
/**
|
|
@@ -219822,6 +220520,7 @@ export interface ResourceTypes {
|
|
|
219822
220520
|
"AWS::GreengrassV2::Deployment": GreengrassV2DeploymentProps;
|
|
219823
220521
|
"AWS::GroundStation::Config": GroundStationConfigProps;
|
|
219824
220522
|
"AWS::GroundStation::DataflowEndpointGroup": GroundStationDataflowEndpointGroupProps;
|
|
220523
|
+
"AWS::GroundStation::DataflowEndpointGroupV2": GroundStationDataflowEndpointGroupV2Props;
|
|
219825
220524
|
"AWS::GroundStation::MissionProfile": GroundStationMissionProfileProps;
|
|
219826
220525
|
"AWS::GuardDuty::Detector": GuardDutyDetectorProps;
|
|
219827
220526
|
"AWS::GuardDuty::Filter": GuardDutyFilterProps;
|
|
@@ -220471,6 +221170,7 @@ export interface ResourceTypes {
|
|
|
220471
221170
|
"AWS::SES::ReceiptRule": SESReceiptRuleProps;
|
|
220472
221171
|
"AWS::SES::ReceiptRuleSet": SESReceiptRuleSetProps;
|
|
220473
221172
|
"AWS::SES::Template": SESTemplateProps;
|
|
221173
|
+
"AWS::SES::Tenant": SESTenantProps;
|
|
220474
221174
|
"AWS::SES::VdmAttributes": SESVdmAttributesProps;
|
|
220475
221175
|
"AWS::Shield::DRTAccess": ShieldDRTAccessProps;
|
|
220476
221176
|
"AWS::Shield::ProactiveEngagement": ShieldProactiveEngagementProps;
|
|
@@ -220959,7 +221659,6 @@ export interface AttributeTypes {
|
|
|
220959
221659
|
"AWS::DataZone::UserProfile": DataZoneUserProfileAttributes;
|
|
220960
221660
|
"AWS::DAX::Cluster": DAXClusterAttributes;
|
|
220961
221661
|
"AWS::DAX::ParameterGroup": DAXParameterGroupAttributes;
|
|
220962
|
-
"AWS::DAX::SubnetGroup": DAXSubnetGroupAttributes;
|
|
220963
221662
|
"AWS::Deadline::Farm": DeadlineFarmAttributes;
|
|
220964
221663
|
"AWS::Deadline::Fleet": DeadlineFleetAttributes;
|
|
220965
221664
|
"AWS::Deadline::LicenseEndpoint": DeadlineLicenseEndpointAttributes;
|
|
@@ -221243,6 +221942,7 @@ export interface AttributeTypes {
|
|
|
221243
221942
|
"AWS::GreengrassV2::Deployment": GreengrassV2DeploymentAttributes;
|
|
221244
221943
|
"AWS::GroundStation::Config": GroundStationConfigAttributes;
|
|
221245
221944
|
"AWS::GroundStation::DataflowEndpointGroup": GroundStationDataflowEndpointGroupAttributes;
|
|
221945
|
+
"AWS::GroundStation::DataflowEndpointGroupV2": GroundStationDataflowEndpointGroupV2Attributes;
|
|
221246
221946
|
"AWS::GroundStation::MissionProfile": GroundStationMissionProfileAttributes;
|
|
221247
221947
|
"AWS::GuardDuty::Detector": GuardDutyDetectorAttributes;
|
|
221248
221948
|
"AWS::GuardDuty::IPSet": GuardDutyIPSetAttributes;
|
|
@@ -221813,6 +222513,7 @@ export interface AttributeTypes {
|
|
|
221813
222513
|
"AWS::SES::ReceiptRule": SESReceiptRuleAttributes;
|
|
221814
222514
|
"AWS::SES::ReceiptRuleSet": SESReceiptRuleSetAttributes;
|
|
221815
222515
|
"AWS::SES::Template": SESTemplateAttributes;
|
|
222516
|
+
"AWS::SES::Tenant": SESTenantAttributes;
|
|
221816
222517
|
"AWS::SES::VdmAttributes": SESVdmAttributesAttributes;
|
|
221817
222518
|
"AWS::Shield::DRTAccess": ShieldDRTAccessAttributes;
|
|
221818
222519
|
"AWS::Shield::ProactiveEngagement": ShieldProactiveEngagementAttributes;
|
|
@@ -222646,6 +223347,7 @@ export declare const ResourceType: {
|
|
|
222646
223347
|
readonly GreengrassV2Deployment: "AWS::GreengrassV2::Deployment";
|
|
222647
223348
|
readonly GroundStationConfig: "AWS::GroundStation::Config";
|
|
222648
223349
|
readonly GroundStationDataflowEndpointGroup: "AWS::GroundStation::DataflowEndpointGroup";
|
|
223350
|
+
readonly GroundStationDataflowEndpointGroupV2: "AWS::GroundStation::DataflowEndpointGroupV2";
|
|
222649
223351
|
readonly GroundStationMissionProfile: "AWS::GroundStation::MissionProfile";
|
|
222650
223352
|
readonly GuardDutyDetector: "AWS::GuardDuty::Detector";
|
|
222651
223353
|
readonly GuardDutyFilter: "AWS::GuardDuty::Filter";
|
|
@@ -223295,6 +223997,7 @@ export declare const ResourceType: {
|
|
|
223295
223997
|
readonly SESReceiptRule: "AWS::SES::ReceiptRule";
|
|
223296
223998
|
readonly SESReceiptRuleSet: "AWS::SES::ReceiptRuleSet";
|
|
223297
223999
|
readonly SESTemplate: "AWS::SES::Template";
|
|
224000
|
+
readonly SESTenant: "AWS::SES::Tenant";
|
|
223298
224001
|
readonly SESVdmAttributes: "AWS::SES::VdmAttributes";
|
|
223299
224002
|
readonly ShieldDRTAccess: "AWS::Shield::DRTAccess";
|
|
223300
224003
|
readonly ShieldProactiveEngagement: "AWS::Shield::ProactiveEngagement";
|