@awboost/cfn-resource-types 0.1.136 → 0.1.137

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.
Files changed (57) hide show
  1. package/lib/AWS-ApiGatewayV2-Integration.d.ts +6 -75
  2. package/lib/AWS-ApiGatewayV2-Integration.js +1 -2
  3. package/lib/AWS-AppIntegrations-Application.d.ts +1 -1
  4. package/lib/AWS-ApplicationSignals-ServiceLevelObjective.d.ts +72 -1
  5. package/lib/AWS-Backup-RestoreTestingPlan.d.ts +6 -0
  6. package/lib/AWS-Batch-ComputeEnvironment.d.ts +1 -0
  7. package/lib/AWS-Bedrock-Flow.d.ts +131 -1
  8. package/lib/AWS-Bedrock-FlowAlias.d.ts +1 -1
  9. package/lib/AWS-Bedrock-FlowVersion.d.ts +118 -1
  10. package/lib/AWS-Bedrock-PromptVersion.d.ts +17 -0
  11. package/lib/AWS-CloudWatch-Alarm.d.ts +7 -4
  12. package/lib/AWS-CodeBuild-Fleet.d.ts +6 -2
  13. package/lib/AWS-EC2-CustomerGateway.d.ts +1 -1
  14. package/lib/AWS-EC2-InternetGateway.d.ts +1 -1
  15. package/lib/AWS-EC2-KeyPair.d.ts +1 -1
  16. package/lib/AWS-EC2-NatGateway.d.ts +1 -1
  17. package/lib/AWS-EC2-Subnet.d.ts +4 -4
  18. package/lib/AWS-EC2-VPCEndpoint.d.ts +4 -2
  19. package/lib/AWS-EC2-VPCEndpoint.js +2 -1
  20. package/lib/AWS-EC2-VPNConnection.d.ts +12 -1
  21. package/lib/AWS-EC2-VPNGateway.d.ts +1 -1
  22. package/lib/AWS-EC2-VPNGatewayRoutePropagation.d.ts +6 -0
  23. package/lib/AWS-EC2-Volume.d.ts +13 -7
  24. package/lib/AWS-EC2-Volume.js +4 -1
  25. package/lib/AWS-ECR-Repository.d.ts +1 -1
  26. package/lib/AWS-ECS-TaskDefinition.d.ts +73 -62
  27. package/lib/AWS-ECS-TaskDefinition.js +1 -1
  28. package/lib/AWS-ElasticLoadBalancingV2-LoadBalancer.d.ts +1 -0
  29. package/lib/AWS-EntityResolution-MatchingWorkflow.d.ts +8 -0
  30. package/lib/AWS-EntityResolution-SchemaMapping.d.ts +1 -1
  31. package/lib/AWS-IoTFleetWise-Campaign.d.ts +20 -0
  32. package/lib/AWS-IoTFleetWise-DecoderManifest.d.ts +2 -2
  33. package/lib/AWS-MSK-Replicator.d.ts +21 -0
  34. package/lib/AWS-MediaLive-Input.d.ts +27 -0
  35. package/lib/AWS-MediaPackageV2-OriginEndpoint.d.ts +2 -2
  36. package/lib/AWS-Neptune-DBCluster.d.ts +7 -3
  37. package/lib/AWS-OpenSearchService-Domain.d.ts +12 -0
  38. package/lib/AWS-PaymentCryptography-Key.d.ts +3 -3
  39. package/lib/AWS-QBusiness-Application.d.ts +45 -0
  40. package/lib/AWS-QBusiness-WebExperience.d.ts +40 -0
  41. package/lib/AWS-QuickSight-Analysis.d.ts +48 -0
  42. package/lib/AWS-QuickSight-Dashboard.d.ts +48 -0
  43. package/lib/AWS-QuickSight-DataSet.d.ts +2 -2
  44. package/lib/AWS-QuickSight-DataSource.d.ts +1 -1
  45. package/lib/AWS-QuickSight-Template.d.ts +48 -0
  46. package/lib/AWS-RDS-DBInstance.d.ts +2 -2
  47. package/lib/AWS-SES-ReceiptRule.d.ts +1 -0
  48. package/lib/AWS-SSMQuickSetup-ConfigurationManager.d.ts +104 -0
  49. package/lib/AWS-SSMQuickSetup-ConfigurationManager.js +12 -0
  50. package/lib/AWS-SageMaker-Domain.d.ts +1 -1
  51. package/lib/AWS-SageMaker-UserProfile.d.ts +1 -1
  52. package/lib/AWS-SecurityHub-AutomationRule.d.ts +332 -96
  53. package/lib/AWS-SecurityHub-DelegatedAdmin.d.ts +9 -7
  54. package/lib/AWS-SecurityHub-DelegatedAdmin.js +4 -1
  55. package/lib/AWS-SecurityHub-FindingAggregator.d.ts +20 -10
  56. package/lib/AWS-SecurityHub-FindingAggregator.js +3 -1
  57. package/package.json +1 -1
@@ -77,7 +77,7 @@ export type CloudWatchAlarmProperties = {
77
77
  /**
78
78
  * The period, in seconds, over which the statistic is applied. This is required for an alarm based on a metric. Valid values are 10, 30, 60, and any multiple of 60.
79
79
  For an alarm based on a math expression, you can't specify ``Period``, and instead you use the ``Metrics`` parameter.
80
- *Minimum:* 10
80
+ *Minimum:* 10
81
81
  */
82
82
  Period?: number;
83
83
  /**
@@ -87,8 +87,10 @@ export type CloudWatchAlarmProperties = {
87
87
  */
88
88
  Statistic?: string;
89
89
  /**
90
- * @maxLength `50`
91
- */
90
+ * A list of key-value pairs to associate with the alarm. You can associate as many as 50 tags with an alarm. To be able to associate tags with the alarm when you create the alarm, you must have the ``cloudwatch:TagResource`` permission.
91
+ Tags can help you organize and categorize your resources. You can also use them to scope user permissions by granting a user permission to access or change only resources with certain tag values.
92
+ * @maxLength `50`
93
+ */
92
94
  Tags?: Tag[];
93
95
  /**
94
96
  * The value to compare with the specified statistic.
@@ -221,11 +223,12 @@ export type MetricStat = {
221
223
  };
222
224
  /**
223
225
  * Type definition for `AWS::CloudWatch::Alarm.Tag`.
226
+ * One of the key-value pairs associated with the alarm. Tags can help you organize and categorize your resources.
224
227
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudwatch-alarm-tag.html}
225
228
  */
226
229
  export type Tag = {
227
230
  /**
228
- * A unique identifier for the tag. The combination of tag keys and values can help you organize and categorize your resources.
231
+ * A string that you can use to assign a value. The combination of tag keys and values can help you organize and categorize your resources.
229
232
  * @minLength `1`
230
233
  * @maxLength `128`
231
234
  */
@@ -9,13 +9,17 @@ export type CodeBuildFleetProperties = {
9
9
  * @min `1`
10
10
  */
11
11
  BaseCapacity?: number;
12
- ComputeType?: "BUILD_GENERAL1_SMALL" | "BUILD_GENERAL1_MEDIUM" | "BUILD_GENERAL1_LARGE" | "BUILD_GENERAL1_2XLARGE";
13
- EnvironmentType?: "WINDOWS_SERVER_2019_CONTAINER" | "WINDOWS_SERVER_2022_CONTAINER" | "LINUX_CONTAINER" | "LINUX_GPU_CONTAINER" | "ARM_CONTAINER";
12
+ ComputeType?: "BUILD_GENERAL1_SMALL" | "BUILD_GENERAL1_MEDIUM" | "BUILD_GENERAL1_LARGE" | "BUILD_GENERAL1_XLARGE" | "BUILD_GENERAL1_2XLARGE";
13
+ EnvironmentType?: "WINDOWS_SERVER_2019_CONTAINER" | "WINDOWS_SERVER_2022_CONTAINER" | "LINUX_CONTAINER" | "LINUX_GPU_CONTAINER" | "ARM_CONTAINER" | "MAC_ARM";
14
14
  /**
15
15
  * @pattern `^(?:arn:)[a-zA-Z+-=,._:/@]+$`
16
16
  */
17
17
  FleetServiceRole?: string;
18
18
  FleetVpcConfig?: VpcConfig;
19
+ /**
20
+ * @pattern `^((aws/codebuild/[A-Za-z-]+:[0-9]+(-[0-9._]+)?)|ami-[a-z0-9]{1,1020})$`
21
+ */
22
+ ImageId?: string;
19
23
  /**
20
24
  * @minLength `2`
21
25
  * @maxLength `128`
@@ -50,7 +50,7 @@ export type EC2CustomerGatewayAttributes = {
50
50
  };
51
51
  /**
52
52
  * Type definition for `AWS::EC2::CustomerGateway.Tag`.
53
- * Specifies a tag. For more information, see [Add tags to a resource](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Tags.html#cloudformation-add-tag-specifications).
53
+ * Specifies a tag. For more information, see [Resource tags](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html).
54
54
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-customergateway-tag.html}
55
55
  */
56
56
  export type Tag = {
@@ -20,7 +20,7 @@ export type EC2InternetGatewayAttributes = {
20
20
  };
21
21
  /**
22
22
  * Type definition for `AWS::EC2::InternetGateway.Tag`.
23
- * Specifies a tag. For more information, see [Add tags to a resource](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Tags.html#cloudformation-add-tag-specifications).
23
+ * Specifies a tag. For more information, see [Resource tags](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html).
24
24
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-internetgateway-tag.html}
25
25
  */
26
26
  export type Tag = {
@@ -47,7 +47,7 @@ export type EC2KeyPairAttributes = {
47
47
  };
48
48
  /**
49
49
  * Type definition for `AWS::EC2::KeyPair.Tag`.
50
- * Specifies a tag. For more information, see [Add tags to a resource](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Tags.html#cloudformation-add-tag-specifications).
50
+ * Specifies a tag. For more information, see [Resource tags](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html).
51
51
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-keypair-tag.html}
52
52
  */
53
53
  export type Tag = {
@@ -58,7 +58,7 @@ export type EC2NatGatewayAttributes = {
58
58
  };
59
59
  /**
60
60
  * Type definition for `AWS::EC2::NatGateway.Tag`.
61
- * Specifies a tag. For more information, see [Add tags to a resource](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Tags.html#cloudformation-add-tag-specifications).
61
+ * Specifies a tag. For more information, see [Resource tags](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html).
62
62
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-natgateway-tag.html}
63
63
  */
64
64
  export type Tag = {
@@ -49,10 +49,6 @@ export type EC2SubnetProperties = {
49
49
  If you specify ``AssignIpv6AddressOnCreation``, you must also specify an IPv6 CIDR block.
50
50
  */
51
51
  Ipv6CidrBlock?: string;
52
- /**
53
- * The IPv6 network ranges for the subnet, in CIDR notation.
54
- */
55
- Ipv6CidrBlocks?: string[];
56
52
  /**
57
53
  * An IPv6 IPAM pool ID for the subnet.
58
54
  */
@@ -101,6 +97,10 @@ export type EC2SubnetProperties = {
101
97
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#aws-resource-ec2-subnet-return-values}
102
98
  */
103
99
  export type EC2SubnetAttributes = {
100
+ /**
101
+ * The IPv6 network ranges for the subnet, in CIDR notation.
102
+ */
103
+ Ipv6CidrBlocks: string[];
104
104
  NetworkAclAssociationId: string;
105
105
  SubnetId: string;
106
106
  };
@@ -4,7 +4,8 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
4
4
  * Resource type definition for `AWS::EC2::VPCEndpoint`.
5
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
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
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 [Why can't I connect to an S3 bucket using a gateway VPC endpoint?](https://docs.aws.amazon.com/premiumsupport/knowledge-center/connect-s3-vpc-endpoint)
8
+ An endpoint of type ``GatewayLoadBalancer`` provides private connectivity between your VPC and virtual appliances from a service provider.
8
9
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html}
9
10
  */
10
11
  export type EC2VPCEndpointProperties = {
@@ -60,7 +61,8 @@ export type EC2VPCEndpointAttributes = {
60
61
  * Resource type definition for `AWS::EC2::VPCEndpoint`.
61
62
  * 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
63
  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
64
+ 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 [Why can't I connect to an S3 bucket using a gateway VPC endpoint?](https://docs.aws.amazon.com/premiumsupport/knowledge-center/connect-s3-vpc-endpoint)
65
+ An endpoint of type ``GatewayLoadBalancer`` provides private connectivity between your VPC and virtual appliances from a service provider.
64
66
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html}
65
67
  */
66
68
  export declare class EC2VPCEndpoint extends $Resource<"AWS::EC2::VPCEndpoint", EC2VPCEndpointProperties, EC2VPCEndpointAttributes> {
@@ -3,7 +3,8 @@ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/re
3
3
  * Resource type definition for `AWS::EC2::VPCEndpoint`.
4
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
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
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 [Why can't I connect to an S3 bucket using a gateway VPC endpoint?](https://docs.aws.amazon.com/premiumsupport/knowledge-center/connect-s3-vpc-endpoint)
7
+ An endpoint of type ``GatewayLoadBalancer`` provides private connectivity between your VPC and virtual appliances from a service provider.
7
8
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html}
8
9
  */
9
10
  export class EC2VPCEndpoint extends $Resource {
@@ -13,7 +13,16 @@ export type EC2VPNConnectionProperties = {
13
13
  * The ID of the customer gateway at your end of the VPN connection.
14
14
  */
15
15
  CustomerGatewayId: string;
16
+ /**
17
+ * Indicate whether to enable acceleration for the VPN connection.
18
+ Default: ``false``
19
+ */
16
20
  EnableAcceleration?: boolean;
21
+ LocalIpv4NetworkCidr?: string;
22
+ LocalIpv6NetworkCidr?: string;
23
+ OutsideIpAddressType?: string;
24
+ RemoteIpv4NetworkCidr?: string;
25
+ RemoteIpv6NetworkCidr?: string;
17
26
  /**
18
27
  * Indicates whether the VPN connection uses static routes only. Static routes must be used for devices that don't support BGP.
19
28
  If you are creating a VPN connection for a device that does not support Border Gateway Protocol (BGP), you must specify ``true``.
@@ -28,6 +37,8 @@ export type EC2VPNConnectionProperties = {
28
37
  You must specify either ``TransitGatewayId`` or ``VpnGatewayId``, but not both.
29
38
  */
30
39
  TransitGatewayId?: string;
40
+ TransportTransitGatewayAttachmentId?: string;
41
+ TunnelInsideIpVersion?: string;
31
42
  /**
32
43
  * The type of VPN connection.
33
44
  */
@@ -51,7 +62,7 @@ export type EC2VPNConnectionAttributes = {
51
62
  };
52
63
  /**
53
64
  * Type definition for `AWS::EC2::VPNConnection.Tag`.
54
- * Specifies a tag. For more information, see [Add tags to a resource](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Tags.html#cloudformation-add-tag-specifications).
65
+ * Specifies a tag. For more information, see [Resource tags](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html).
55
66
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-vpnconnection-tag.html}
56
67
  */
57
68
  export type Tag = {
@@ -29,7 +29,7 @@ export type EC2VPNGatewayAttributes = {
29
29
  };
30
30
  /**
31
31
  * Type definition for `AWS::EC2::VPNGateway.Tag`.
32
- * Specifies a tag. For more information, see [Add tags to a resource](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Tags.html#cloudformation-add-tag-specifications).
32
+ * Specifies a tag. For more information, see [Resource tags](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html).
33
33
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-vpngateway-tag.html}
34
34
  */
35
35
  export type Tag = {
@@ -5,7 +5,13 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
5
5
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpngatewayroutepropagation.html}
6
6
  */
7
7
  export type EC2VPNGatewayRoutePropagationProperties = {
8
+ /**
9
+ * The ID of the route table. The routing table must be associated with the same VPC that the virtual private gateway is attached to
10
+ */
8
11
  RouteTableIds: string[];
12
+ /**
13
+ * The ID of the virtual private gateway that is attached to a VPC. The virtual private gateway must be attached to the same VPC that the routing tables are associated with
14
+ */
9
15
  VpnGatewayId: string;
10
16
  };
11
17
  /**
@@ -9,7 +9,10 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
9
9
  + You successfully update an Amazon EBS volume and the update succeeds. When you attempt another update within the cooldown window, that update will be subject to a cooldown period.
10
10
  + You successfully update an Amazon EBS volume and the update succeeds but another change in your ``update-stack`` call fails. The rollback will be subject to a cooldown period.
11
11
 
12
- For more information on the coo
12
+ For more information, see [Requirements for EBS volume modifications](https://docs.aws.amazon.com/ebs/latest/userguide/modify-volume-requirements.html).
13
+ *DeletionPolicy attribute*
14
+ To control how CFNlong handles the volume when the stack is deleted, set a deletion policy for your volume. You can choose to retain the volume, to delete the volume, or to create a snapshot of the volume. For more information, see [DeletionPolicy attribute](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-attribute-deletionpolicy.html).
15
+ If you set a deletion policy that creates a snapshot, all tags on the volume are included in the snapshot.
13
16
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-volume.html}
14
17
  */
15
18
  export type EC2VolumeProperties = {
@@ -22,8 +25,8 @@ export type EC2VolumeProperties = {
22
25
  */
23
26
  AvailabilityZone: string;
24
27
  /**
25
- * Indicates whether the volume should be encrypted. The effect of setting the encryption state to ``true`` depends on the volume origin (new or from a snapshot), starting encryption state, ownership, and whether encryption by default is enabled. For more information, see [Encryption by default](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSEncryption.html#encryption-by-default) in the *Amazon Elastic Compute Cloud User Guide*.
26
- Encrypted Amazon EBS volumes must be attached to instances that support Amazon EBS encryption. For more information, see [Supported instance types](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSEncryption.html#EBSEncryption_supported_instances).
28
+ * Indicates whether the volume should be encrypted. The effect of setting the encryption state to ``true`` depends on the volume origin (new or from a snapshot), starting encryption state, ownership, and whether encryption by default is enabled. For more information, see [Encryption by default](https://docs.aws.amazon.com/ebs/latest/userguide/work-with-ebs-encr.html#encryption-by-default) in the *Amazon EBS User Guide*.
29
+ Encrypted Amazon EBS volumes must be attached to instances that support Amazon EBS encryption. For more information, see [Supported instance types](https://docs.aws.amazon.com/ebs/latest/userguide/ebs-encryption-requirements.html#ebs-encryption_supported_instances).
27
30
  */
28
31
  Encrypted?: boolean;
29
32
  /**
@@ -33,7 +36,7 @@ export type EC2VolumeProperties = {
33
36
  + ``io1``: 100 - 64,000 IOPS
34
37
  + ``io2``: 100 - 256,000 IOPS
35
38
 
36
- For ``io2`` volumes, you can achieve up to 256,000 IOPS on [instances built on the Nitro System](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instance-types.html#ec2-nitro-instances). On other instances, you can achieve performance up to 32,000 IOPS.
39
+ For ``io2`` volumes, you can achieve up to 256,000 IOPS on [instances built on the Nitro System](https://docs.aws.amazon.com/ec2/latest/instancetypes/ec2-nitro-instances.html). On other instances, you can achieve performance up to 32,000 IOPS.
37
40
  This parameter is required for ``io1`` and ``io2`` volumes. The default for ``gp3`` volumes is 3,000 IOPS. This parameter is not supported for ``gp2``, ``st1``, ``sc1``, or ``standard`` volumes.
38
41
  */
39
42
  Iops?: number;
@@ -49,7 +52,7 @@ export type EC2VolumeProperties = {
49
52
  KmsKeyId?: string;
50
53
  /**
51
54
  * Indicates whether Amazon EBS Multi-Attach is enabled.
52
- CFNlong does not currently support updating a single-attach volume to be multi-attach enabled, updating a multi-attach enabled volume to be single-attach, or updating the size or number of I/O operations per second (IOPS) of a multi-attach enabled volume.
55
+ CFNlong does not currently support updating a single-attach volume to be multi-attach enabled, updating a multi-attach enabled volume to be single-attach, or updating the size or number of I/O operations per second (IOPS) of a multi-attach enabled volume.
53
56
  */
54
57
  MultiAttachEnabled?: boolean;
55
58
  /**
@@ -88,7 +91,7 @@ export type EC2VolumeProperties = {
88
91
  + Cold HDD: ``sc1``
89
92
  + Magnetic: ``standard``
90
93
 
91
- For more information, see [Amazon EBS volume types](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSVolumeTypes.html) in the *Amazon Elastic Compute Cloud User Guide*.
94
+ For more information, see [Amazon EBS volume types](https://docs.aws.amazon.com/ebs/latest/userguide/ebs-volume-types.html).
92
95
  Default: ``gp2``
93
96
  */
94
97
  VolumeType?: string;
@@ -124,7 +127,10 @@ export type Tag = {
124
127
  + You successfully update an Amazon EBS volume and the update succeeds. When you attempt another update within the cooldown window, that update will be subject to a cooldown period.
125
128
  + You successfully update an Amazon EBS volume and the update succeeds but another change in your ``update-stack`` call fails. The rollback will be subject to a cooldown period.
126
129
 
127
- For more information on the coo
130
+ For more information, see [Requirements for EBS volume modifications](https://docs.aws.amazon.com/ebs/latest/userguide/modify-volume-requirements.html).
131
+ *DeletionPolicy attribute*
132
+ To control how CFNlong handles the volume when the stack is deleted, set a deletion policy for your volume. You can choose to retain the volume, to delete the volume, or to create a snapshot of the volume. For more information, see [DeletionPolicy attribute](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-attribute-deletionpolicy.html).
133
+ If you set a deletion policy that creates a snapshot, all tags on the volume are included in the snapshot.
128
134
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-volume.html}
129
135
  */
130
136
  export declare class EC2Volume extends $Resource<"AWS::EC2::Volume", EC2VolumeProperties, EC2VolumeAttributes> {
@@ -8,7 +8,10 @@ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/re
8
8
  + You successfully update an Amazon EBS volume and the update succeeds. When you attempt another update within the cooldown window, that update will be subject to a cooldown period.
9
9
  + You successfully update an Amazon EBS volume and the update succeeds but another change in your ``update-stack`` call fails. The rollback will be subject to a cooldown period.
10
10
 
11
- For more information on the coo
11
+ For more information, see [Requirements for EBS volume modifications](https://docs.aws.amazon.com/ebs/latest/userguide/modify-volume-requirements.html).
12
+ *DeletionPolicy attribute*
13
+ To control how CFNlong handles the volume when the stack is deleted, set a deletion policy for your volume. You can choose to retain the volume, to delete the volume, or to create a snapshot of the volume. For more information, see [DeletionPolicy attribute](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-attribute-deletionpolicy.html).
14
+ If you set a deletion policy that creates a snapshot, all tags on the volume are included in the snapshot.
12
15
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-volume.html}
13
16
  */
14
17
  export class EC2Volume extends $Resource {
@@ -78,7 +78,7 @@ export type EncryptionConfiguration = {
78
78
  * The encryption type to use.
79
79
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-repository-encryptiontype.html}
80
80
  */
81
- export type EncryptionType = "AES256" | "KMS";
81
+ export type EncryptionType = "AES256" | "KMS" | "KMS_DSSE";
82
82
  /**
83
83
  * Type definition for `AWS::ECR::Repository.ImageScanningConfiguration`.
84
84
  * The image scanning configuration for a repository.