@awboost/cfn-resource-types 0.1.30 → 0.1.32
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-B2BI-Transformer.d.ts +1 -1
- package/lib/AWS-CustomerProfiles-Domain.d.ts +1 -1
- package/lib/AWS-CustomerProfiles-ObjectType.d.ts +2 -2
- package/lib/AWS-DynamoDB-Table.d.ts +3 -1
- package/lib/AWS-EC2-NetworkInterfaceAttachment.d.ts +11 -0
- package/lib/AWS-EC2-VPCEndpoint.d.ts +25 -11
- package/lib/AWS-EC2-VPCEndpoint.js +4 -1
- package/lib/AWS-EC2-VolumeAttachment.d.ts +13 -5
- package/lib/AWS-EC2-VolumeAttachment.js +5 -1
- package/lib/AWS-ECS-TaskSet.d.ts +9 -0
- package/lib/AWS-IAM-InstanceProfile.d.ts +13 -9
- package/lib/AWS-IAM-InstanceProfile.js +3 -1
- package/lib/AWS-IAM-Role.d.ts +41 -28
- package/lib/AWS-IAM-Role.js +3 -1
- package/lib/AWS-IoTEvents-AlarmModel.d.ts +1 -1
- package/lib/AWS-IoTEvents-DetectorModel.d.ts +1 -1
- package/lib/AWS-IoTEvents-Input.d.ts +1 -1
- package/lib/AWS-IoTTwinMaker-Entity.d.ts +51 -44
- package/lib/AWS-IoTWireless-WirelessDevice.d.ts +4 -0
- package/lib/AWS-RDS-Integration.d.ts +2 -2
- package/lib/AWS-RDS-Integration.js +1 -1
- package/lib/AWS-RedshiftServerless-Namespace.d.ts +15 -0
- package/package.json +1 -1
|
@@ -12,7 +12,6 @@ export type B2BITransformerProperties = {
|
|
|
12
12
|
* @maxLength `350000`
|
|
13
13
|
*/
|
|
14
14
|
MappingTemplate: string;
|
|
15
|
-
ModifiedAt?: string;
|
|
16
15
|
/**
|
|
17
16
|
* @minLength `1`
|
|
18
17
|
* @maxLength `254`
|
|
@@ -36,6 +35,7 @@ export type B2BITransformerProperties = {
|
|
|
36
35
|
*/
|
|
37
36
|
export type B2BITransformerAttributes = {
|
|
38
37
|
CreatedAt: string;
|
|
38
|
+
ModifiedAt: string;
|
|
39
39
|
/**
|
|
40
40
|
* @minLength `1`
|
|
41
41
|
* @maxLength `255`
|
|
@@ -15,7 +15,7 @@ export type CustomerProfilesObjectTypeProperties = {
|
|
|
15
15
|
* @minLength `1`
|
|
16
16
|
* @maxLength `1000`
|
|
17
17
|
*/
|
|
18
|
-
Description
|
|
18
|
+
Description: string;
|
|
19
19
|
/**
|
|
20
20
|
* The unique name of the domain.
|
|
21
21
|
* @minLength `1`
|
|
@@ -49,7 +49,7 @@ export type CustomerProfilesObjectTypeProperties = {
|
|
|
49
49
|
* @maxLength `255`
|
|
50
50
|
* @pattern `^[a-zA-Z_][a-zA-Z_0-9-]*$`
|
|
51
51
|
*/
|
|
52
|
-
ObjectTypeName
|
|
52
|
+
ObjectTypeName: string;
|
|
53
53
|
/**
|
|
54
54
|
* The format of your sourceLastUpdatedTimestamp that was previously set up.
|
|
55
55
|
* @minLength `1`
|
|
@@ -104,7 +104,7 @@ export type DynamoDBTableAttributes = {
|
|
|
104
104
|
};
|
|
105
105
|
/**
|
|
106
106
|
* Type definition for `AWS::DynamoDB::Table.AttributeDefinition`.
|
|
107
|
-
* Represents an attribute for describing the
|
|
107
|
+
* Represents an attribute for describing the schema for the table and indexes.
|
|
108
108
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-attributedefinition.html}
|
|
109
109
|
*/
|
|
110
110
|
export type AttributeDefinition = {
|
|
@@ -302,6 +302,8 @@ export type Projection = {
|
|
|
302
302
|
+ ``KEYS_ONLY`` - Only the index and primary keys are projected into the index.
|
|
303
303
|
+ ``INCLUDE`` - In addition to the attributes described in ``KEYS_ONLY``, the secondary index will include other non-key attributes that you specify.
|
|
304
304
|
+ ``ALL`` - All of the table attributes are projected into the index.
|
|
305
|
+
|
|
306
|
+
When using the DynamoDB console, ``ALL`` is selected by default.
|
|
305
307
|
*/
|
|
306
308
|
ProjectionType?: string;
|
|
307
309
|
};
|
|
@@ -13,6 +13,7 @@ export type EC2NetworkInterfaceAttachmentProperties = {
|
|
|
13
13
|
* The network interface's position in the attachment order. For example, the first attached network interface has a DeviceIndex of 0.
|
|
14
14
|
*/
|
|
15
15
|
DeviceIndex: string;
|
|
16
|
+
EnaSrdSpecification?: EnaSrdSpecification;
|
|
16
17
|
/**
|
|
17
18
|
* The ID of the instance to which you will attach the ENI.
|
|
18
19
|
*/
|
|
@@ -32,6 +33,16 @@ export type EC2NetworkInterfaceAttachmentAttributes = {
|
|
|
32
33
|
*/
|
|
33
34
|
AttachmentId: string;
|
|
34
35
|
};
|
|
36
|
+
/**
|
|
37
|
+
* Type definition for `AWS::EC2::NetworkInterfaceAttachment.EnaSrdSpecification`.
|
|
38
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkinterfaceattachment-enasrdspecification.html}
|
|
39
|
+
*/
|
|
40
|
+
export type EnaSrdSpecification = {
|
|
41
|
+
EnaSrdEnabled?: boolean;
|
|
42
|
+
EnaSrdUdpSpecification?: {
|
|
43
|
+
EnaSrdUdpEnabled?: boolean;
|
|
44
|
+
};
|
|
45
|
+
};
|
|
35
46
|
/**
|
|
36
47
|
* Resource Type definition for AWS::EC2::NetworkInterfaceAttachment
|
|
37
48
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfaceattachment.html}
|
|
@@ -1,37 +1,48 @@
|
|
|
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::VPCEndpoint`.
|
|
5
|
+
* Specifies a VPC endpoint. A VPC endpoint provides a private connection between your VPC and an endpoint service. You can use an endpoint service provided by AWS, an MKT Partner, or another AWS accounts in your organization. For more information, see the [User Guide](https://docs.aws.amazon.com/vpc/latest/privatelink/).
|
|
6
|
+
An endpoint of type ``Interface`` establishes connections between the subnets in your VPC and an AWS-service, your own service, or a service hosted by another AWS-account. With an interface VPC endpoint, you specify the subnets in which to create the endpoint and the security groups to associate with the endpoint network interfaces.
|
|
7
|
+
An endpoint of type ``gateway`` serves as a target for a route in your route table for traffic destined for S3 or DDB. You can specify an endpoint policy for the endpoint, which controls access to the service from your VPC. You can also specify the VPC route tables that use the endpoint. For more information about connectivity to S3, see [W
|
|
5
8
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html}
|
|
6
9
|
*/
|
|
7
10
|
export type EC2VPCEndpointProperties = {
|
|
8
11
|
/**
|
|
9
|
-
|
|
10
|
-
|
|
12
|
+
* An endpoint policy, which controls access to the service from the VPC. The default endpoint policy allows full access to the service. Endpoint policies are supported only for gateway and interface endpoints.
|
|
13
|
+
For CloudFormation templates in YAML, you can provide the policy in JSON or YAML format. CFNlong converts YAML policies to JSON format before calling the API to create or modify the VPC endpoint.
|
|
14
|
+
*/
|
|
11
15
|
PolicyDocument?: string | Record<string, any>;
|
|
12
16
|
/**
|
|
13
|
-
|
|
14
|
-
|
|
17
|
+
* Indicate whether to associate a private hosted zone with the specified VPC. The private hosted zone contains a record set for the default public DNS name for the service for the Region (for example, ``kinesis.us-east-1.amazonaws.com``), which resolves to the private IP addresses of the endpoint network interfaces in the VPC. This enables you to make requests to the default public DNS name for the service instead of the public DNS names that are automatically generated by the VPC endpoint service.
|
|
18
|
+
To use a private hosted zone, you must set the following VPC attributes to ``true``: ``enableDnsHostnames`` and ``enableDnsSupport``.
|
|
19
|
+
This property is supported only for interface endpoints.
|
|
20
|
+
Default: ``false``
|
|
21
|
+
*/
|
|
15
22
|
PrivateDnsEnabled?: boolean;
|
|
16
23
|
/**
|
|
17
|
-
*
|
|
24
|
+
* The IDs of the route tables. Routing is supported only for gateway endpoints.
|
|
18
25
|
*/
|
|
19
26
|
RouteTableIds?: string[];
|
|
20
27
|
/**
|
|
21
|
-
* The
|
|
28
|
+
* The IDs of the security groups to associate with the endpoint network interfaces. If this parameter is not specified, we use the default security group for the VPC. Security groups are supported only for interface endpoints.
|
|
22
29
|
*/
|
|
23
30
|
SecurityGroupIds?: string[];
|
|
24
31
|
/**
|
|
25
|
-
* The service
|
|
32
|
+
* The name of the endpoint service.
|
|
26
33
|
*/
|
|
27
34
|
ServiceName: string;
|
|
28
35
|
/**
|
|
29
|
-
* The
|
|
36
|
+
* The IDs of the subnets in which to create endpoint network interfaces. You must specify this property for an interface endpoint or a Gateway Load Balancer endpoint. You can't specify this property for a gateway endpoint. For a Gateway Load Balancer endpoint, you can specify only one subnet.
|
|
30
37
|
*/
|
|
31
38
|
SubnetIds?: string[];
|
|
39
|
+
/**
|
|
40
|
+
* The type of endpoint.
|
|
41
|
+
Default: Gateway
|
|
42
|
+
*/
|
|
32
43
|
VpcEndpointType?: "Interface" | "Gateway" | "GatewayLoadBalancer";
|
|
33
44
|
/**
|
|
34
|
-
* The ID of the VPC
|
|
45
|
+
* The ID of the VPC.
|
|
35
46
|
*/
|
|
36
47
|
VpcId: string;
|
|
37
48
|
};
|
|
@@ -46,7 +57,10 @@ export type EC2VPCEndpointAttributes = {
|
|
|
46
57
|
NetworkInterfaceIds: string[];
|
|
47
58
|
};
|
|
48
59
|
/**
|
|
49
|
-
* Resource
|
|
60
|
+
* Resource type definition for `AWS::EC2::VPCEndpoint`.
|
|
61
|
+
* Specifies a VPC endpoint. A VPC endpoint provides a private connection between your VPC and an endpoint service. You can use an endpoint service provided by AWS, an MKT Partner, or another AWS accounts in your organization. For more information, see the [User Guide](https://docs.aws.amazon.com/vpc/latest/privatelink/).
|
|
62
|
+
An endpoint of type ``Interface`` establishes connections between the subnets in your VPC and an AWS-service, your own service, or a service hosted by another AWS-account. With an interface VPC endpoint, you specify the subnets in which to create the endpoint and the security groups to associate with the endpoint network interfaces.
|
|
63
|
+
An endpoint of type ``gateway`` serves as a target for a route in your route table for traffic destined for S3 or DDB. You can specify an endpoint policy for the endpoint, which controls access to the service from your VPC. You can also specify the VPC route tables that use the endpoint. For more information about connectivity to S3, see [W
|
|
50
64
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html}
|
|
51
65
|
*/
|
|
52
66
|
export declare class EC2VPCEndpoint extends $Resource<"AWS::EC2::VPCEndpoint", EC2VPCEndpointProperties, EC2VPCEndpointAttributes> {
|
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
/**
|
|
3
|
-
* Resource
|
|
3
|
+
* Resource type definition for `AWS::EC2::VPCEndpoint`.
|
|
4
|
+
* Specifies a VPC endpoint. A VPC endpoint provides a private connection between your VPC and an endpoint service. You can use an endpoint service provided by AWS, an MKT Partner, or another AWS accounts in your organization. For more information, see the [User Guide](https://docs.aws.amazon.com/vpc/latest/privatelink/).
|
|
5
|
+
An endpoint of type ``Interface`` establishes connections between the subnets in your VPC and an AWS-service, your own service, or a service hosted by another AWS-account. With an interface VPC endpoint, you specify the subnets in which to create the endpoint and the security groups to associate with the endpoint network interfaces.
|
|
6
|
+
An endpoint of type ``gateway`` serves as a target for a route in your route table for traffic destined for S3 or DDB. You can specify an endpoint policy for the endpoint, which controls access to the service from your VPC. You can also specify the VPC route tables that use the endpoint. For more information about connectivity to S3, see [W
|
|
4
7
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html}
|
|
5
8
|
*/
|
|
6
9
|
export class EC2VPCEndpoint extends $Resource {
|
|
@@ -1,25 +1,33 @@
|
|
|
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::VolumeAttachment`.
|
|
5
|
+
* Attaches an Amazon EBS volume to a running instance and exposes it to the instance with the specified device name.
|
|
6
|
+
Before this resource can be deleted (and therefore the volume detached), you must first unmount the volume in the instance. Failure to do so results in the volume being stuck in the busy state while it is trying to detach, which could possibly damage the file system or the data it contains.
|
|
7
|
+
If an Amazon EBS volume is the root device of an instance, it cannot be detached while the instance is in the "running" state. To detach the root volume, stop the instance first.
|
|
8
|
+
If the root volume is detached from an instance with an MKT product code, then the product codes from that volume are no longer associated with the instance.
|
|
5
9
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-volumeattachment.html}
|
|
6
10
|
*/
|
|
7
11
|
export type EC2VolumeAttachmentProperties = {
|
|
8
12
|
/**
|
|
9
|
-
* The device name
|
|
13
|
+
* The device name (for example, ``/dev/sdh`` or ``xvdh``).
|
|
10
14
|
*/
|
|
11
15
|
Device?: string;
|
|
12
16
|
/**
|
|
13
|
-
* The ID of the instance to which the volume attaches
|
|
17
|
+
* The ID of the instance to which the volume attaches. This value can be a reference to an [AWS::EC2::Instance](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html) resource, or it can be the physical ID of an existing EC2 instance.
|
|
14
18
|
*/
|
|
15
19
|
InstanceId: string;
|
|
16
20
|
/**
|
|
17
|
-
* The ID of the Amazon EBS volume
|
|
21
|
+
* The ID of the Amazon EBS volume. The volume and instance must be within the same Availability Zone. This value can be a reference to an [AWS::EC2::Volume](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ebs-volume.html) resource, or it can be the volume ID of an existing Amazon EBS volume.
|
|
18
22
|
*/
|
|
19
23
|
VolumeId: string;
|
|
20
24
|
};
|
|
21
25
|
/**
|
|
22
|
-
* Resource
|
|
26
|
+
* Resource type definition for `AWS::EC2::VolumeAttachment`.
|
|
27
|
+
* Attaches an Amazon EBS volume to a running instance and exposes it to the instance with the specified device name.
|
|
28
|
+
Before this resource can be deleted (and therefore the volume detached), you must first unmount the volume in the instance. Failure to do so results in the volume being stuck in the busy state while it is trying to detach, which could possibly damage the file system or the data it contains.
|
|
29
|
+
If an Amazon EBS volume is the root device of an instance, it cannot be detached while the instance is in the "running" state. To detach the root volume, stop the instance first.
|
|
30
|
+
If the root volume is detached from an instance with an MKT product code, then the product codes from that volume are no longer associated with the instance.
|
|
23
31
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-volumeattachment.html}
|
|
24
32
|
*/
|
|
25
33
|
export declare class EC2VolumeAttachment extends $Resource<"AWS::EC2::VolumeAttachment", EC2VolumeAttachmentProperties, Record<string, never>> {
|
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
/**
|
|
3
|
-
* Resource
|
|
3
|
+
* Resource type definition for `AWS::EC2::VolumeAttachment`.
|
|
4
|
+
* Attaches an Amazon EBS volume to a running instance and exposes it to the instance with the specified device name.
|
|
5
|
+
Before this resource can be deleted (and therefore the volume detached), you must first unmount the volume in the instance. Failure to do so results in the volume being stuck in the busy state while it is trying to detach, which could possibly damage the file system or the data it contains.
|
|
6
|
+
If an Amazon EBS volume is the root device of an instance, it cannot be detached while the instance is in the "running" state. To detach the root volume, stop the instance first.
|
|
7
|
+
If the root volume is detached from an instance with an MKT product code, then the product codes from that volume are no longer associated with the instance.
|
|
4
8
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-volumeattachment.html}
|
|
5
9
|
*/
|
|
6
10
|
export class EC2VolumeAttachment extends $Resource {
|
package/lib/AWS-ECS-TaskSet.d.ts
CHANGED
|
@@ -39,6 +39,7 @@ export type ECSTaskSetProperties = {
|
|
|
39
39
|
* The details of the service discovery registries to assign to this task set. For more information, see https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-discovery.html.
|
|
40
40
|
*/
|
|
41
41
|
ServiceRegistries?: ServiceRegistry[];
|
|
42
|
+
Tags?: Tag[];
|
|
42
43
|
/**
|
|
43
44
|
* The short name or full Amazon Resource Name (ARN) of the task definition for the tasks in the task set to use.
|
|
44
45
|
*/
|
|
@@ -143,6 +144,14 @@ export type ServiceRegistry = {
|
|
|
143
144
|
*/
|
|
144
145
|
RegistryArn?: string;
|
|
145
146
|
};
|
|
147
|
+
/**
|
|
148
|
+
* Type definition for `AWS::ECS::TaskSet.Tag`.
|
|
149
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskset-tag.html}
|
|
150
|
+
*/
|
|
151
|
+
export type Tag = {
|
|
152
|
+
Key?: string;
|
|
153
|
+
Value?: string;
|
|
154
|
+
};
|
|
146
155
|
/**
|
|
147
156
|
* Resource type definition for `AWS::ECS::TaskSet`.
|
|
148
157
|
* Create a task set in the specified cluster and service. This is used when a service uses the EXTERNAL deployment controller type. For more information, see https://docs.aws.amazon.com/AmazonECS/latest/developerguide/deployment-types.htmlin the Amazon Elastic Container Service Developer Guide.
|
|
@@ -1,17 +1,22 @@
|
|
|
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::IAM::InstanceProfile`.
|
|
5
|
+
* Creates a new instance profile. For information about instance profiles, see [Using instance profiles](https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_use_switch-role-ec2_instance-profiles.html).
|
|
6
|
+
For information about the number of instance profiles you can create, see [object quotas](https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_iam-quotas.html) in the *User Guide*.
|
|
5
7
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html}
|
|
6
8
|
*/
|
|
7
9
|
export type IAMInstanceProfileProperties = {
|
|
8
10
|
/**
|
|
9
|
-
|
|
10
|
-
|
|
11
|
+
* The name of the instance profile to create.
|
|
12
|
+
This parameter allows (through its [regex pattern](https://docs.aws.amazon.com/http://wikipedia.org/wiki/regex)) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@-
|
|
13
|
+
*/
|
|
11
14
|
InstanceProfileName?: string;
|
|
12
15
|
/**
|
|
13
|
-
|
|
14
|
-
|
|
16
|
+
* The path to the instance profile. For more information about paths, see [IAM Identifiers](https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html) in the *IAM User Guide*.
|
|
17
|
+
This parameter is optional. If it is not included, it defaults to a slash (/).
|
|
18
|
+
This parameter allows (through its [regex pattern](https://docs.aws.amazon.com/http://wikipedia.org/wiki/regex)) a string of characters consisting of either a forward slash (/) by itself or a string that must begin and end with forward slashes. In addition, it can contain any ASCII character from the ! (``\u0021``) through the DEL character (``\u007F``), including most punctuation characters, digits, and upper and lowercased letters.
|
|
19
|
+
*/
|
|
15
20
|
Path?: string;
|
|
16
21
|
/**
|
|
17
22
|
* The name of the role to associate with the instance profile. Only one role can be assigned to an EC2 instance at a time, and all applications on the instance share the same role and permissions.
|
|
@@ -23,13 +28,12 @@ export type IAMInstanceProfileProperties = {
|
|
|
23
28
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html#aws-resource-iam-instanceprofile-return-values}
|
|
24
29
|
*/
|
|
25
30
|
export type IAMInstanceProfileAttributes = {
|
|
26
|
-
/**
|
|
27
|
-
* The Amazon Resource Name (ARN) of the instance profile.
|
|
28
|
-
*/
|
|
29
31
|
Arn: string;
|
|
30
32
|
};
|
|
31
33
|
/**
|
|
32
|
-
* Resource
|
|
34
|
+
* Resource type definition for `AWS::IAM::InstanceProfile`.
|
|
35
|
+
* Creates a new instance profile. For information about instance profiles, see [Using instance profiles](https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_use_switch-role-ec2_instance-profiles.html).
|
|
36
|
+
For information about the number of instance profiles you can create, see [object quotas](https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_iam-quotas.html) in the *User Guide*.
|
|
33
37
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html}
|
|
34
38
|
*/
|
|
35
39
|
export declare class IAMInstanceProfile extends $Resource<"AWS::IAM::InstanceProfile", IAMInstanceProfileProperties, IAMInstanceProfileAttributes> {
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
/**
|
|
3
|
-
* Resource
|
|
3
|
+
* Resource type definition for `AWS::IAM::InstanceProfile`.
|
|
4
|
+
* Creates a new instance profile. For information about instance profiles, see [Using instance profiles](https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_use_switch-role-ec2_instance-profiles.html).
|
|
5
|
+
For information about the number of instance profiles you can create, see [object quotas](https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_iam-quotas.html) in the *User Guide*.
|
|
4
6
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html}
|
|
5
7
|
*/
|
|
6
8
|
export class IAMInstanceProfile extends $Resource {
|
package/lib/AWS-IAM-Role.d.ts
CHANGED
|
@@ -1,12 +1,14 @@
|
|
|
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::IAM::Role`.
|
|
5
|
+
* Creates a new role for your AWS-account.
|
|
6
|
+
For more information about roles, see [IAM roles](https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles.html) in the *IAM User Guide*. For information about quotas for role names and the number of roles you can create, see [IAM and quotas](https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_iam-quotas.html) in the *IAM User Guide*.
|
|
5
7
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html}
|
|
6
8
|
*/
|
|
7
9
|
export type IAMRoleProperties = {
|
|
8
10
|
/**
|
|
9
|
-
* The trust policy that is associated with this role.
|
|
11
|
+
* The trust policy that is associated with this role. Trust policies define which entities can assume the role. You can associate only one trust policy with a role. For an example of a policy that can be used to assume a role, see [Template Examples](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#aws-resource-iam-role--examples). For more information about the elements that you can use in an IAM policy, see [Policy Elements Reference](https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_elements.html) in the *User Guide*.
|
|
10
12
|
*/
|
|
11
13
|
AssumeRolePolicyDocument: Record<string, any> | string;
|
|
12
14
|
/**
|
|
@@ -14,31 +16,43 @@ export type IAMRoleProperties = {
|
|
|
14
16
|
*/
|
|
15
17
|
Description?: string;
|
|
16
18
|
/**
|
|
17
|
-
|
|
18
|
-
|
|
19
|
+
* A list of Amazon Resource Names (ARNs) of the IAM managed policies that you want to attach to the role.
|
|
20
|
+
For more information about ARNs, see [Amazon Resource Names (ARNs) and Service Namespaces](https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html) in the *General Reference*.
|
|
21
|
+
*/
|
|
19
22
|
ManagedPolicyArns?: string[];
|
|
20
23
|
/**
|
|
21
|
-
|
|
22
|
-
|
|
24
|
+
* The maximum session duration (in seconds) that you want to set for the specified role. If you do not specify a value for this setting, the default value of one hour is applied. This setting can have a value from 1 hour to 12 hours.
|
|
25
|
+
Anyone who assumes the role from the CLI or API can use the ``DurationSeconds`` API parameter or the ``duration-seconds`` CLI parameter to request a longer session. The ``MaxSessionDuration`` setting determines the maximum duration that can be requested using the ``DurationSeconds`` parameter. If users don't specify a value for the ``DurationSeconds`` parameter, their security credentials are valid for one hour by default. This applies when you use the ``AssumeRole*`` API operations or the ``assume-role*`` CLI operations but does not apply when you use those operations to create a console URL. For more information, see [Using IAM roles](https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_use.html) in the *IAM User Guide*.
|
|
26
|
+
*/
|
|
23
27
|
MaxSessionDuration?: number;
|
|
24
28
|
/**
|
|
25
|
-
|
|
26
|
-
|
|
29
|
+
* The path to the role. For more information about paths, see [IAM Identifiers](https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html) in the *IAM User Guide*.
|
|
30
|
+
This parameter is optional. If it is not included, it defaults to a slash (/).
|
|
31
|
+
This parameter allows (through its [regex pattern](https://docs.aws.amazon.com/http://wikipedia.org/wiki/regex)) a string of characters consisting of either a forward slash (/) by itself or a string that must begin and end with forward slashes. In addition, it can contain any ASCII character from the ! (``\u0021``) through the DEL character (``\u007F``), including most punctuation characters, digits, and upper and lowercased letters.
|
|
32
|
+
*/
|
|
27
33
|
Path?: string;
|
|
28
34
|
/**
|
|
29
|
-
|
|
30
|
-
|
|
35
|
+
* The ARN of the policy used to set the permissions boundary for the role.
|
|
36
|
+
For more information about permissions boundaries, see [Permissions boundaries for IAM identities](https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_boundaries.html) in the *IAM User Guide*.
|
|
37
|
+
*/
|
|
31
38
|
PermissionsBoundary?: string;
|
|
32
39
|
/**
|
|
33
|
-
|
|
34
|
-
|
|
40
|
+
* Adds or updates an inline policy document that is embedded in the specified IAM role.
|
|
41
|
+
When you embed an inline policy in a role, the inline policy is used as part of the role's access (permissions) policy. The role's trust policy is created at the same time as the role. You can update a role's trust policy later. For more information about IAM roles, go to [Using Roles to Delegate Permissions and Federate Identities](https://docs.aws.amazon.com/IAM/latest/UserGuide/roles-toplevel.html).
|
|
42
|
+
A role can also have an attached managed policy. For information about policies, see [Managed Policies and Inline Policies](https://docs.aws.amazon.com/IAM/latest/UserGuide/policies-managed-vs-inline.html) in the *User Guide*.
|
|
43
|
+
For information about limits on the number of inline policies that you can embed with a role, see [Limitations on Entities](https://docs.aws.amazon.com/IAM/latest/UserGuide/LimitationsOnEntities.html) in the *User Guide*.
|
|
44
|
+
If an external policy (such as ``AWS::IAM::Policy`` or
|
|
45
|
+
*/
|
|
35
46
|
Policies?: Policy[];
|
|
36
47
|
/**
|
|
37
|
-
|
|
38
|
-
|
|
48
|
+
* A name for the IAM role, up to 64 characters in length. For valid values, see the ``RoleName`` parameter for the [CreateRole](https://docs.aws.amazon.com/IAM/latest/APIReference/API_CreateRole.html) action in the *User Guide*.
|
|
49
|
+
This parameter allows (per its [regex pattern](https://docs.aws.amazon.com/http://wikipedia.org/wiki/regex)) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@-. The role name must be unique within the account. Role names are not distinguished by case. For example, you cannot create roles named both "Role1" and "role1".
|
|
50
|
+
If you don't specify a name, CFN generates a unique physical ID and uses that ID for the role name.
|
|
51
|
+
If you specify a name, you must specify the ``CAPABILITY_NAMED_IAM`` value to acknowledge your template's capabilities. For more information, see [Acknowledging Resources in Templates](https://docs.aws.amazon.com/AWSCloudFormation/latest/Use
|
|
52
|
+
*/
|
|
39
53
|
RoleName?: string;
|
|
40
54
|
/**
|
|
41
|
-
* A list of tags that are attached to the role.
|
|
55
|
+
* A list of tags that are attached to the role. For more information about tagging, see [Tagging IAM resources](https://docs.aws.amazon.com/IAM/latest/UserGuide/id_tags.html) in the *IAM User Guide*.
|
|
42
56
|
*/
|
|
43
57
|
Tags?: Tag[];
|
|
44
58
|
};
|
|
@@ -47,23 +61,19 @@ export type IAMRoleProperties = {
|
|
|
47
61
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html#aws-resource-iam-role-return-values}
|
|
48
62
|
*/
|
|
49
63
|
export type IAMRoleAttributes = {
|
|
50
|
-
/**
|
|
51
|
-
* The Amazon Resource Name (ARN) for the role.
|
|
52
|
-
*/
|
|
53
64
|
Arn: string;
|
|
54
|
-
/**
|
|
55
|
-
* The stable and unique string identifying the role.
|
|
56
|
-
*/
|
|
57
65
|
RoleId: string;
|
|
58
66
|
};
|
|
59
67
|
/**
|
|
60
68
|
* Type definition for `AWS::IAM::Role.Policy`.
|
|
61
|
-
*
|
|
69
|
+
* Contains information about an attached policy.
|
|
70
|
+
An attached policy is a managed policy that has been attached to a user, group, or role.
|
|
71
|
+
For more information about managed policies, refer to [Managed Policies and Inline Policies](https://docs.aws.amazon.com/IAM/latest/UserGuide/policies-managed-vs-inline.html) in the *User Guide*.
|
|
62
72
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-role-policy.html}
|
|
63
73
|
*/
|
|
64
74
|
export type Policy = {
|
|
65
75
|
/**
|
|
66
|
-
* The policy
|
|
76
|
+
* The entire contents of the policy that defines permissions. For more information, see [Overview of JSON policies](https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#access_policies-json).
|
|
67
77
|
*/
|
|
68
78
|
PolicyDocument: string | Record<string, any>;
|
|
69
79
|
/**
|
|
@@ -73,21 +83,24 @@ export type Policy = {
|
|
|
73
83
|
};
|
|
74
84
|
/**
|
|
75
85
|
* Type definition for `AWS::IAM::Role.Tag`.
|
|
76
|
-
* A
|
|
86
|
+
* A structure that represents user-provided metadata that can be associated with an IAM resource. For more information about tagging, see [Tagging IAM resources](https://docs.aws.amazon.com/IAM/latest/UserGuide/id_tags.html) in the *IAM User Guide*.
|
|
77
87
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-role-tag.html}
|
|
78
88
|
*/
|
|
79
89
|
export type Tag = {
|
|
80
90
|
/**
|
|
81
|
-
* The key name
|
|
91
|
+
* The key name that can be used to look up or retrieve the associated value. For example, ``Department`` or ``Cost Center`` are common choices.
|
|
82
92
|
*/
|
|
83
93
|
Key: string;
|
|
84
94
|
/**
|
|
85
|
-
|
|
86
|
-
|
|
95
|
+
* The value associated with this tag. For example, tags with a key name of ``Department`` could have values such as ``Human Resources``, ``Accounting``, and ``Support``. Tags with a key name of ``Cost Center`` might have values that consist of the number associated with the different cost centers in your company. Typically, many resources have tags with the same key name but with different values.
|
|
96
|
+
AWS always interprets the tag ``Value`` as a single string. If you need to store an array, you can store comma-separated values in the string. However, you must interpret the value in your code.
|
|
97
|
+
*/
|
|
87
98
|
Value: string;
|
|
88
99
|
};
|
|
89
100
|
/**
|
|
90
|
-
* Resource
|
|
101
|
+
* Resource type definition for `AWS::IAM::Role`.
|
|
102
|
+
* Creates a new role for your AWS-account.
|
|
103
|
+
For more information about roles, see [IAM roles](https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles.html) in the *IAM User Guide*. For information about quotas for role names and the number of roles you can create, see [IAM and quotas](https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_iam-quotas.html) in the *IAM User Guide*.
|
|
91
104
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html}
|
|
92
105
|
*/
|
|
93
106
|
export declare class IAMRole extends $Resource<"AWS::IAM::Role", IAMRoleProperties, IAMRoleAttributes> {
|
package/lib/AWS-IAM-Role.js
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
/**
|
|
3
|
-
* Resource
|
|
3
|
+
* Resource type definition for `AWS::IAM::Role`.
|
|
4
|
+
* Creates a new role for your AWS-account.
|
|
5
|
+
For more information about roles, see [IAM roles](https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles.html) in the *IAM User Guide*. For information about quotas for role names and the number of roles you can create, see [IAM and quotas](https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_iam-quotas.html) in the *IAM User Guide*.
|
|
4
6
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html}
|
|
5
7
|
*/
|
|
6
8
|
export class IAMRole extends $Resource {
|
|
@@ -276,56 +276,63 @@ export type DataValue = {
|
|
|
276
276
|
*/
|
|
277
277
|
StringValue?: string;
|
|
278
278
|
};
|
|
279
|
+
/**
|
|
280
|
+
* Type definition for `AWS::IoTTwinMaker::Entity.Definition`.
|
|
281
|
+
* An object that specifies information about a property definition.
|
|
282
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iottwinmaker-entity-definition.html}
|
|
283
|
+
*/
|
|
284
|
+
export type Definition = {
|
|
285
|
+
/**
|
|
286
|
+
* An object that specifies information about a property configuration.
|
|
287
|
+
*/
|
|
288
|
+
Configuration?: PropertyDefinitionConfiguration;
|
|
289
|
+
/**
|
|
290
|
+
* An object that contains information about the data type.
|
|
291
|
+
*/
|
|
292
|
+
DataType?: DataType;
|
|
293
|
+
/**
|
|
294
|
+
* An object that contains the default value.
|
|
295
|
+
*/
|
|
296
|
+
DefaultValue?: DataValue;
|
|
297
|
+
/**
|
|
298
|
+
* A Boolean value that specifies whether the property ID comes from an external data store.
|
|
299
|
+
*/
|
|
300
|
+
IsExternalId?: boolean;
|
|
301
|
+
/**
|
|
302
|
+
* A Boolean value that specifies whether the property definition can be updated.
|
|
303
|
+
*/
|
|
304
|
+
IsFinal?: boolean;
|
|
305
|
+
/**
|
|
306
|
+
* A Boolean value that specifies whether the property definition is imported from an external data store.
|
|
307
|
+
*/
|
|
308
|
+
IsImported?: boolean;
|
|
309
|
+
/**
|
|
310
|
+
* A Boolean value that specifies whether the property definition is inherited from a parent entity.
|
|
311
|
+
*/
|
|
312
|
+
IsInherited?: boolean;
|
|
313
|
+
/**
|
|
314
|
+
* A Boolean value that specifies whether the property is required.
|
|
315
|
+
*/
|
|
316
|
+
IsRequiredInEntity?: boolean;
|
|
317
|
+
/**
|
|
318
|
+
* A Boolean value that specifies whether the property is stored externally.
|
|
319
|
+
*/
|
|
320
|
+
IsStoredExternally?: boolean;
|
|
321
|
+
/**
|
|
322
|
+
* A Boolean value that specifies whether the property consists of time series data.
|
|
323
|
+
*/
|
|
324
|
+
IsTimeSeries?: boolean;
|
|
325
|
+
};
|
|
279
326
|
/**
|
|
280
327
|
* Type definition for `AWS::IoTTwinMaker::Entity.Property`.
|
|
328
|
+
* An object that specifies information about a property.
|
|
281
329
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iottwinmaker-entity-property.html}
|
|
282
330
|
*/
|
|
283
331
|
export type Property = {
|
|
284
332
|
/**
|
|
285
|
-
*
|
|
333
|
+
* The definition of the property.
|
|
286
334
|
*/
|
|
287
|
-
Definition?:
|
|
288
|
-
/**
|
|
289
|
-
* An object that specifies information about a property.
|
|
290
|
-
*/
|
|
291
|
-
Configuration?: PropertyDefinitionConfiguration;
|
|
292
|
-
/**
|
|
293
|
-
* An object that contains information about the data type.
|
|
294
|
-
*/
|
|
295
|
-
DataType?: DataType;
|
|
296
|
-
/**
|
|
297
|
-
* An object that contains the default value.
|
|
298
|
-
*/
|
|
299
|
-
DefaultValue?: DataValue;
|
|
300
|
-
/**
|
|
301
|
-
* A Boolean value that specifies whether the property ID comes from an external data store.
|
|
302
|
-
*/
|
|
303
|
-
IsExternalId?: boolean;
|
|
304
|
-
/**
|
|
305
|
-
* A Boolean value that specifies whether the property definition can be updated.
|
|
306
|
-
*/
|
|
307
|
-
IsFinal?: boolean;
|
|
308
|
-
/**
|
|
309
|
-
* A Boolean value that specifies whether the property definition is imported from an external data store.
|
|
310
|
-
*/
|
|
311
|
-
IsImported?: boolean;
|
|
312
|
-
/**
|
|
313
|
-
* A Boolean value that specifies whether the property definition is inherited from a parent entity.
|
|
314
|
-
*/
|
|
315
|
-
IsInherited?: boolean;
|
|
316
|
-
/**
|
|
317
|
-
* A Boolean value that specifies whether the property is required.
|
|
318
|
-
*/
|
|
319
|
-
IsRequiredInEntity?: boolean;
|
|
320
|
-
/**
|
|
321
|
-
* A Boolean value that specifies whether the property is stored externally.
|
|
322
|
-
*/
|
|
323
|
-
IsStoredExternally?: boolean;
|
|
324
|
-
/**
|
|
325
|
-
* A Boolean value that specifies whether the property consists of time series data.
|
|
326
|
-
*/
|
|
327
|
-
IsTimeSeries?: boolean;
|
|
328
|
-
};
|
|
335
|
+
Definition?: Definition;
|
|
329
336
|
/**
|
|
330
337
|
* The value of the property.
|
|
331
338
|
*/
|
|
@@ -333,7 +340,7 @@ export type Property = {
|
|
|
333
340
|
};
|
|
334
341
|
/**
|
|
335
342
|
* Type definition for `AWS::IoTTwinMaker::Entity.PropertyDefinitionConfiguration`.
|
|
336
|
-
* An object that specifies information about a property.
|
|
343
|
+
* An object that specifies information about a property configuration.
|
|
337
344
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iottwinmaker-entity-propertydefinitionconfiguration.html}
|
|
338
345
|
*/
|
|
339
346
|
export type PropertyDefinitionConfiguration = Record<string, string>;
|
|
@@ -29,6 +29,10 @@ export type IoTWirelessWirelessDeviceProperties = {
|
|
|
29
29
|
* @maxLength `256`
|
|
30
30
|
*/
|
|
31
31
|
Name?: string;
|
|
32
|
+
/**
|
|
33
|
+
* FPort values for the GNSS, stream, and ClockSync functions of the positioning information.
|
|
34
|
+
*/
|
|
35
|
+
Positioning?: "Enabled" | "Disabled";
|
|
32
36
|
/**
|
|
33
37
|
* A list of key-value pairs that contain metadata for the device. Currently not supported, will not create if tags are passed.
|
|
34
38
|
* @maxLength `200`
|
|
@@ -2,7 +2,7 @@ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/re
|
|
|
2
2
|
import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
|
|
3
3
|
/**
|
|
4
4
|
* Resource type definition for `AWS::RDS::Integration`.
|
|
5
|
-
*
|
|
5
|
+
* Creates a zero-ETL integration with Amazon Redshift.
|
|
6
6
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-integration.html}
|
|
7
7
|
*/
|
|
8
8
|
export type RDSIntegrationProperties = {
|
|
@@ -72,7 +72,7 @@ export type Tag = {
|
|
|
72
72
|
};
|
|
73
73
|
/**
|
|
74
74
|
* Resource type definition for `AWS::RDS::Integration`.
|
|
75
|
-
*
|
|
75
|
+
* Creates a zero-ETL integration with Amazon Redshift.
|
|
76
76
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-integration.html}
|
|
77
77
|
*/
|
|
78
78
|
export declare class RDSIntegration extends $Resource<"AWS::RDS::Integration", RDSIntegrationProperties, RDSIntegrationAttributes> {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
/**
|
|
3
3
|
* Resource type definition for `AWS::RDS::Integration`.
|
|
4
|
-
*
|
|
4
|
+
* Creates a zero-ETL integration with Amazon Redshift.
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-integration.html}
|
|
6
6
|
*/
|
|
7
7
|
export class RDSIntegration extends $Resource {
|
|
@@ -74,6 +74,12 @@ export type RedshiftServerlessNamespaceProperties = {
|
|
|
74
74
|
* The ARN for the Redshift application that integrates with IAM Identity Center.
|
|
75
75
|
*/
|
|
76
76
|
RedshiftIdcApplicationArn?: string;
|
|
77
|
+
/**
|
|
78
|
+
* The snapshot copy configurations for the namespace.
|
|
79
|
+
* @minLength `0`
|
|
80
|
+
* @maxLength `1`
|
|
81
|
+
*/
|
|
82
|
+
SnapshotCopyConfigurations?: SnapshotCopyConfiguration[];
|
|
77
83
|
/**
|
|
78
84
|
* The list of tags for the namespace.
|
|
79
85
|
* @minLength `0`
|
|
@@ -135,6 +141,15 @@ export type Namespace = {
|
|
|
135
141
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshiftserverless-namespace-namespacestatus.html}
|
|
136
142
|
*/
|
|
137
143
|
export type NamespaceStatus = "AVAILABLE" | "MODIFYING" | "DELETING";
|
|
144
|
+
/**
|
|
145
|
+
* Type definition for `AWS::RedshiftServerless::Namespace.SnapshotCopyConfiguration`.
|
|
146
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshiftserverless-namespace-snapshotcopyconfiguration.html}
|
|
147
|
+
*/
|
|
148
|
+
export type SnapshotCopyConfiguration = {
|
|
149
|
+
DestinationKmsKeyId?: string;
|
|
150
|
+
DestinationRegion: string;
|
|
151
|
+
SnapshotRetentionPeriod?: number;
|
|
152
|
+
};
|
|
138
153
|
/**
|
|
139
154
|
* Type definition for `AWS::RedshiftServerless::Namespace.Tag`.
|
|
140
155
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshiftserverless-namespace-tag.html}
|