@awboost/cfn-resource-types 0.1.472 → 0.1.473
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.
|
@@ -32,7 +32,7 @@ export type AppConfigDeploymentProperties = {
|
|
|
32
32
|
EnvironmentId: string;
|
|
33
33
|
/**
|
|
34
34
|
* The AWS Key Management Service key identifier (key ID, key alias, or key ARN) provided when the resource was created or updated.
|
|
35
|
-
* @pattern `^[\da-f]{8}-[\da-f]{4}-[\da-f]{4}-[\da-f]{4}-[\da-f]{12}|alias/[a-zA-Z0-9/_-]{1,250}|arn:aws[a-zA-Z-]*:kms:[a-z]{2}(-gov
|
|
35
|
+
* @pattern `^[\da-f]{8}-[\da-f]{4}-[\da-f]{4}-[\da-f]{4}-[\da-f]{12}|alias/[a-zA-Z0-9/_-]{1,250}|arn:aws[a-zA-Z-]*:kms:((eusc-)?[a-z]{2}((-gov)|(-iso([a-z]?)))?-[a-z]+-\d{1})?:(key/[0-9a-f-]{36}|alias/[a-zA-Z0-9/_-]{1,250})$`
|
|
36
36
|
*/
|
|
37
37
|
KmsKeyIdentifier?: string;
|
|
38
38
|
/**
|
|
@@ -12,6 +12,7 @@ export type EC2TransitGatewayProperties = {
|
|
|
12
12
|
DefaultRouteTablePropagation?: string;
|
|
13
13
|
Description?: string;
|
|
14
14
|
DnsSupport?: string;
|
|
15
|
+
EncryptionSupport?: "disable" | "enable";
|
|
15
16
|
MulticastSupport?: string;
|
|
16
17
|
PropagationDefaultRouteTableId?: string;
|
|
17
18
|
SecurityGroupReferencingSupport?: string;
|
|
@@ -24,6 +25,7 @@ export type EC2TransitGatewayProperties = {
|
|
|
24
25
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgateway.html#aws-resource-ec2-transitgateway-return-values}
|
|
25
26
|
*/
|
|
26
27
|
export type EC2TransitGatewayAttributes = {
|
|
28
|
+
EncryptionSupportState: string;
|
|
27
29
|
Id: string;
|
|
28
30
|
TransitGatewayArn: string;
|
|
29
31
|
};
|
|
@@ -33,6 +33,10 @@ export type S3TablesTableProperties = {
|
|
|
33
33
|
* The name for the table.
|
|
34
34
|
*/
|
|
35
35
|
TableName: string;
|
|
36
|
+
/**
|
|
37
|
+
* User tags (key-value pairs) to associate with the table.
|
|
38
|
+
*/
|
|
39
|
+
Tags?: Tag[];
|
|
36
40
|
/**
|
|
37
41
|
* Indicates that you don't want to specify a schema for the table. This property is mutually exclusive to 'IcebergMetadata', and its only possible value is 'Yes'.
|
|
38
42
|
*/
|
|
@@ -140,6 +144,23 @@ export type SnapshotManagement = {
|
|
|
140
144
|
*/
|
|
141
145
|
Status?: "enabled" | "disabled";
|
|
142
146
|
};
|
|
147
|
+
/**
|
|
148
|
+
* Type definition for `AWS::S3Tables::Table.Tag`.
|
|
149
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3tables-table-tag.html}
|
|
150
|
+
*/
|
|
151
|
+
export type Tag = {
|
|
152
|
+
/**
|
|
153
|
+
* Tag key must be between 1 to 128 characters in length. Tag key cannot start with 'aws:' and can only contain alphanumeric characters, spaces, _, ., /, =, +, -, and @.
|
|
154
|
+
* @minLength `1`
|
|
155
|
+
* @maxLength `128`
|
|
156
|
+
*/
|
|
157
|
+
Key: string;
|
|
158
|
+
/**
|
|
159
|
+
* Tag value must be between 0 to 256 characters in length. Tag value can only contain alphanumeric characters, spaces, _, ., /, =, +, -, and @.
|
|
160
|
+
* @maxLength `256`
|
|
161
|
+
*/
|
|
162
|
+
Value: string;
|
|
163
|
+
};
|
|
143
164
|
/**
|
|
144
165
|
* Type definition for `AWS::S3Tables::Table.WithoutMetadata`.
|
|
145
166
|
* Indicates that you don't want to specify a schema for the table. This property is mutually exclusive to 'IcebergMetadata', and its only possible value is 'Yes'.
|
|
@@ -16,6 +16,10 @@ export type S3TablesTableBucketProperties = {
|
|
|
16
16
|
* @maxLength `63`
|
|
17
17
|
*/
|
|
18
18
|
TableBucketName: string;
|
|
19
|
+
/**
|
|
20
|
+
* User tags (key-value pairs) to associate with the table bucket.
|
|
21
|
+
*/
|
|
22
|
+
Tags?: Tag[];
|
|
19
23
|
/**
|
|
20
24
|
* Settings governing the Unreferenced File Removal maintenance action. Unreferenced file removal identifies and deletes all objects that are not referenced by any table snapshots.
|
|
21
25
|
*/
|
|
@@ -46,6 +50,23 @@ export type EncryptionConfiguration = {
|
|
|
46
50
|
*/
|
|
47
51
|
SSEAlgorithm?: "AES256" | "aws:kms";
|
|
48
52
|
};
|
|
53
|
+
/**
|
|
54
|
+
* Type definition for `AWS::S3Tables::TableBucket.Tag`.
|
|
55
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3tables-tablebucket-tag.html}
|
|
56
|
+
*/
|
|
57
|
+
export type Tag = {
|
|
58
|
+
/**
|
|
59
|
+
* Tag key must be between 1 to 128 characters in length. Tag key cannot start with 'aws:' and can only contain alphanumeric characters, spaces, _, ., /, =, +, -, and @.
|
|
60
|
+
* @minLength `1`
|
|
61
|
+
* @maxLength `128`
|
|
62
|
+
*/
|
|
63
|
+
Key: string;
|
|
64
|
+
/**
|
|
65
|
+
* Tag value must be between 0 to 256 characters in length. Tag value can only contain alphanumeric characters, spaces, _, ., /, =, +, -, and @.
|
|
66
|
+
* @maxLength `256`
|
|
67
|
+
*/
|
|
68
|
+
Value: string;
|
|
69
|
+
};
|
|
49
70
|
/**
|
|
50
71
|
* Type definition for `AWS::S3Tables::TableBucket.UnreferencedFileRemoval`.
|
|
51
72
|
* Settings governing the Unreferenced File Removal maintenance action. Unreferenced file removal identifies and deletes all objects that are not referenced by any table snapshots.
|