@awboost/cfn-resource-types 0.1.469 → 0.1.470
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.
|
@@ -95,7 +95,7 @@ export type GlobalSecondaryIndex = {
|
|
|
95
95
|
IndexName: string;
|
|
96
96
|
/**
|
|
97
97
|
* @minLength `1`
|
|
98
|
-
* @maxLength `
|
|
98
|
+
* @maxLength `8`
|
|
99
99
|
*/
|
|
100
100
|
KeySchema: KeySchema[];
|
|
101
101
|
Projection: Projection;
|
|
@@ -235,7 +235,7 @@ export type ReplicaSSESpecification = {
|
|
|
235
235
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-globaltable-replicastreamspecification.html}
|
|
236
236
|
*/
|
|
237
237
|
export type ReplicaStreamSpecification = {
|
|
238
|
-
ResourcePolicy
|
|
238
|
+
ResourcePolicy?: ResourcePolicy;
|
|
239
239
|
};
|
|
240
240
|
/**
|
|
241
241
|
* Type definition for `AWS::DynamoDB::GlobalTable.ResourcePolicy`.
|
package/lib/AWS-EC2-Volume.d.ts
CHANGED
|
@@ -24,21 +24,21 @@ export type EC2VolumeProperties = {
|
|
|
24
24
|
* The ID of the Availability Zone in which to create the volume. For example, ``us-east-1a``.
|
|
25
25
|
Either ``AvailabilityZone`` or ``AvailabilityZoneId`` must be specified, but not both.
|
|
26
26
|
*/
|
|
27
|
-
AvailabilityZone
|
|
27
|
+
AvailabilityZone?: string;
|
|
28
|
+
AvailabilityZoneId?: string;
|
|
28
29
|
/**
|
|
29
30
|
* 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*.
|
|
30
31
|
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).
|
|
31
32
|
*/
|
|
32
33
|
Encrypted?: boolean;
|
|
33
34
|
/**
|
|
34
|
-
* The number of I/O operations per second (IOPS).
|
|
35
|
-
|
|
36
|
-
+
|
|
37
|
-
+
|
|
38
|
-
+
|
|
35
|
+
* The number of I/O operations per second (IOPS) to provision for the volume. Required for ``io1`` and ``io2`` volumes. Optional for ``gp3`` volumes. Omit for all other volume types.
|
|
36
|
+
Valid ranges:
|
|
37
|
+
+ gp3: ``3,000``(*default*)``- 80,000`` IOPS
|
|
38
|
+
+ io1: ``100 - 64,000`` IOPS
|
|
39
|
+
+ io2: ``100 - 256,000`` IOPS
|
|
39
40
|
|
|
40
|
-
|
|
41
|
-
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.
|
|
41
|
+
[Instances built on the Nitro System](https://docs.aws.amazon.com/ec2/latest/instancetypes/ec2-nitro-instances.html) can support up to 256,000 IOPS. Other instances can support up to 32,000 IOPS.
|
|
42
42
|
*/
|
|
43
43
|
Iops?: number;
|
|
44
44
|
/**
|
|
@@ -61,19 +61,21 @@ export type EC2VolumeProperties = {
|
|
|
61
61
|
*/
|
|
62
62
|
OutpostArn?: string;
|
|
63
63
|
/**
|
|
64
|
-
* The size of the volume, in GiBs. You must specify either a snapshot ID or a volume size. If you specify a snapshot, the default is the snapshot size
|
|
65
|
-
|
|
66
|
-
+
|
|
67
|
-
+ ``
|
|
68
|
-
+ ``
|
|
69
|
-
+
|
|
70
|
-
+ ``
|
|
64
|
+
* The size of the volume, in GiBs. You must specify either a snapshot ID or a volume size. If you specify a snapshot, the default is the snapshot size, and you can specify a volume size that is equal to or larger than the snapshot size.
|
|
65
|
+
Valid sizes:
|
|
66
|
+
+ gp2: ``1 - 16,384`` GiB
|
|
67
|
+
+ gp3: ``1 - 65,536`` GiB
|
|
68
|
+
+ io1: ``4 - 16,384`` GiB
|
|
69
|
+
+ io2: ``4 - 65,536`` GiB
|
|
70
|
+
+ st1 and sc1: ``125 - 16,384`` GiB
|
|
71
|
+
+ standard: ``1 - 1024`` GiB
|
|
71
72
|
*/
|
|
72
73
|
Size?: number;
|
|
73
74
|
/**
|
|
74
75
|
* The snapshot from which to create the volume. You must specify either a snapshot ID or a volume size.
|
|
75
76
|
*/
|
|
76
77
|
SnapshotId?: string;
|
|
78
|
+
SourceVolumeId?: string;
|
|
77
79
|
/**
|
|
78
80
|
* The tags to apply to the volume during creation.
|
|
79
81
|
*/
|
package/lib/AWS-KMS-Key.d.ts
CHANGED
|
@@ -93,7 +93,7 @@ export type KMSKeyProperties = {
|
|
|
93
93
|
+ SM2 key pairs (encryption and decryption *or* signing and verification *or* deriving shared secrets)
|
|
94
94
|
+ ``SM2`` (China Regions only)
|
|
95
95
|
*/
|
|
96
|
-
KeySpec?: "SYMMETRIC_DEFAULT" | "RSA_2048" | "RSA_3072" | "RSA_4096" | "ECC_NIST_P256" | "ECC_NIST_P384" | "ECC_NIST_P521" | "ECC_SECG_P256K1" | "HMAC_224" | "HMAC_256" | "HMAC_384" | "HMAC_512" | "SM2" | "ML_DSA_44" | "ML_DSA_65" | "ML_DSA_87";
|
|
96
|
+
KeySpec?: "SYMMETRIC_DEFAULT" | "RSA_2048" | "RSA_3072" | "RSA_4096" | "ECC_NIST_P256" | "ECC_NIST_P384" | "ECC_NIST_P521" | "ECC_SECG_P256K1" | "HMAC_224" | "HMAC_256" | "HMAC_384" | "HMAC_512" | "SM2" | "ML_DSA_44" | "ML_DSA_65" | "ML_DSA_87" | "ECC_NIST_EDWARDS25519";
|
|
97
97
|
/**
|
|
98
98
|
* Determines the [cryptographic operations](https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#cryptographic-operations) for which you can use the KMS key. The default value is ``ENCRYPT_DECRYPT``. This property is required for asymmetric KMS keys and HMAC KMS keys. You can't change the ``KeyUsage`` value after the KMS key is created.
|
|
99
99
|
If you change the value of the ``KeyUsage`` property on an existing KMS key, the update request fails, regardless of the value of the [UpdateReplacePolicy attribute](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-attribute-updatereplacepolicy.html). This prevents you from accidentally deleting a KMS key by changing an immutable property value.
|
|
@@ -10,6 +10,12 @@ export type KinesisStreamProperties = {
|
|
|
10
10
|
* @maxLength `7`
|
|
11
11
|
*/
|
|
12
12
|
DesiredShardLevelMetrics?: EnhancedMetric[];
|
|
13
|
+
/**
|
|
14
|
+
* Maximum size of a data record in KiB allowed to be put into Kinesis stream.
|
|
15
|
+
* @min `1024`
|
|
16
|
+
* @max `10240`
|
|
17
|
+
*/
|
|
18
|
+
MaxRecordSizeInKiB?: number;
|
|
13
19
|
/**
|
|
14
20
|
* The name of the Kinesis stream.
|
|
15
21
|
* @minLength `1`
|