@awboost/cfn-resource-types 0.1.503 → 0.1.505
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/lib/AWS-BedrockAgentCore-Gateway.d.ts +50 -1
- package/lib/AWS-DAX-SubnetGroup.d.ts +3 -10
- package/lib/AWS-DAX-SubnetGroup.js +1 -1
- package/lib/AWS-DataSync-Agent.d.ts +1 -1
- package/lib/AWS-DataSync-LocationAzureBlob.d.ts +7 -7
- package/lib/AWS-DataSync-LocationEFS.d.ts +5 -5
- package/lib/AWS-DataSync-LocationFSxLustre.d.ts +2 -2
- package/lib/AWS-DataSync-LocationFSxONTAP.d.ts +3 -3
- package/lib/AWS-DataSync-LocationFSxOpenZFS.d.ts +2 -2
- package/lib/AWS-DataSync-LocationFSxWindows.d.ts +2 -2
- package/lib/AWS-DataSync-LocationHDFS.d.ts +1 -1
- package/lib/AWS-DataSync-LocationNFS.d.ts +2 -2
- package/lib/AWS-DataSync-LocationObjectStorage.d.ts +7 -7
- package/lib/AWS-DataSync-LocationS3.d.ts +3 -3
- package/lib/AWS-DataSync-LocationSMB.d.ts +8 -8
- package/lib/AWS-DataSync-Task.d.ts +8 -8
- package/lib/AWS-EC2-NetworkInterfaceAttachment.d.ts +18 -8
- package/lib/AWS-EC2-NetworkInterfaceAttachment.js +2 -1
- package/lib/AWS-ECR-SigningConfiguration.d.ts +1 -1
- package/lib/AWS-ECS-Service.d.ts +2 -0
- package/lib/AWS-GroundStation-DataflowEndpointGroupV2.d.ts +474 -0
- package/lib/AWS-GroundStation-DataflowEndpointGroupV2.js +13 -0
- package/lib/AWS-KafkaConnect-Connector.d.ts +4 -0
- package/lib/AWS-Lex-Bot.d.ts +48 -5
- package/lib/AWS-Lex-Bot.js +1 -1
- package/lib/AWS-Lex-BotAlias.d.ts +3 -2
- package/lib/AWS-Lex-BotAlias.js +1 -1
- package/lib/AWS-S3-Bucket.d.ts +19 -4
- package/lib/AWS-SES-Tenant.d.ts +77 -0
- package/lib/AWS-SES-Tenant.js +12 -0
- package/lib/AWS-SSM-MaintenanceWindowTask.d.ts +52 -1
- package/lib/AWS-SecretsManager-Secret.d.ts +3 -0
- package/package.json +1 -1
|
@@ -13,6 +13,11 @@ export type BedrockAgentCoreGatewayProperties = {
|
|
|
13
13
|
*/
|
|
14
14
|
Description?: string;
|
|
15
15
|
ExceptionLevel?: ExceptionLevel;
|
|
16
|
+
/**
|
|
17
|
+
* @minLength `1`
|
|
18
|
+
* @maxLength `2`
|
|
19
|
+
*/
|
|
20
|
+
InterceptorConfigurations?: GatewayInterceptorConfiguration[];
|
|
16
21
|
/**
|
|
17
22
|
* @minLength `1`
|
|
18
23
|
* @maxLength `2048`
|
|
@@ -77,7 +82,7 @@ export type AuthorizerConfiguration = {
|
|
|
77
82
|
* Type definition for `AWS::BedrockAgentCore::Gateway.AuthorizerType`.
|
|
78
83
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-authorizertype.html}
|
|
79
84
|
*/
|
|
80
|
-
export type AuthorizerType = "CUSTOM_JWT" | "AWS_IAM";
|
|
85
|
+
export type AuthorizerType = "CUSTOM_JWT" | "AWS_IAM" | "NONE";
|
|
81
86
|
/**
|
|
82
87
|
* Type definition for `AWS::BedrockAgentCore::Gateway.CustomJWTAuthorizerConfiguration`.
|
|
83
88
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-customjwtauthorizerconfiguration.html}
|
|
@@ -101,6 +106,24 @@ export type CustomJWTAuthorizerConfiguration = {
|
|
|
101
106
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-exceptionlevel.html}
|
|
102
107
|
*/
|
|
103
108
|
export type ExceptionLevel = "DEBUG";
|
|
109
|
+
/**
|
|
110
|
+
* Type definition for `AWS::BedrockAgentCore::Gateway.GatewayInterceptionPoint`.
|
|
111
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-gatewayinterceptionpoint.html}
|
|
112
|
+
*/
|
|
113
|
+
export type GatewayInterceptionPoint = "REQUEST" | "RESPONSE";
|
|
114
|
+
/**
|
|
115
|
+
* Type definition for `AWS::BedrockAgentCore::Gateway.GatewayInterceptorConfiguration`.
|
|
116
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-gatewayinterceptorconfiguration.html}
|
|
117
|
+
*/
|
|
118
|
+
export type GatewayInterceptorConfiguration = {
|
|
119
|
+
InputConfiguration?: InterceptorInputConfiguration;
|
|
120
|
+
/**
|
|
121
|
+
* @minLength `1`
|
|
122
|
+
* @maxLength `2`
|
|
123
|
+
*/
|
|
124
|
+
InterceptionPoints: GatewayInterceptionPoint[];
|
|
125
|
+
Interceptor: InterceptorConfiguration;
|
|
126
|
+
};
|
|
104
127
|
/**
|
|
105
128
|
* Type definition for `AWS::BedrockAgentCore::Gateway.GatewayProtocolConfiguration`.
|
|
106
129
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-gatewayprotocolconfiguration.html}
|
|
@@ -118,6 +141,32 @@ export type GatewayProtocolType = "MCP";
|
|
|
118
141
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-gatewaystatus.html}
|
|
119
142
|
*/
|
|
120
143
|
export type GatewayStatus = "CREATING" | "UPDATING" | "UPDATE_UNSUCCESSFUL" | "DELETING" | "READY" | "FAILED";
|
|
144
|
+
/**
|
|
145
|
+
* Type definition for `AWS::BedrockAgentCore::Gateway.InterceptorConfiguration`.
|
|
146
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-interceptorconfiguration.html}
|
|
147
|
+
*/
|
|
148
|
+
export type InterceptorConfiguration = {
|
|
149
|
+
Lambda: LambdaInterceptorConfiguration;
|
|
150
|
+
};
|
|
151
|
+
/**
|
|
152
|
+
* Type definition for `AWS::BedrockAgentCore::Gateway.InterceptorInputConfiguration`.
|
|
153
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-interceptorinputconfiguration.html}
|
|
154
|
+
*/
|
|
155
|
+
export type InterceptorInputConfiguration = {
|
|
156
|
+
PassRequestHeaders: boolean;
|
|
157
|
+
};
|
|
158
|
+
/**
|
|
159
|
+
* Type definition for `AWS::BedrockAgentCore::Gateway.LambdaInterceptorConfiguration`.
|
|
160
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-lambdainterceptorconfiguration.html}
|
|
161
|
+
*/
|
|
162
|
+
export type LambdaInterceptorConfiguration = {
|
|
163
|
+
/**
|
|
164
|
+
* @minLength `1`
|
|
165
|
+
* @maxLength `170`
|
|
166
|
+
* @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-_]+))?$`
|
|
167
|
+
*/
|
|
168
|
+
Arn: string;
|
|
169
|
+
};
|
|
121
170
|
/**
|
|
122
171
|
* Type definition for `AWS::BedrockAgentCore::Gateway.MCPGatewayConfiguration`.
|
|
123
172
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-mcpgatewayconfiguration.html}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
|
|
3
3
|
/**
|
|
4
|
-
* Resource
|
|
4
|
+
* Resource type definition for AWS::DAX::SubnetGroup
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-subnetgroup.html}
|
|
6
6
|
*/
|
|
7
7
|
export type DAXSubnetGroupProperties = {
|
|
@@ -10,17 +10,10 @@ export type DAXSubnetGroupProperties = {
|
|
|
10
10
|
SubnetIds: string[];
|
|
11
11
|
};
|
|
12
12
|
/**
|
|
13
|
-
*
|
|
14
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-subnetgroup.html#aws-resource-dax-subnetgroup-return-values}
|
|
15
|
-
*/
|
|
16
|
-
export type DAXSubnetGroupAttributes = {
|
|
17
|
-
Id: string;
|
|
18
|
-
};
|
|
19
|
-
/**
|
|
20
|
-
* Resource Type definition for AWS::DAX::SubnetGroup
|
|
13
|
+
* Resource type definition for AWS::DAX::SubnetGroup
|
|
21
14
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-subnetgroup.html}
|
|
22
15
|
*/
|
|
23
|
-
export declare class DAXSubnetGroup extends $Resource<"AWS::DAX::SubnetGroup", DAXSubnetGroupProperties,
|
|
16
|
+
export declare class DAXSubnetGroup extends $Resource<"AWS::DAX::SubnetGroup", DAXSubnetGroupProperties, Record<string, never>> {
|
|
24
17
|
static readonly Type = "AWS::DAX::SubnetGroup";
|
|
25
18
|
constructor(logicalId: string, properties: DAXSubnetGroupProperties, options?: $ResourceOptions);
|
|
26
19
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
/**
|
|
3
|
-
* Resource
|
|
3
|
+
* Resource type definition for AWS::DAX::SubnetGroup
|
|
4
4
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-subnetgroup.html}
|
|
5
5
|
*/
|
|
6
6
|
export class DAXSubnetGroup extends $Resource {
|
|
@@ -45,7 +45,7 @@ export type DataSyncAgentAttributes = {
|
|
|
45
45
|
/**
|
|
46
46
|
* The DataSync Agent ARN.
|
|
47
47
|
* @maxLength `128`
|
|
48
|
-
* @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}$`
|
|
48
|
+
* @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}$`
|
|
49
49
|
*/
|
|
50
50
|
AgentArn: string;
|
|
51
51
|
/**
|
|
@@ -65,14 +65,14 @@ export type DataSyncLocationAzureBlobAttributes = {
|
|
|
65
65
|
/**
|
|
66
66
|
* Specifies the ARN for an AWS Secrets Manager secret, managed by DataSync.
|
|
67
67
|
* @maxLength `2048`
|
|
68
|
-
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
|
|
68
|
+
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
|
|
69
69
|
*/
|
|
70
70
|
SecretArn: string;
|
|
71
71
|
};
|
|
72
72
|
/**
|
|
73
73
|
* The Amazon Resource Name (ARN) of the Azure Blob Location that is created.
|
|
74
74
|
* @maxLength `128`
|
|
75
|
-
* @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}$`
|
|
75
|
+
* @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}$`
|
|
76
76
|
*/
|
|
77
77
|
LocationArn: string;
|
|
78
78
|
/**
|
|
@@ -88,7 +88,7 @@ export type DataSyncLocationAzureBlobAttributes = {
|
|
|
88
88
|
/**
|
|
89
89
|
* Specifies the ARN for an AWS Secrets Manager secret.
|
|
90
90
|
* @maxLength `2048`
|
|
91
|
-
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
|
|
91
|
+
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
|
|
92
92
|
*/
|
|
93
93
|
SecretArn: string;
|
|
94
94
|
};
|
|
@@ -116,7 +116,7 @@ export type CmkSecretConfig = {
|
|
|
116
116
|
/**
|
|
117
117
|
* 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.
|
|
118
118
|
* @maxLength `2048`
|
|
119
|
-
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):kms:[a-z-0-9]+:[0-9]{12}:key/.*|)$`
|
|
119
|
+
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):kms:[a-z-0-9]+:[0-9]{12}:key/.*|)$`
|
|
120
120
|
*/
|
|
121
121
|
KmsKeyArn?: string;
|
|
122
122
|
};
|
|
@@ -129,13 +129,13 @@ export type CustomSecretConfig = {
|
|
|
129
129
|
/**
|
|
130
130
|
* Specifies the ARN for the AWS Identity and Access Management role that DataSync uses to access the secret specified for SecretArn.
|
|
131
131
|
* @maxLength `2048`
|
|
132
|
-
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):iam::[0-9]{12}:role/.*|)$`
|
|
132
|
+
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):iam::[0-9]{12}:role/.*|)$`
|
|
133
133
|
*/
|
|
134
134
|
SecretAccessRoleArn: string;
|
|
135
135
|
/**
|
|
136
136
|
* Specifies the ARN for a customer created AWS Secrets Manager secret.
|
|
137
137
|
* @maxLength `2048`
|
|
138
|
-
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
|
|
138
|
+
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
|
|
139
139
|
*/
|
|
140
140
|
SecretArn: string;
|
|
141
141
|
};
|
|
@@ -148,7 +148,7 @@ export type ManagedSecretConfig = {
|
|
|
148
148
|
/**
|
|
149
149
|
* Specifies the ARN for an AWS Secrets Manager secret.
|
|
150
150
|
* @maxLength `2048`
|
|
151
|
-
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
|
|
151
|
+
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
|
|
152
152
|
*/
|
|
153
153
|
SecretArn: string;
|
|
154
154
|
};
|
|
@@ -8,7 +8,7 @@ export type DataSyncLocationEFSProperties = {
|
|
|
8
8
|
/**
|
|
9
9
|
* The Amazon Resource Name (ARN) for the Amazon EFS Access point that DataSync uses when accessing the EFS file system.
|
|
10
10
|
* @maxLength `128`
|
|
11
|
-
* @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}$`
|
|
11
|
+
* @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}$`
|
|
12
12
|
*/
|
|
13
13
|
AccessPointArn?: string;
|
|
14
14
|
/**
|
|
@@ -18,13 +18,13 @@ export type DataSyncLocationEFSProperties = {
|
|
|
18
18
|
/**
|
|
19
19
|
* The Amazon Resource Name (ARN) for the Amazon EFS file system.
|
|
20
20
|
* @maxLength `128`
|
|
21
|
-
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):elasticfilesystem:[a-z\-0-9]*:[0-9]{12}:file-system/fs-.*$`
|
|
21
|
+
* @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-.*$`
|
|
22
22
|
*/
|
|
23
23
|
EfsFilesystemArn?: string;
|
|
24
24
|
/**
|
|
25
25
|
* The Amazon Resource Name (ARN) of the AWS IAM role that the DataSync will assume when mounting the EFS file system.
|
|
26
26
|
* @maxLength `128`
|
|
27
|
-
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):iam::[0-9]{12}:role/.*$`
|
|
27
|
+
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):iam::[0-9]{12}:role/.*$`
|
|
28
28
|
*/
|
|
29
29
|
FileSystemAccessRoleArn?: string;
|
|
30
30
|
/**
|
|
@@ -51,7 +51,7 @@ export type DataSyncLocationEFSAttributes = {
|
|
|
51
51
|
/**
|
|
52
52
|
* The Amazon Resource Name (ARN) of the Amazon EFS file system location that is created.
|
|
53
53
|
* @maxLength `128`
|
|
54
|
-
* @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}$`
|
|
54
|
+
* @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}$`
|
|
55
55
|
*/
|
|
56
56
|
LocationArn: string;
|
|
57
57
|
/**
|
|
@@ -76,7 +76,7 @@ export type Ec2Config = {
|
|
|
76
76
|
/**
|
|
77
77
|
* The ARN of the subnet that DataSync uses to access the target EFS file system.
|
|
78
78
|
* @maxLength `128`
|
|
79
|
-
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):ec2:[a-z\-0-9]*:[0-9]{12}:subnet/.*$`
|
|
79
|
+
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):ec2:[a-z\-0-9]*:[0-9]{12}:subnet/.*$`
|
|
80
80
|
*/
|
|
81
81
|
SubnetArn: string;
|
|
82
82
|
};
|
|
@@ -8,7 +8,7 @@ export type DataSyncLocationFSxLustreProperties = {
|
|
|
8
8
|
/**
|
|
9
9
|
* The Amazon Resource Name (ARN) for the FSx for Lustre file system.
|
|
10
10
|
* @maxLength `128`
|
|
11
|
-
* @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]+$`
|
|
11
|
+
* @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]+$`
|
|
12
12
|
*/
|
|
13
13
|
FsxFilesystemArn?: string;
|
|
14
14
|
/**
|
|
@@ -38,7 +38,7 @@ export type DataSyncLocationFSxLustreAttributes = {
|
|
|
38
38
|
/**
|
|
39
39
|
* The Amazon Resource Name (ARN) of the Amazon FSx for Lustre file system location that is created.
|
|
40
40
|
* @maxLength `128`
|
|
41
|
-
* @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}$`
|
|
41
|
+
* @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}$`
|
|
42
42
|
*/
|
|
43
43
|
LocationArn: string;
|
|
44
44
|
/**
|
|
@@ -18,7 +18,7 @@ export type DataSyncLocationFSxONTAPProperties = {
|
|
|
18
18
|
/**
|
|
19
19
|
* The Amazon Resource Name (ARN) for the FSx ONTAP SVM.
|
|
20
20
|
* @maxLength `162`
|
|
21
|
-
* @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,}$`
|
|
21
|
+
* @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,}$`
|
|
22
22
|
*/
|
|
23
23
|
StorageVirtualMachineArn: string;
|
|
24
24
|
/**
|
|
@@ -42,13 +42,13 @@ export type DataSyncLocationFSxONTAPAttributes = {
|
|
|
42
42
|
/**
|
|
43
43
|
* The Amazon Resource Name (ARN) for the FSx ONAP file system.
|
|
44
44
|
* @maxLength `128`
|
|
45
|
-
* @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]+$`
|
|
45
|
+
* @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]+$`
|
|
46
46
|
*/
|
|
47
47
|
FsxFilesystemArn: string;
|
|
48
48
|
/**
|
|
49
49
|
* The Amazon Resource Name (ARN) of the Amazon FSx ONTAP file system location that is created.
|
|
50
50
|
* @maxLength `128`
|
|
51
|
-
* @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}$`
|
|
51
|
+
* @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}$`
|
|
52
52
|
*/
|
|
53
53
|
LocationArn: string;
|
|
54
54
|
/**
|
|
@@ -8,7 +8,7 @@ export type DataSyncLocationFSxOpenZFSProperties = {
|
|
|
8
8
|
/**
|
|
9
9
|
* The Amazon Resource Name (ARN) for the FSx OpenZFS file system.
|
|
10
10
|
* @maxLength `128`
|
|
11
|
-
* @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]+$`
|
|
11
|
+
* @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]+$`
|
|
12
12
|
*/
|
|
13
13
|
FsxFilesystemArn?: string;
|
|
14
14
|
/**
|
|
@@ -42,7 +42,7 @@ export type DataSyncLocationFSxOpenZFSAttributes = {
|
|
|
42
42
|
/**
|
|
43
43
|
* The Amazon Resource Name (ARN) of the Amazon FSx OpenZFS file system location that is created.
|
|
44
44
|
* @maxLength `128`
|
|
45
|
-
* @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}$`
|
|
45
|
+
* @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}$`
|
|
46
46
|
*/
|
|
47
47
|
LocationArn: string;
|
|
48
48
|
/**
|
|
@@ -14,7 +14,7 @@ export type DataSyncLocationFSxWindowsProperties = {
|
|
|
14
14
|
/**
|
|
15
15
|
* The Amazon Resource Name (ARN) for the FSx for Windows file system.
|
|
16
16
|
* @maxLength `128`
|
|
17
|
-
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):fsx:[a-z\-0-9]*:[0-9]{12}:file-system/fs-.*$`
|
|
17
|
+
* @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-.*$`
|
|
18
18
|
*/
|
|
19
19
|
FsxFilesystemArn?: string;
|
|
20
20
|
/**
|
|
@@ -53,7 +53,7 @@ export type DataSyncLocationFSxWindowsAttributes = {
|
|
|
53
53
|
/**
|
|
54
54
|
* The Amazon Resource Name (ARN) of the Amazon FSx for Windows file system location that is created.
|
|
55
55
|
* @maxLength `128`
|
|
56
|
-
* @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}$`
|
|
56
|
+
* @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}$`
|
|
57
57
|
*/
|
|
58
58
|
LocationArn: string;
|
|
59
59
|
/**
|
|
@@ -87,7 +87,7 @@ export type DataSyncLocationHDFSAttributes = {
|
|
|
87
87
|
/**
|
|
88
88
|
* The Amazon Resource Name (ARN) of the HDFS location.
|
|
89
89
|
* @maxLength `128`
|
|
90
|
-
* @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}$`
|
|
90
|
+
* @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}$`
|
|
91
91
|
*/
|
|
92
92
|
LocationArn: string;
|
|
93
93
|
/**
|
|
@@ -39,7 +39,7 @@ export type DataSyncLocationNFSAttributes = {
|
|
|
39
39
|
/**
|
|
40
40
|
* The Amazon Resource Name (ARN) of the NFS location.
|
|
41
41
|
* @maxLength `128`
|
|
42
|
-
* @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}$`
|
|
42
|
+
* @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}$`
|
|
43
43
|
*/
|
|
44
44
|
LocationArn: string;
|
|
45
45
|
/**
|
|
@@ -69,7 +69,7 @@ export type OnPremConfig = {
|
|
|
69
69
|
/**
|
|
70
70
|
* ARN(s) of the agent(s) to use for an NFS location.
|
|
71
71
|
* @minLength `1`
|
|
72
|
-
* @maxLength `
|
|
72
|
+
* @maxLength `8`
|
|
73
73
|
*/
|
|
74
74
|
AgentArns: string[];
|
|
75
75
|
};
|
|
@@ -85,14 +85,14 @@ export type DataSyncLocationObjectStorageAttributes = {
|
|
|
85
85
|
/**
|
|
86
86
|
* Specifies the ARN for an AWS Secrets Manager secret, managed by DataSync.
|
|
87
87
|
* @maxLength `2048`
|
|
88
|
-
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
|
|
88
|
+
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
|
|
89
89
|
*/
|
|
90
90
|
SecretArn: string;
|
|
91
91
|
};
|
|
92
92
|
/**
|
|
93
93
|
* The Amazon Resource Name (ARN) of the location that is created.
|
|
94
94
|
* @maxLength `128`
|
|
95
|
-
* @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}$`
|
|
95
|
+
* @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}$`
|
|
96
96
|
*/
|
|
97
97
|
LocationArn: string;
|
|
98
98
|
/**
|
|
@@ -108,7 +108,7 @@ export type DataSyncLocationObjectStorageAttributes = {
|
|
|
108
108
|
/**
|
|
109
109
|
* Specifies the ARN for an AWS Secrets Manager secret.
|
|
110
110
|
* @maxLength `2048`
|
|
111
|
-
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
|
|
111
|
+
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
|
|
112
112
|
*/
|
|
113
113
|
SecretArn: string;
|
|
114
114
|
};
|
|
@@ -122,7 +122,7 @@ export type CmkSecretConfig = {
|
|
|
122
122
|
/**
|
|
123
123
|
* 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.
|
|
124
124
|
* @maxLength `2048`
|
|
125
|
-
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):kms:[a-z-0-9]+:[0-9]{12}:key/.*|)$`
|
|
125
|
+
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):kms:[a-z-0-9]+:[0-9]{12}:key/.*|)$`
|
|
126
126
|
*/
|
|
127
127
|
KmsKeyArn?: string;
|
|
128
128
|
};
|
|
@@ -135,13 +135,13 @@ export type CustomSecretConfig = {
|
|
|
135
135
|
/**
|
|
136
136
|
* Specifies the ARN for the AWS Identity and Access Management role that DataSync uses to access the secret specified for SecretArn.
|
|
137
137
|
* @maxLength `2048`
|
|
138
|
-
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):iam::[0-9]{12}:role/.*|)$`
|
|
138
|
+
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):iam::[0-9]{12}:role/.*|)$`
|
|
139
139
|
*/
|
|
140
140
|
SecretAccessRoleArn: string;
|
|
141
141
|
/**
|
|
142
142
|
* Specifies the ARN for a customer created AWS Secrets Manager secret.
|
|
143
143
|
* @maxLength `2048`
|
|
144
|
-
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
|
|
144
|
+
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
|
|
145
145
|
*/
|
|
146
146
|
SecretArn: string;
|
|
147
147
|
};
|
|
@@ -154,7 +154,7 @@ export type ManagedSecretConfig = {
|
|
|
154
154
|
/**
|
|
155
155
|
* Specifies the ARN for an AWS Secrets Manager secret.
|
|
156
156
|
* @maxLength `2048`
|
|
157
|
-
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
|
|
157
|
+
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
|
|
158
158
|
*/
|
|
159
159
|
SecretArn: string;
|
|
160
160
|
};
|
|
@@ -8,7 +8,7 @@ export type DataSyncLocationS3Properties = {
|
|
|
8
8
|
/**
|
|
9
9
|
* The Amazon Resource Name (ARN) of the Amazon S3 bucket.
|
|
10
10
|
* @maxLength `156`
|
|
11
|
-
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):s3:[a-z\-0-9]*:[0-9]*:.*$`
|
|
11
|
+
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):s3:[a-z\-0-9]*:[0-9]*:.*$`
|
|
12
12
|
*/
|
|
13
13
|
S3BucketArn?: string;
|
|
14
14
|
/**
|
|
@@ -39,7 +39,7 @@ export type DataSyncLocationS3Attributes = {
|
|
|
39
39
|
/**
|
|
40
40
|
* The Amazon Resource Name (ARN) of the Amazon S3 bucket location.
|
|
41
41
|
* @maxLength `128`
|
|
42
|
-
* @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}$`
|
|
42
|
+
* @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}$`
|
|
43
43
|
*/
|
|
44
44
|
LocationArn: string;
|
|
45
45
|
/**
|
|
@@ -58,7 +58,7 @@ export type S3Config = {
|
|
|
58
58
|
/**
|
|
59
59
|
* The ARN of the IAM role of the Amazon S3 bucket.
|
|
60
60
|
* @maxLength `2048`
|
|
61
|
-
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):iam::[0-9]{12}:role/.*$`
|
|
61
|
+
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):iam::[0-9]{12}:role/.*$`
|
|
62
62
|
*/
|
|
63
63
|
BucketAccessRoleArn: string;
|
|
64
64
|
};
|
|
@@ -8,7 +8,7 @@ export type DataSyncLocationSMBProperties = {
|
|
|
8
8
|
/**
|
|
9
9
|
* The Amazon Resource Names (ARNs) of agents to use for a Simple Message Block (SMB) location.
|
|
10
10
|
* @minLength `1`
|
|
11
|
-
* @maxLength `
|
|
11
|
+
* @maxLength `8`
|
|
12
12
|
*/
|
|
13
13
|
AgentArns: string[];
|
|
14
14
|
/**
|
|
@@ -97,14 +97,14 @@ export type DataSyncLocationSMBAttributes = {
|
|
|
97
97
|
/**
|
|
98
98
|
* Specifies the ARN for an AWS Secrets Manager secret, managed by DataSync.
|
|
99
99
|
* @maxLength `2048`
|
|
100
|
-
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
|
|
100
|
+
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
|
|
101
101
|
*/
|
|
102
102
|
SecretArn: string;
|
|
103
103
|
};
|
|
104
104
|
/**
|
|
105
105
|
* The Amazon Resource Name (ARN) of the SMB location that is created.
|
|
106
106
|
* @maxLength `128`
|
|
107
|
-
* @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}$`
|
|
107
|
+
* @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}$`
|
|
108
108
|
*/
|
|
109
109
|
LocationArn: string;
|
|
110
110
|
/**
|
|
@@ -120,7 +120,7 @@ export type DataSyncLocationSMBAttributes = {
|
|
|
120
120
|
/**
|
|
121
121
|
* Specifies the ARN for an AWS Secrets Manager secret.
|
|
122
122
|
* @maxLength `2048`
|
|
123
|
-
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
|
|
123
|
+
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
|
|
124
124
|
*/
|
|
125
125
|
SecretArn: string;
|
|
126
126
|
};
|
|
@@ -134,7 +134,7 @@ export type CmkSecretConfig = {
|
|
|
134
134
|
/**
|
|
135
135
|
* 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.
|
|
136
136
|
* @maxLength `2048`
|
|
137
|
-
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):kms:[a-z-0-9]+:[0-9]{12}:key/.*|)$`
|
|
137
|
+
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):kms:[a-z-0-9]+:[0-9]{12}:key/.*|)$`
|
|
138
138
|
*/
|
|
139
139
|
KmsKeyArn?: string;
|
|
140
140
|
};
|
|
@@ -147,13 +147,13 @@ export type CustomSecretConfig = {
|
|
|
147
147
|
/**
|
|
148
148
|
* Specifies the ARN for the AWS Identity and Access Management role that DataSync uses to access the secret specified for SecretArn.
|
|
149
149
|
* @maxLength `2048`
|
|
150
|
-
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):iam::[0-9]{12}:role/.*|)$`
|
|
150
|
+
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):iam::[0-9]{12}:role/.*|)$`
|
|
151
151
|
*/
|
|
152
152
|
SecretAccessRoleArn: string;
|
|
153
153
|
/**
|
|
154
154
|
* Specifies the ARN for a customer created AWS Secrets Manager secret.
|
|
155
155
|
* @maxLength `2048`
|
|
156
|
-
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
|
|
156
|
+
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
|
|
157
157
|
*/
|
|
158
158
|
SecretArn: string;
|
|
159
159
|
};
|
|
@@ -166,7 +166,7 @@ export type ManagedSecretConfig = {
|
|
|
166
166
|
/**
|
|
167
167
|
* Specifies the ARN for an AWS Secrets Manager secret.
|
|
168
168
|
* @maxLength `2048`
|
|
169
|
-
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
|
|
169
|
+
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
|
|
170
170
|
*/
|
|
171
171
|
SecretArn: string;
|
|
172
172
|
};
|
|
@@ -8,13 +8,13 @@ export type DataSyncTaskProperties = {
|
|
|
8
8
|
/**
|
|
9
9
|
* The ARN of the Amazon CloudWatch log group that is used to monitor and log events in the task.
|
|
10
10
|
* @maxLength `562`
|
|
11
|
-
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):logs:[a-z\-0-9]*:[0-9]{12}:log-group:([^:\*]*)(:\*)?$`
|
|
11
|
+
* @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:([^:\*]*)(:\*)?$`
|
|
12
12
|
*/
|
|
13
13
|
CloudWatchLogGroupArn?: string;
|
|
14
14
|
/**
|
|
15
15
|
* The ARN of an AWS storage resource's location.
|
|
16
16
|
* @maxLength `128`
|
|
17
|
-
* @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}$`
|
|
17
|
+
* @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}$`
|
|
18
18
|
*/
|
|
19
19
|
DestinationLocationArn: string;
|
|
20
20
|
/**
|
|
@@ -49,7 +49,7 @@ export type DataSyncTaskProperties = {
|
|
|
49
49
|
/**
|
|
50
50
|
* The ARN of the source location for the task.
|
|
51
51
|
* @maxLength `128`
|
|
52
|
-
* @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}$`
|
|
52
|
+
* @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}$`
|
|
53
53
|
*/
|
|
54
54
|
SourceLocationArn: string;
|
|
55
55
|
/**
|
|
@@ -88,7 +88,7 @@ export type DataSyncTaskAttributes = {
|
|
|
88
88
|
/**
|
|
89
89
|
* The ARN of the task.
|
|
90
90
|
* @maxLength `128`
|
|
91
|
-
* @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}$`
|
|
91
|
+
* @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}$`
|
|
92
92
|
*/
|
|
93
93
|
TaskArn: string;
|
|
94
94
|
};
|
|
@@ -144,7 +144,7 @@ export type ManifestConfigSourceS3 = {
|
|
|
144
144
|
/**
|
|
145
145
|
* Specifies the AWS Identity and Access Management (IAM) role that allows DataSync to access your manifest.
|
|
146
146
|
* @maxLength `2048`
|
|
147
|
-
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):iam::[0-9]{12}:role/.*$`
|
|
147
|
+
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):iam::[0-9]{12}:role/.*$`
|
|
148
148
|
*/
|
|
149
149
|
BucketAccessRoleArn?: string;
|
|
150
150
|
/**
|
|
@@ -162,7 +162,7 @@ export type ManifestConfigSourceS3 = {
|
|
|
162
162
|
/**
|
|
163
163
|
* Specifies the Amazon Resource Name (ARN) of the S3 bucket where you're hosting your manifest.
|
|
164
164
|
* @maxLength `156`
|
|
165
|
-
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):(s3|s3-outposts):[a-z\-0-9]*:[0-9]*:.*$`
|
|
165
|
+
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):(s3|s3-outposts):[a-z\-0-9]*:[0-9]*:.*$`
|
|
166
166
|
*/
|
|
167
167
|
S3BucketArn?: string;
|
|
168
168
|
};
|
|
@@ -333,13 +333,13 @@ export type TaskReportConfigDestinationS3 = {
|
|
|
333
333
|
/**
|
|
334
334
|
* Specifies the Amazon Resource Name (ARN) of the IAM policy that allows Datasync to upload a task report to your S3 bucket.
|
|
335
335
|
* @maxLength `2048`
|
|
336
|
-
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):iam::[0-9]{12}:role/.*$`
|
|
336
|
+
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):iam::[0-9]{12}:role/.*$`
|
|
337
337
|
*/
|
|
338
338
|
BucketAccessRoleArn?: string;
|
|
339
339
|
/**
|
|
340
340
|
* Specifies the ARN of the S3 bucket where Datasync uploads your report.
|
|
341
341
|
* @maxLength `156`
|
|
342
|
-
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):(s3|s3-outposts):[a-z\-0-9]*:[0-9]*:.*$`
|
|
342
|
+
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):(s3|s3-outposts):[a-z\-0-9]*:[0-9]*:.*$`
|
|
343
343
|
*/
|
|
344
344
|
S3BucketArn?: string;
|
|
345
345
|
/**
|
|
@@ -1,22 +1,26 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
|
|
3
3
|
/**
|
|
4
|
-
* Resource
|
|
4
|
+
* Resource type definition for `AWS::EC2::NetworkInterfaceAttachment`.
|
|
5
|
+
* 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.
|
|
5
6
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfaceattachment.html}
|
|
6
7
|
*/
|
|
7
8
|
export type EC2NetworkInterfaceAttachmentProperties = {
|
|
8
9
|
/**
|
|
9
|
-
* Whether to delete the network interface when the instance terminates. By default, this value is set to true
|
|
10
|
+
* Whether to delete the network interface when the instance terminates. By default, this value is set to ``true``.
|
|
10
11
|
*/
|
|
11
12
|
DeleteOnTermination?: boolean;
|
|
12
13
|
/**
|
|
13
|
-
* The network interface's position in the attachment order. For example, the first attached network interface has a DeviceIndex of 0.
|
|
14
|
+
* The network interface's position in the attachment order. For example, the first attached network interface has a ``DeviceIndex`` of 0.
|
|
14
15
|
*/
|
|
15
16
|
DeviceIndex: string;
|
|
16
17
|
/**
|
|
17
|
-
* The number of ENA queues
|
|
18
|
+
* The number of ENA queues created with the instance.
|
|
18
19
|
*/
|
|
19
20
|
EnaQueueCount?: number;
|
|
21
|
+
/**
|
|
22
|
+
* Configures ENA Express for the network interface that this action attaches to the instance.
|
|
23
|
+
*/
|
|
20
24
|
EnaSrdSpecification?: EnaSrdSpecification;
|
|
21
25
|
/**
|
|
22
26
|
* The ID of the instance to which you will attach the ENI.
|
|
@@ -32,23 +36,29 @@ export type EC2NetworkInterfaceAttachmentProperties = {
|
|
|
32
36
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfaceattachment.html#aws-resource-ec2-networkinterfaceattachment-return-values}
|
|
33
37
|
*/
|
|
34
38
|
export type EC2NetworkInterfaceAttachmentAttributes = {
|
|
35
|
-
/**
|
|
36
|
-
* The ID of the network interface attachment.
|
|
37
|
-
*/
|
|
38
39
|
AttachmentId: string;
|
|
39
40
|
};
|
|
40
41
|
/**
|
|
41
42
|
* Type definition for `AWS::EC2::NetworkInterfaceAttachment.EnaSrdSpecification`.
|
|
43
|
+
* 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.
|
|
44
|
+
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.
|
|
42
45
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkinterfaceattachment-enasrdspecification.html}
|
|
43
46
|
*/
|
|
44
47
|
export type EnaSrdSpecification = {
|
|
48
|
+
/**
|
|
49
|
+
* Indicates whether ENA Express is enabled for the network interface.
|
|
50
|
+
*/
|
|
45
51
|
EnaSrdEnabled?: boolean;
|
|
52
|
+
/**
|
|
53
|
+
* Configures ENA Express for UDP network traffic.
|
|
54
|
+
*/
|
|
46
55
|
EnaSrdUdpSpecification?: {
|
|
47
56
|
EnaSrdUdpEnabled?: boolean;
|
|
48
57
|
};
|
|
49
58
|
};
|
|
50
59
|
/**
|
|
51
|
-
* Resource
|
|
60
|
+
* Resource type definition for `AWS::EC2::NetworkInterfaceAttachment`.
|
|
61
|
+
* 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.
|
|
52
62
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfaceattachment.html}
|
|
53
63
|
*/
|
|
54
64
|
export declare class EC2NetworkInterfaceAttachment extends $Resource<"AWS::EC2::NetworkInterfaceAttachment", EC2NetworkInterfaceAttachmentProperties, EC2NetworkInterfaceAttachmentAttributes> {
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
/**
|
|
3
|
-
* Resource
|
|
3
|
+
* Resource type definition for `AWS::EC2::NetworkInterfaceAttachment`.
|
|
4
|
+
* 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.
|
|
4
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfaceattachment.html}
|
|
5
6
|
*/
|
|
6
7
|
export class EC2NetworkInterfaceAttachment extends $Resource {
|
|
@@ -39,7 +39,7 @@ export type RepositoryFilter = {
|
|
|
39
39
|
* Repository name pattern (supports '*' wildcard).
|
|
40
40
|
* @minLength `1`
|
|
41
41
|
* @maxLength `256`
|
|
42
|
-
* @pattern `^(
|
|
42
|
+
* @pattern `^(?:[a-z0-9*]+(?:[._-][a-z0-9*]+)/*)*[a-z0-9*]+(?:[._-][a-z0-9*]+)*$`
|
|
43
43
|
*/
|
|
44
44
|
Filter: string;
|
|
45
45
|
/**
|