@awboost/cfn-resource-types 0.1.212 → 0.1.214

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.
@@ -0,0 +1,144 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
3
+ /**
4
+ * AWS::NetworkManager::DirectConnectGatewayAttachment Resource Type
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-directconnectgatewayattachment.html}
6
+ */
7
+ export type NetworkManagerDirectConnectGatewayAttachmentProperties = {
8
+ /**
9
+ * The ID of a core network for the Direct Connect Gateway attachment.
10
+ */
11
+ CoreNetworkId: string;
12
+ /**
13
+ * The ARN of the Direct Connect Gateway.
14
+ */
15
+ DirectConnectGatewayArn: string;
16
+ /**
17
+ * The Regions where the edges are located.
18
+ */
19
+ EdgeLocations: string[];
20
+ /**
21
+ * The attachment to move from one network function group to another.
22
+ */
23
+ ProposedNetworkFunctionGroupChange?: ProposedNetworkFunctionGroupChange;
24
+ /**
25
+ * The attachment to move from one segment to another.
26
+ */
27
+ ProposedSegmentChange?: ProposedSegmentChange;
28
+ /**
29
+ * Tags for the attachment.
30
+ */
31
+ Tags?: Tag[];
32
+ };
33
+ /**
34
+ * Attribute type definition for `AWS::NetworkManager::DirectConnectGatewayAttachment`.
35
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-directconnectgatewayattachment.html#aws-resource-networkmanager-directconnectgatewayattachment-return-values}
36
+ */
37
+ export type NetworkManagerDirectConnectGatewayAttachmentAttributes = {
38
+ /**
39
+ * Id of the attachment.
40
+ */
41
+ AttachmentId: string;
42
+ /**
43
+ * The policy rule number associated with the attachment.
44
+ */
45
+ AttachmentPolicyRuleNumber: number;
46
+ /**
47
+ * Attachment type.
48
+ */
49
+ AttachmentType: string;
50
+ /**
51
+ * The ARN of a core network for the Direct Connect Gateway attachment.
52
+ */
53
+ CoreNetworkArn: string;
54
+ /**
55
+ * Creation time of the attachment.
56
+ */
57
+ CreatedAt: string;
58
+ /**
59
+ * The name of the network function group attachment.
60
+ */
61
+ NetworkFunctionGroupName: string;
62
+ /**
63
+ * Owner account of the attachment.
64
+ */
65
+ OwnerAccountId: string;
66
+ /**
67
+ * The ARN of the Resource.
68
+ */
69
+ ResourceArn: string;
70
+ /**
71
+ * The name of the segment attachment..
72
+ */
73
+ SegmentName: string;
74
+ /**
75
+ * State of the attachment.
76
+ */
77
+ State: string;
78
+ /**
79
+ * Last update time of the attachment.
80
+ */
81
+ UpdatedAt: string;
82
+ };
83
+ /**
84
+ * Type definition for `AWS::NetworkManager::DirectConnectGatewayAttachment.ProposedNetworkFunctionGroupChange`.
85
+ * The attachment to move from one network function group to another.
86
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-directconnectgatewayattachment-proposednetworkfunctiongroupchange.html}
87
+ */
88
+ export type ProposedNetworkFunctionGroupChange = {
89
+ /**
90
+ * The rule number in the policy document that applies to this change.
91
+ */
92
+ AttachmentPolicyRuleNumber?: number;
93
+ /**
94
+ * The name of the network function group to change.
95
+ */
96
+ NetworkFunctionGroupName?: string;
97
+ /**
98
+ * The key-value tags that changed for the network function group.
99
+ */
100
+ Tags?: Tag[];
101
+ };
102
+ /**
103
+ * Type definition for `AWS::NetworkManager::DirectConnectGatewayAttachment.ProposedSegmentChange`.
104
+ * The attachment to move from one segment to another.
105
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-directconnectgatewayattachment-proposedsegmentchange.html}
106
+ */
107
+ export type ProposedSegmentChange = {
108
+ /**
109
+ * The rule number in the policy document that applies to this change.
110
+ */
111
+ AttachmentPolicyRuleNumber?: number;
112
+ /**
113
+ * The name of the segment to change.
114
+ */
115
+ SegmentName?: string;
116
+ /**
117
+ * The key-value tags that changed for the segment.
118
+ */
119
+ Tags?: Tag[];
120
+ };
121
+ /**
122
+ * Type definition for `AWS::NetworkManager::DirectConnectGatewayAttachment.Tag`.
123
+ * A key-value pair to associate with a resource.
124
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-directconnectgatewayattachment-tag.html}
125
+ */
126
+ export type Tag = {
127
+ /**
128
+ * The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
129
+ */
130
+ Key: string;
131
+ /**
132
+ * The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
133
+ */
134
+ Value: string;
135
+ };
136
+ /**
137
+ * AWS::NetworkManager::DirectConnectGatewayAttachment Resource Type
138
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-directconnectgatewayattachment.html}
139
+ */
140
+ export declare class NetworkManagerDirectConnectGatewayAttachment extends $Resource<"AWS::NetworkManager::DirectConnectGatewayAttachment", NetworkManagerDirectConnectGatewayAttachmentProperties, NetworkManagerDirectConnectGatewayAttachmentAttributes> {
141
+ static readonly Type = "AWS::NetworkManager::DirectConnectGatewayAttachment";
142
+ constructor(logicalId: string, properties: NetworkManagerDirectConnectGatewayAttachmentProperties, options?: $ResourceOptions);
143
+ }
144
+ //# sourceMappingURL=AWS-NetworkManager-DirectConnectGatewayAttachment.d.ts.map
@@ -0,0 +1,12 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * AWS::NetworkManager::DirectConnectGatewayAttachment Resource Type
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-directconnectgatewayattachment.html}
5
+ */
6
+ export class NetworkManagerDirectConnectGatewayAttachment extends $Resource {
7
+ static Type = "AWS::NetworkManager::DirectConnectGatewayAttachment";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, NetworkManagerDirectConnectGatewayAttachment.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-NetworkManager-DirectConnectGatewayAttachment.js.map
@@ -1,18 +1,19 @@
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
- * The AWS::RDS::CustomDBEngineVersion resource creates an Amazon RDS custom DB engine version.
4
+ * Resource type definition for `AWS::RDS::CustomDBEngineVersion`.
5
+ * Creates a custom DB engine version (CEV).
5
6
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-customdbengineversion.html}
6
7
  */
7
8
  export type RDSCustomDBEngineVersionProperties = {
8
9
  /**
9
- * The name of an Amazon S3 bucket that contains database installation files for your CEV. For example, a valid bucket name is `my-custom-installation-files`.
10
+ * The name of an Amazon S3 bucket that contains database installation files for your CEV. For example, a valid bucket name is ``my-custom-installation-files``.
10
11
  * @minLength `3`
11
12
  * @maxLength `63`
12
13
  */
13
14
  DatabaseInstallationFilesS3BucketName?: string;
14
15
  /**
15
- * The Amazon S3 directory that contains the database installation files for your CEV. For example, a valid bucket name is `123456789012/cev1`. If this setting isn't specified, no prefix is assumed.
16
+ * The Amazon S3 directory that contains the database installation files for your CEV. For example, a valid bucket name is ``123456789012/cev1``. If this setting isn't specified, no prefix is assumed.
16
17
  * @minLength `1`
17
18
  * @maxLength `255`
18
19
  */
@@ -24,47 +25,57 @@ export type RDSCustomDBEngineVersionProperties = {
24
25
  */
25
26
  Description?: string;
26
27
  /**
27
- * The database engine to use for your custom engine version (CEV). The only supported value is `custom-oracle-ee`.
28
- * @minLength `1`
29
- * @maxLength `35`
30
- */
28
+ * The database engine to use for your custom engine version (CEV).
29
+ Valid values:
30
+ + ``custom-oracle-ee``
31
+ + ``custom-oracle-ee-cdb``
32
+ * @minLength `1`
33
+ * @maxLength `35`
34
+ */
31
35
  Engine: string;
32
36
  /**
33
- * The name of your CEV. The name format is 19.customized_string . For example, a valid name is 19.my_cev1. This setting is required for RDS Custom for Oracle, but optional for Amazon RDS. The combination of Engine and EngineVersion is unique per customer per Region.
37
+ * The name of your CEV. The name format is ``major version.customized_string``. For example, a valid CEV name is ``19.my_cev1``. This setting is required for RDS Custom for Oracle, but optional for Amazon RDS. The combination of ``Engine`` and ``EngineVersion`` is unique per customer per Region.
38
+ *Constraints:* Minimum length is 1. Maximum length is 60.
39
+ *Pattern:* ``^[a-z0-9_.-]{1,60$``}
34
40
  * @minLength `1`
35
41
  * @maxLength `60`
36
42
  */
37
43
  EngineVersion: string;
38
44
  /**
39
- * The identifier of Amazon Machine Image (AMI) used for CEV.
45
+ * A value that indicates the ID of the AMI.
40
46
  */
41
47
  ImageId?: string;
42
48
  /**
43
- * The AWS KMS key identifier for an encrypted CEV. A symmetric KMS key is required for RDS Custom, but optional for Amazon RDS.
44
- * @minLength `1`
45
- * @maxLength `2048`
46
- */
49
+ * The AWS KMS key identifier for an encrypted CEV. A symmetric encryption KMS key is required for RDS Custom, but optional for Amazon RDS.
50
+ If you have an existing symmetric encryption KMS key in your account, you can use it with RDS Custom. No further action is necessary. If you don't already have a symmetric encryption KMS key in your account, follow the instructions in [Creating a symmetric encryption KMS key](https://docs.aws.amazon.com/kms/latest/developerguide/create-keys.html#create-symmetric-cmk) in the *Key Management Service Developer Guide*.
51
+ You can choose the same symmetric encryption key when you create a CEV and a DB instance, or choose different keys.
52
+ * @minLength `1`
53
+ * @maxLength `2048`
54
+ */
47
55
  KMSKeyId?: string;
48
56
  /**
49
- * The CEV manifest, which is a JSON document that describes the installation .zip files stored in Amazon S3. Specify the name/value pairs in a file or a quoted string. RDS Custom applies the patches in the order in which they are listed.
50
- * @minLength `1`
51
- * @maxLength `51000`
52
- */
57
+ * The CEV manifest, which is a JSON document that describes the installation .zip files stored in Amazon S3. Specify the name/value pairs in a file or a quoted string. RDS Custom applies the patches in the order in which they are listed.
58
+ The following JSON fields are valid:
59
+ + MediaImportTemplateVersion Version of the CEV manifest. The date is in the format YYYY-MM-DD. + databaseInstallationFileNames Ordered list of installation files for the CEV. + opatchFileNames Ordered list of OPatch installers used for the Oracle DB engine. + psuRuPatchFileNames The PSU and RU patches for this CEV. + OtherPatchFileNames The patches that are not in the list of PSU and RU patches. Amazon RDS applies these patches after applying the PSU and RU patches.
60
+ For more information, see [Creating the CEV manifest](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-cev.html#custom-cev.preparing.manifest) in the *Amazon RDS User Guide*.
61
+ * @minLength `1`
62
+ * @maxLength `51000`
63
+ */
53
64
  Manifest?: string;
54
65
  /**
55
- * The identifier of the source custom engine version.
66
+ * The ARN of a CEV to use as a source for creating a new CEV. You can specify a different Amazon Machine Imagine (AMI) by using either ``Source`` or ``UseAwsProvidedLatestImage``. You can't specify a different JSON manifest when you specify ``SourceCustomDbEngineVersionIdentifier``.
56
67
  */
57
68
  SourceCustomDbEngineVersionIdentifier?: string;
58
69
  /**
59
- * The availability status to be assigned to the CEV.
70
+ * A value that indicates the status of a custom engine version (CEV).
60
71
  */
61
72
  Status?: "available" | "inactive" | "inactive-except-restore";
62
73
  /**
63
- * An array of key-value pairs to apply to this resource.
74
+ * A list of tags. For more information, see [Tagging Amazon RDS Resources](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html) in the *Amazon RDS User Guide.*
64
75
  */
65
76
  Tags?: Tag[];
66
77
  /**
67
- * A value that indicates whether AWS provided latest image is applied automatically to the Custom Engine Version. By default, AWS provided latest image is applied automatically. This value is only applied on create.
78
+ * Specifies whether to use the latest service-provided Amazon Machine Image (AMI) for the CEV. If you specify ``UseAwsProvidedLatestImage``, you can't also specify ``ImageId``.
68
79
  */
69
80
  UseAwsProvidedLatestImage?: boolean;
70
81
  };
@@ -73,32 +84,31 @@ export type RDSCustomDBEngineVersionProperties = {
73
84
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-customdbengineversion.html#aws-resource-rds-customdbengineversion-return-values}
74
85
  */
75
86
  export type RDSCustomDBEngineVersionAttributes = {
76
- /**
77
- * The ARN of the custom engine version.
78
- */
79
87
  DBEngineVersionArn: string;
80
88
  };
81
89
  /**
82
90
  * Type definition for `AWS::RDS::CustomDBEngineVersion.Tag`.
83
- * A key-value pair to associate with a resource.
91
+ * Metadata assigned to an Amazon RDS resource consisting of a key-value pair.
92
+ For more information, see [Tagging Amazon RDS resources](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html) in the *Amazon RDS User Guide* or [Tagging Amazon Aurora and Amazon RDS resources](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html) in the *Amazon Aurora User Guide*.
84
93
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-customdbengineversion-tag.html}
85
94
  */
86
95
  export type Tag = {
87
96
  /**
88
- * The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
97
+ * A key is the required name of the tag. The string value can be from 1 to 128 Unicode characters in length and can't be prefixed with ``aws:`` or ``rds:``. The string can only contain only the set of Unicode letters, digits, white-space, '_', '.', ':', '/', '=', '+', '-', '@' (Java regex: "^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$").
89
98
  * @minLength `1`
90
99
  * @maxLength `128`
91
100
  */
92
101
  Key: string;
93
102
  /**
94
- * The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
103
+ * A value is the optional value of the tag. The string value can be from 1 to 256 Unicode characters in length and can't be prefixed with ``aws:`` or ``rds:``. The string can only contain only the set of Unicode letters, digits, white-space, '_', '.', ':', '/', '=', '+', '-', '@' (Java regex: "^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$").
95
104
  * @minLength `0`
96
105
  * @maxLength `256`
97
106
  */
98
107
  Value?: string;
99
108
  };
100
109
  /**
101
- * The AWS::RDS::CustomDBEngineVersion resource creates an Amazon RDS custom DB engine version.
110
+ * Resource type definition for `AWS::RDS::CustomDBEngineVersion`.
111
+ * Creates a custom DB engine version (CEV).
102
112
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-customdbengineversion.html}
103
113
  */
104
114
  export declare class RDSCustomDBEngineVersion extends $Resource<"AWS::RDS::CustomDBEngineVersion", RDSCustomDBEngineVersionProperties, RDSCustomDBEngineVersionAttributes> {
@@ -1,6 +1,7 @@
1
1
  import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
2
  /**
3
- * The AWS::RDS::CustomDBEngineVersion resource creates an Amazon RDS custom DB engine version.
3
+ * Resource type definition for `AWS::RDS::CustomDBEngineVersion`.
4
+ * Creates a custom DB engine version (CEV).
4
5
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-customdbengineversion.html}
5
6
  */
6
7
  export class RDSCustomDBEngineVersion extends $Resource {
@@ -28,6 +28,10 @@ export type RedshiftServerlessWorkgroupProperties = {
28
28
  * The custom port to use when connecting to a workgroup. Valid port ranges are 5431-5455 and 8191-8215. The default is 5439.
29
29
  */
30
30
  Port?: number;
31
+ /**
32
+ * A property that represents the price performance target settings for the workgroup.
33
+ */
34
+ PricePerformanceTarget?: PerformanceTarget;
31
35
  /**
32
36
  * A value that specifies whether the workgroup can be accessible from a public network.
33
37
  */
@@ -119,6 +123,14 @@ export type RedshiftServerlessWorkgroupAttributes = {
119
123
  * @pattern `^[a-z0-9-]+$`
120
124
  */
121
125
  NamespaceName: string;
126
+ PricePerformanceTarget: {
127
+ /**
128
+ * @min `1`
129
+ * @max `100`
130
+ */
131
+ Level: number;
132
+ Status: PerformanceTargetStatus;
133
+ };
122
134
  PubliclyAccessible: boolean;
123
135
  SecurityGroupIds: string[];
124
136
  Status: WorkgroupStatus;
@@ -133,6 +145,23 @@ export type RedshiftServerlessWorkgroupAttributes = {
133
145
  WorkgroupName: string;
134
146
  };
135
147
  };
148
+ /**
149
+ * Type definition for `AWS::RedshiftServerless::Workgroup.PerformanceTarget`.
150
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshiftserverless-workgroup-performancetarget.html}
151
+ */
152
+ export type PerformanceTarget = {
153
+ /**
154
+ * @min `1`
155
+ * @max `100`
156
+ */
157
+ Level?: number;
158
+ Status?: PerformanceTargetStatus;
159
+ };
160
+ /**
161
+ * Type definition for `AWS::RedshiftServerless::Workgroup.PerformanceTargetStatus`.
162
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshiftserverless-workgroup-performancetargetstatus.html}
163
+ */
164
+ export type PerformanceTargetStatus = "ENABLED" | "DISABLED";
136
165
  /**
137
166
  * Type definition for `AWS::RedshiftServerless::Workgroup.Tag`.
138
167
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshiftserverless-workgroup-tag.html}
@@ -149,6 +178,13 @@ export type Tag = {
149
178
  */
150
179
  Value: string;
151
180
  };
181
+ /**
182
+ * Type definition for `AWS::RedshiftServerless::Workgroup.Workgroup`.
183
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshiftserverless-workgroup-workgroup.html}
184
+ */
185
+ export type Workgroup = {
186
+ PricePerformanceTarget?: PerformanceTarget;
187
+ };
152
188
  /**
153
189
  * Type definition for `AWS::RedshiftServerless::Workgroup.WorkgroupStatus`.
154
190
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshiftserverless-workgroup-workgroupstatus.html}
@@ -0,0 +1,60 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
3
+ /**
4
+ * Resource type definition for `AWS::S3Tables::TableBucket`.
5
+ * Creates an Amazon S3 Tables table bucket in the same AWS Region where you create the AWS CloudFormation stack.
6
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3tables-tablebucket.html}
7
+ */
8
+ export type S3TablesTableBucketProperties = {
9
+ /**
10
+ * A name for the table bucket.
11
+ * @minLength `3`
12
+ * @maxLength `63`
13
+ */
14
+ TableBucketName: string;
15
+ /**
16
+ * Settings governing the Unreferenced File Removal maintenance action. Unreferenced file removal identifies and deletes all objects that are not referenced by any table snapshots.
17
+ */
18
+ UnreferencedFileRemoval?: UnreferencedFileRemoval;
19
+ };
20
+ /**
21
+ * Attribute type definition for `AWS::S3Tables::TableBucket`.
22
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3tables-tablebucket.html#aws-resource-s3tables-tablebucket-return-values}
23
+ */
24
+ export type S3TablesTableBucketAttributes = {
25
+ /**
26
+ * The Amazon Resource Name (ARN) of the specified table bucket.
27
+ */
28
+ TableBucketARN: string;
29
+ };
30
+ /**
31
+ * Type definition for `AWS::S3Tables::TableBucket.UnreferencedFileRemoval`.
32
+ * Settings governing the Unreferenced File Removal maintenance action. Unreferenced file removal identifies and deletes all objects that are not referenced by any table snapshots.
33
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3tables-tablebucket-unreferencedfileremoval.html}
34
+ */
35
+ export type UnreferencedFileRemoval = {
36
+ /**
37
+ * S3 permanently deletes noncurrent objects after the number of days specified by the NoncurrentDays property.
38
+ * @min `1`
39
+ */
40
+ NoncurrentDays?: number;
41
+ /**
42
+ * Indicates whether the Unreferenced File Removal maintenance action is enabled.
43
+ */
44
+ Status?: "Enabled" | "Disabled";
45
+ /**
46
+ * For any object not referenced by your table and older than the UnreferencedDays property, S3 creates a delete marker and marks the object version as noncurrent.
47
+ * @min `1`
48
+ */
49
+ UnreferencedDays?: number;
50
+ };
51
+ /**
52
+ * Resource type definition for `AWS::S3Tables::TableBucket`.
53
+ * Creates an Amazon S3 Tables table bucket in the same AWS Region where you create the AWS CloudFormation stack.
54
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3tables-tablebucket.html}
55
+ */
56
+ export declare class S3TablesTableBucket extends $Resource<"AWS::S3Tables::TableBucket", S3TablesTableBucketProperties, S3TablesTableBucketAttributes> {
57
+ static readonly Type = "AWS::S3Tables::TableBucket";
58
+ constructor(logicalId: string, properties: S3TablesTableBucketProperties, options?: $ResourceOptions);
59
+ }
60
+ //# sourceMappingURL=AWS-S3Tables-TableBucket.d.ts.map
@@ -0,0 +1,13 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * Resource type definition for `AWS::S3Tables::TableBucket`.
4
+ * Creates an Amazon S3 Tables table bucket in the same AWS Region where you create the AWS CloudFormation stack.
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3tables-tablebucket.html}
6
+ */
7
+ export class S3TablesTableBucket extends $Resource {
8
+ static Type = "AWS::S3Tables::TableBucket";
9
+ constructor(logicalId, properties, options) {
10
+ super(logicalId, S3TablesTableBucket.Type, properties, options);
11
+ }
12
+ }
13
+ //# sourceMappingURL=AWS-S3Tables-TableBucket.js.map
@@ -0,0 +1,33 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
3
+ /**
4
+ * Resource type definition for `AWS::S3Tables::TableBucketPolicy`.
5
+ * Applies an IAM resource policy to a table bucket.
6
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3tables-tablebucketpolicy.html}
7
+ */
8
+ export type S3TablesTableBucketPolicyProperties = {
9
+ /**
10
+ * A policy document containing permissions to add to the specified table bucket. In IAM, you must provide policy documents in JSON format. However, in CloudFormation you can provide the policy in JSON or YAML format because CloudFormation converts YAML to JSON before submitting it to IAM.
11
+ */
12
+ ResourcePolicy: ResourcePolicy;
13
+ /**
14
+ * The Amazon Resource Name (ARN) of the table bucket to which the policy applies.
15
+ */
16
+ TableBucketARN: string;
17
+ };
18
+ /**
19
+ * Type definition for `AWS::S3Tables::TableBucketPolicy.ResourcePolicy`.
20
+ * A policy document containing permissions to add to the specified table bucket. In IAM, you must provide policy documents in JSON format. However, in CloudFormation you can provide the policy in JSON or YAML format because CloudFormation converts YAML to JSON before submitting it to IAM.
21
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3tables-tablebucketpolicy-resourcepolicy.html}
22
+ */
23
+ export type ResourcePolicy = Record<string, any> | string;
24
+ /**
25
+ * Resource type definition for `AWS::S3Tables::TableBucketPolicy`.
26
+ * Applies an IAM resource policy to a table bucket.
27
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3tables-tablebucketpolicy.html}
28
+ */
29
+ export declare class S3TablesTableBucketPolicy extends $Resource<"AWS::S3Tables::TableBucketPolicy", S3TablesTableBucketPolicyProperties, Record<string, never>> {
30
+ static readonly Type = "AWS::S3Tables::TableBucketPolicy";
31
+ constructor(logicalId: string, properties: S3TablesTableBucketPolicyProperties, options?: $ResourceOptions);
32
+ }
33
+ //# sourceMappingURL=AWS-S3Tables-TableBucketPolicy.d.ts.map
@@ -0,0 +1,13 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * Resource type definition for `AWS::S3Tables::TableBucketPolicy`.
4
+ * Applies an IAM resource policy to a table bucket.
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3tables-tablebucketpolicy.html}
6
+ */
7
+ export class S3TablesTableBucketPolicy extends $Resource {
8
+ static Type = "AWS::S3Tables::TableBucketPolicy";
9
+ constructor(logicalId, properties, options) {
10
+ super(logicalId, S3TablesTableBucketPolicy.Type, properties, options);
11
+ }
12
+ }
13
+ //# sourceMappingURL=AWS-S3Tables-TableBucketPolicy.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.212",
3
+ "version": "0.1.214",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },