@awboost/cfn-resource-types 0.1.472 → 0.1.474
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-Backup-LogicallyAirGappedBackupVault.d.ts +1 -0
- package/lib/AWS-BedrockAgentCore-GatewayTarget.d.ts +14 -1
- package/lib/AWS-Connect-SecurityProfile.d.ts +54 -0
- package/lib/AWS-ControlTower-LandingZone.d.ts +1 -0
- package/lib/AWS-EC2-EC2Fleet.d.ts +2 -2
- package/lib/AWS-EC2-SpotFleet.d.ts +2 -2
- package/lib/AWS-EC2-TransitGateway.d.ts +2 -0
- package/lib/AWS-Kinesis-Stream.d.ts +33 -1
- package/lib/AWS-Lambda-Permission.d.ts +6 -3
- package/lib/AWS-Lambda-Permission.js +1 -1
- package/lib/AWS-S3Tables-Table.d.ts +21 -0
- package/lib/AWS-S3Tables-TableBucket.d.ts +21 -0
- package/package.json +1 -1
|
@@ -35,6 +35,7 @@ export type BedrockAgentCoreGatewayTargetAttributes = {
|
|
|
35
35
|
* @pattern `^arn:aws(|-cn|-us-gov):bedrock-agentcore:[a-z0-9-]{1,20}:[0-9]{12}:gateway/([0-9a-z][-]?){1,100}-[a-z0-9]{10}$`
|
|
36
36
|
*/
|
|
37
37
|
GatewayArn: string;
|
|
38
|
+
LastSynchronizedAt: string;
|
|
38
39
|
Status: TargetStatus;
|
|
39
40
|
/**
|
|
40
41
|
* @maxLength `100`
|
|
@@ -116,6 +117,16 @@ export type McpLambdaTargetConfiguration = {
|
|
|
116
117
|
LambdaArn: string;
|
|
117
118
|
ToolSchema: ToolSchema;
|
|
118
119
|
};
|
|
120
|
+
/**
|
|
121
|
+
* Type definition for `AWS::BedrockAgentCore::GatewayTarget.McpServerTargetConfiguration`.
|
|
122
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-mcpservertargetconfiguration.html}
|
|
123
|
+
*/
|
|
124
|
+
export type McpServerTargetConfiguration = {
|
|
125
|
+
/**
|
|
126
|
+
* @pattern `^https://.*`
|
|
127
|
+
*/
|
|
128
|
+
Endpoint: string;
|
|
129
|
+
};
|
|
119
130
|
/**
|
|
120
131
|
* Type definition for `AWS::BedrockAgentCore::GatewayTarget.McpTargetConfiguration`.
|
|
121
132
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-mcptargetconfiguration.html}
|
|
@@ -126,6 +137,8 @@ export type McpTargetConfiguration = {
|
|
|
126
137
|
SmithyModel: ApiSchemaConfiguration;
|
|
127
138
|
} | {
|
|
128
139
|
Lambda: McpLambdaTargetConfiguration;
|
|
140
|
+
} | {
|
|
141
|
+
McpServer: McpServerTargetConfiguration;
|
|
129
142
|
};
|
|
130
143
|
/**
|
|
131
144
|
* Type definition for `AWS::BedrockAgentCore::GatewayTarget.OAuthCredentialProvider`.
|
|
@@ -193,7 +206,7 @@ export type TargetConfiguration = {
|
|
|
193
206
|
* Type definition for `AWS::BedrockAgentCore::GatewayTarget.TargetStatus`.
|
|
194
207
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-targetstatus.html}
|
|
195
208
|
*/
|
|
196
|
-
export type TargetStatus = "CREATING" | "UPDATING" | "UPDATE_UNSUCCESSFUL" | "DELETING" | "READY" | "FAILED";
|
|
209
|
+
export type TargetStatus = "CREATING" | "UPDATING" | "UPDATE_UNSUCCESSFUL" | "DELETING" | "READY" | "FAILED" | "SYNCHRONIZING" | "SYNCHRONIZE_UNSUCCESSFUL";
|
|
197
210
|
/**
|
|
198
211
|
* Type definition for `AWS::BedrockAgentCore::GatewayTarget.ToolDefinition`.
|
|
199
212
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-tooldefinition.html}
|
|
@@ -28,6 +28,12 @@ export type ConnectSecurityProfileProperties = {
|
|
|
28
28
|
* @maxLength `250`
|
|
29
29
|
*/
|
|
30
30
|
Description?: string;
|
|
31
|
+
GranularAccessControlConfiguration?: {
|
|
32
|
+
/**
|
|
33
|
+
* Defines the access control configuration for data tables.
|
|
34
|
+
*/
|
|
35
|
+
DataTableAccessControlConfiguration?: DataTableAccessControlConfiguration;
|
|
36
|
+
};
|
|
31
37
|
/**
|
|
32
38
|
* The list of resources that a security profile applies hierarchy restrictions to in Amazon Connect.
|
|
33
39
|
* @maxLength `10`
|
|
@@ -99,6 +105,54 @@ export type Application = {
|
|
|
99
105
|
*/
|
|
100
106
|
Namespace: string;
|
|
101
107
|
};
|
|
108
|
+
/**
|
|
109
|
+
* Type definition for `AWS::Connect::SecurityProfile.DataTableAccessControlConfiguration`.
|
|
110
|
+
* Defines the access control configuration for data tables.
|
|
111
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-securityprofile-datatableaccesscontrolconfiguration.html}
|
|
112
|
+
*/
|
|
113
|
+
export type DataTableAccessControlConfiguration = {
|
|
114
|
+
/**
|
|
115
|
+
* Contains the configuration for record-based access control.
|
|
116
|
+
*/
|
|
117
|
+
PrimaryAttributeAccessControlConfiguration?: PrimaryAttributeAccessControlConfigurationItem;
|
|
118
|
+
};
|
|
119
|
+
/**
|
|
120
|
+
* Type definition for `AWS::Connect::SecurityProfile.PrimaryAttributeAccessControlConfigurationItem`.
|
|
121
|
+
* Contains the configuration for record-based access control.
|
|
122
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-securityprofile-primaryattributeaccesscontrolconfigurationitem.html}
|
|
123
|
+
*/
|
|
124
|
+
export type PrimaryAttributeAccessControlConfigurationItem = {
|
|
125
|
+
/**
|
|
126
|
+
* An array of PrimaryAttributeValue objects.
|
|
127
|
+
* @minLength `1`
|
|
128
|
+
* @maxLength `5`
|
|
129
|
+
*/
|
|
130
|
+
PrimaryAttributeValues: PrimaryAttributeValue[];
|
|
131
|
+
};
|
|
132
|
+
/**
|
|
133
|
+
* Type definition for `AWS::Connect::SecurityProfile.PrimaryAttributeValue`.
|
|
134
|
+
* An object defining the access control for a specific attribute and its values.
|
|
135
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-securityprofile-primaryattributevalue.html}
|
|
136
|
+
*/
|
|
137
|
+
export type PrimaryAttributeValue = {
|
|
138
|
+
/**
|
|
139
|
+
* Specifies the type of access granted. Currently, only "ALLOW" is supported
|
|
140
|
+
*/
|
|
141
|
+
AccessType: "ALLOW";
|
|
142
|
+
/**
|
|
143
|
+
* The name of the primary attribute.
|
|
144
|
+
* @minLength `1`
|
|
145
|
+
* @maxLength `127`
|
|
146
|
+
* @pattern `^(?!aws:|connect:)[\p{L}\p{Z}\p{N}\-_.:=@'|]+$`
|
|
147
|
+
*/
|
|
148
|
+
AttributeName: string;
|
|
149
|
+
/**
|
|
150
|
+
* An array of allowed primary values for the specified primary attribute.
|
|
151
|
+
* @minLength `1`
|
|
152
|
+
* @maxLength `2`
|
|
153
|
+
*/
|
|
154
|
+
Values: string[];
|
|
155
|
+
};
|
|
102
156
|
/**
|
|
103
157
|
* Type definition for `AWS::Connect::SecurityProfile.Tag`.
|
|
104
158
|
* A key-value pair to associate with a resource.
|
|
@@ -148,9 +148,9 @@ export type FleetLaunchTemplateSpecificationRequest = {
|
|
|
148
148
|
export type InstanceRequirementsRequest = {
|
|
149
149
|
AcceleratorCount?: AcceleratorCountRequest;
|
|
150
150
|
AcceleratorManufacturers?: ("amazon-web-services" | "amd" | "habana" | "nvidia" | "xilinx")[];
|
|
151
|
-
AcceleratorNames?: ("a10g" | "a100" | "h100" | "inferentia" | "k520" | "k80" | "m60" | "radeon-pro-v520" | "t4" | "t4g" | "vu9p" | "v100")[];
|
|
151
|
+
AcceleratorNames?: ("a10g" | "a100" | "h100" | "inferentia" | "k520" | "k80" | "m60" | "radeon-pro-v520" | "t4" | "t4g" | "vu9p" | "v100" | "l40s" | "l4" | "gaudi-hl-205" | "inferentia2" | "trainium" | "trainium2" | "u30")[];
|
|
152
152
|
AcceleratorTotalMemoryMiB?: AcceleratorTotalMemoryMiBRequest;
|
|
153
|
-
AcceleratorTypes?: ("gpu" | "fpga" | "inference")[];
|
|
153
|
+
AcceleratorTypes?: ("gpu" | "fpga" | "inference" | "media")[];
|
|
154
154
|
AllowedInstanceTypes?: string[];
|
|
155
155
|
BareMetal?: "included" | "required" | "excluded";
|
|
156
156
|
BaselineEbsBandwidthMbps?: BaselineEbsBandwidthMbpsRequest;
|
|
@@ -147,9 +147,9 @@ export type InstanceNetworkInterfaceSpecification = {
|
|
|
147
147
|
export type InstanceRequirementsRequest = {
|
|
148
148
|
AcceleratorCount?: AcceleratorCountRequest;
|
|
149
149
|
AcceleratorManufacturers?: ("amazon-web-services" | "amd" | "habana" | "nvidia" | "xilinx")[];
|
|
150
|
-
AcceleratorNames?: ("a10g" | "a100" | "h100" | "inferentia" | "k520" | "k80" | "m60" | "radeon-pro-v520" | "t4" | "t4g" | "vu9p" | "v100")[];
|
|
150
|
+
AcceleratorNames?: ("a10g" | "a100" | "h100" | "inferentia" | "k520" | "k80" | "m60" | "radeon-pro-v520" | "t4" | "t4g" | "vu9p" | "v100" | "l40s" | "l4" | "gaudi-hl-205" | "inferentia2" | "trainium" | "trainium2" | "u30")[];
|
|
151
151
|
AcceleratorTotalMemoryMiB?: AcceleratorTotalMemoryMiBRequest;
|
|
152
|
-
AcceleratorTypes?: ("gpu" | "fpga" | "inference")[];
|
|
152
|
+
AcceleratorTypes?: ("gpu" | "fpga" | "inference" | "media")[];
|
|
153
153
|
AllowedInstanceTypes?: string[];
|
|
154
154
|
BareMetal?: "included" | "required" | "excluded";
|
|
155
155
|
BaselineEbsBandwidthMbps?: BaselineEbsBandwidthMbpsRequest;
|
|
@@ -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
|
};
|
|
@@ -42,10 +42,14 @@ export type KinesisStreamProperties = {
|
|
|
42
42
|
*/
|
|
43
43
|
StreamModeDetails?: StreamModeDetails;
|
|
44
44
|
/**
|
|
45
|
-
* An arbitrary set of tags (key
|
|
45
|
+
* An arbitrary set of tags (key-value pairs) to associate with the Kinesis stream.
|
|
46
46
|
* @maxLength `50`
|
|
47
47
|
*/
|
|
48
48
|
Tags?: Tag[];
|
|
49
|
+
/**
|
|
50
|
+
* Target warm throughput in MiB/s for the stream. This property can ONLY be set when StreamMode is ON_DEMAND.
|
|
51
|
+
*/
|
|
52
|
+
WarmThroughputMiBps?: number;
|
|
49
53
|
};
|
|
50
54
|
/**
|
|
51
55
|
* Attribute type definition for `AWS::Kinesis::Stream`.
|
|
@@ -56,6 +60,19 @@ export type KinesisStreamAttributes = {
|
|
|
56
60
|
* The Amazon resource name (ARN) of the Kinesis stream
|
|
57
61
|
*/
|
|
58
62
|
Arn: string;
|
|
63
|
+
/**
|
|
64
|
+
* Warm throughput configuration details for the stream. Only present for ON_DEMAND streams.
|
|
65
|
+
*/
|
|
66
|
+
WarmThroughputObject: {
|
|
67
|
+
/**
|
|
68
|
+
* Current warm throughput in MiB/s
|
|
69
|
+
*/
|
|
70
|
+
CurrentMiBps: number;
|
|
71
|
+
/**
|
|
72
|
+
* Target warm throughput in MiB/s that a customer can write to a stream at any given time
|
|
73
|
+
*/
|
|
74
|
+
TargetMiBps: number;
|
|
75
|
+
};
|
|
59
76
|
};
|
|
60
77
|
/**
|
|
61
78
|
* Type definition for `AWS::Kinesis::Stream.EnhancedMetric`.
|
|
@@ -110,6 +127,21 @@ export type Tag = {
|
|
|
110
127
|
*/
|
|
111
128
|
Value: string;
|
|
112
129
|
};
|
|
130
|
+
/**
|
|
131
|
+
* Type definition for `AWS::Kinesis::Stream.WarmThroughputObject`.
|
|
132
|
+
* Warm throughput configuration details for the stream. Only present for ON_DEMAND streams.
|
|
133
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesis-stream-warmthroughputobject.html}
|
|
134
|
+
*/
|
|
135
|
+
export type WarmThroughputObject = {
|
|
136
|
+
/**
|
|
137
|
+
* Current warm throughput in MiB/s
|
|
138
|
+
*/
|
|
139
|
+
CurrentMiBps?: number;
|
|
140
|
+
/**
|
|
141
|
+
* Target warm throughput in MiB/s that a customer can write to a stream at any given time
|
|
142
|
+
*/
|
|
143
|
+
TargetMiBps?: number;
|
|
144
|
+
};
|
|
113
145
|
/**
|
|
114
146
|
* Resource Type definition for AWS::Kinesis::Stream
|
|
115
147
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html}
|
|
@@ -3,7 +3,7 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
3
3
|
/**
|
|
4
4
|
* The ``AWS::Lambda::Permission`` resource grants an AWS service or another account permission to use a function. You can apply the policy at the function level, or specify a qualifier to restrict access to a single version or alias. If you use a qualifier, the invoker must use the full Amazon Resource Name (ARN) of that version or alias to invoke the function.
|
|
5
5
|
To grant permission to another account, specify the account ID as the ``Principal``. To grant permission to an organization defined in AOlong, specify the organization ID as the ``PrincipalOrgID``. For AWS services, the principal is a domain-style identifier defined by the service, like ``s3.amazonaws.com`` or ``sns.amazonaws.com``. For AWS services, you can also specify the ARN of the associated resource as the ``SourceArn``. If you grant permission to a service principal without specifying the source, other accounts could potentially configure resources in their account to invoke your Lambda function.
|
|
6
|
-
If your function has a function URL, you can specify the ``FunctionUrlAuthType`` parameter. This adds a condition to your permission that only applies when your function URL's ``AuthType`` matches the specified ``FunctionUrlAuthType``. For more information about the ``AuthType`` parameter, see [
|
|
6
|
+
If your function has a function URL, you can specify the ``FunctionUrlAuthType`` parameter. This adds a condition to your permission that only applies when your function URL's ``AuthType`` matches the specified ``FunctionUrlAuthType``. For more information about the ``AuthType`` parameter, see [Control access to function URLs](https://docs.aws.amazon.com/lambda/latest/dg/urls-auth.html).
|
|
7
7
|
This resource adds a statement to a resource-based permission policy for the function. For more information about function policies, see [Lambda Function Policies](https://docs.aws.amazon.com/lambda/latest/dg/access-control-resource-based.html).
|
|
8
8
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html}
|
|
9
9
|
*/
|
|
@@ -36,9 +36,12 @@ export type LambdaPermissionProperties = {
|
|
|
36
36
|
*/
|
|
37
37
|
FunctionName: string;
|
|
38
38
|
/**
|
|
39
|
-
* The type of authentication that your function URL uses. Set to ``AWS_IAM`` if you want to restrict access to authenticated users only. Set to ``NONE`` if you want to bypass IAM authentication to create a public endpoint. For more information, see [
|
|
39
|
+
* The type of authentication that your function URL uses. Set to ``AWS_IAM`` if you want to restrict access to authenticated users only. Set to ``NONE`` if you want to bypass IAM authentication to create a public endpoint. For more information, see [Control access to Lambda function URLs](https://docs.aws.amazon.com/lambda/latest/dg/urls-auth.html).
|
|
40
40
|
*/
|
|
41
41
|
FunctionUrlAuthType?: "AWS_IAM" | "NONE";
|
|
42
|
+
/**
|
|
43
|
+
* Restricts the ``lambda:InvokeFunction`` action to function URL calls. When specified, this option prevents the principal from invoking the function by any means other than the function URL. For more information, see [Control access to Lambda function URLs](https://docs.aws.amazon.com/lambda/latest/dg/urls-auth.html).
|
|
44
|
+
*/
|
|
42
45
|
InvokedViaFunctionUrl?: boolean;
|
|
43
46
|
/**
|
|
44
47
|
* The AWS-service, AWS-account, IAM user, or IAM role that invokes the function. If you specify a service, use ``SourceArn`` or ``SourceAccount`` to limit who can invoke the function through that service.
|
|
@@ -85,7 +88,7 @@ export type LambdaPermissionAttributes = {
|
|
|
85
88
|
/**
|
|
86
89
|
* The ``AWS::Lambda::Permission`` resource grants an AWS service or another account permission to use a function. You can apply the policy at the function level, or specify a qualifier to restrict access to a single version or alias. If you use a qualifier, the invoker must use the full Amazon Resource Name (ARN) of that version or alias to invoke the function.
|
|
87
90
|
To grant permission to another account, specify the account ID as the ``Principal``. To grant permission to an organization defined in AOlong, specify the organization ID as the ``PrincipalOrgID``. For AWS services, the principal is a domain-style identifier defined by the service, like ``s3.amazonaws.com`` or ``sns.amazonaws.com``. For AWS services, you can also specify the ARN of the associated resource as the ``SourceArn``. If you grant permission to a service principal without specifying the source, other accounts could potentially configure resources in their account to invoke your Lambda function.
|
|
88
|
-
If your function has a function URL, you can specify the ``FunctionUrlAuthType`` parameter. This adds a condition to your permission that only applies when your function URL's ``AuthType`` matches the specified ``FunctionUrlAuthType``. For more information about the ``AuthType`` parameter, see [
|
|
91
|
+
If your function has a function URL, you can specify the ``FunctionUrlAuthType`` parameter. This adds a condition to your permission that only applies when your function URL's ``AuthType`` matches the specified ``FunctionUrlAuthType``. For more information about the ``AuthType`` parameter, see [Control access to function URLs](https://docs.aws.amazon.com/lambda/latest/dg/urls-auth.html).
|
|
89
92
|
This resource adds a statement to a resource-based permission policy for the function. For more information about function policies, see [Lambda Function Policies](https://docs.aws.amazon.com/lambda/latest/dg/access-control-resource-based.html).
|
|
90
93
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html}
|
|
91
94
|
*/
|
|
@@ -2,7 +2,7 @@ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/re
|
|
|
2
2
|
/**
|
|
3
3
|
* The ``AWS::Lambda::Permission`` resource grants an AWS service or another account permission to use a function. You can apply the policy at the function level, or specify a qualifier to restrict access to a single version or alias. If you use a qualifier, the invoker must use the full Amazon Resource Name (ARN) of that version or alias to invoke the function.
|
|
4
4
|
To grant permission to another account, specify the account ID as the ``Principal``. To grant permission to an organization defined in AOlong, specify the organization ID as the ``PrincipalOrgID``. For AWS services, the principal is a domain-style identifier defined by the service, like ``s3.amazonaws.com`` or ``sns.amazonaws.com``. For AWS services, you can also specify the ARN of the associated resource as the ``SourceArn``. If you grant permission to a service principal without specifying the source, other accounts could potentially configure resources in their account to invoke your Lambda function.
|
|
5
|
-
If your function has a function URL, you can specify the ``FunctionUrlAuthType`` parameter. This adds a condition to your permission that only applies when your function URL's ``AuthType`` matches the specified ``FunctionUrlAuthType``. For more information about the ``AuthType`` parameter, see [
|
|
5
|
+
If your function has a function URL, you can specify the ``FunctionUrlAuthType`` parameter. This adds a condition to your permission that only applies when your function URL's ``AuthType`` matches the specified ``FunctionUrlAuthType``. For more information about the ``AuthType`` parameter, see [Control access to function URLs](https://docs.aws.amazon.com/lambda/latest/dg/urls-auth.html).
|
|
6
6
|
This resource adds a statement to a resource-based permission policy for the function. For more information about function policies, see [Lambda Function Policies](https://docs.aws.amazon.com/lambda/latest/dg/access-control-resource-based.html).
|
|
7
7
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html}
|
|
8
8
|
*/
|
|
@@ -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.
|