@awboost/cfn-resource-types 0.1.517 → 0.1.518
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.
|
@@ -45,7 +45,7 @@ export type BedrockBlueprintAttributes = {
|
|
|
45
45
|
/**
|
|
46
46
|
* ARN of a Blueprint
|
|
47
47
|
* @maxLength `128`
|
|
48
|
-
* @pattern `^arn:aws(|-cn|-us-gov):bedrock:[a-zA-Z0-9-]*:(aws|[0-9]{12}):blueprint/(bedrock-data-automation-public-[a-zA-Z0-9-_]{1,30}|[a-zA-Z0-9-]{12,36})$`
|
|
48
|
+
* @pattern `^arn:aws(|-cn|-us-gov|-iso|-iso-[a-z]):bedrock:[a-zA-Z0-9-]*:(aws|[0-9]{12}):blueprint/(bedrock-data-automation-public-[a-zA-Z0-9-_]{1,30}|[a-zA-Z0-9-]{12,36})$`
|
|
49
49
|
*/
|
|
50
50
|
BlueprintArn: string;
|
|
51
51
|
/**
|
|
@@ -65,7 +65,7 @@ export type BedrockDataAutomationProjectAttributes = {
|
|
|
65
65
|
/**
|
|
66
66
|
* ARN of a DataAutomationProject
|
|
67
67
|
* @maxLength `128`
|
|
68
|
-
* @pattern `^arn:aws(|-cn|-us-gov):bedrock:[a-zA-Z0-9-]*:(aws|[0-9]{12}):data-automation-project/[a-zA-Z0-9-]{12,36}$`
|
|
68
|
+
* @pattern `^arn:aws(|-cn|-us-gov|-iso|-iso-[a-z]):bedrock:[a-zA-Z0-9-]*:(aws|[0-9]{12}):data-automation-project/[a-zA-Z0-9-]{12,36}$`
|
|
69
69
|
*/
|
|
70
70
|
ProjectArn: string;
|
|
71
71
|
/**
|
|
@@ -154,7 +154,7 @@ export type BlueprintItem = {
|
|
|
154
154
|
/**
|
|
155
155
|
* ARN of a Blueprint
|
|
156
156
|
* @maxLength `128`
|
|
157
|
-
* @pattern `^arn:aws(|-cn|-us-gov):bedrock:[a-zA-Z0-9-]*:(aws|[0-9]{12}):blueprint/(bedrock-data-automation-public-[a-zA-Z0-9-_]{1,30}|[a-zA-Z0-9-]{12,36})$`
|
|
157
|
+
* @pattern `^arn:aws(|-cn|-us-gov|-iso|-iso-[a-z]):bedrock:[a-zA-Z0-9-]*:(aws|[0-9]{12}):blueprint/(bedrock-data-automation-public-[a-zA-Z0-9-_]{1,30}|[a-zA-Z0-9-]{12,36})$`
|
|
158
158
|
*/
|
|
159
159
|
BlueprintArn: string;
|
|
160
160
|
/**
|
|
@@ -25,6 +25,7 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
25
25
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbinstance.html}
|
|
26
26
|
*/
|
|
27
27
|
export type RDSDBInstanceProperties = {
|
|
28
|
+
AdditionalStorageVolumes?: AdditionalStorageVolume[];
|
|
28
29
|
/**
|
|
29
30
|
* The amount of storage in gibibytes (GiB) to be initially allocated for the database instance.
|
|
30
31
|
If any value is set in the ``Iops`` parameter, ``AllocatedStorage`` must be at least 100 GiB, which corresponds to the minimum Iops value of 1,000. If you increase the ``Iops`` value (in 1,000 IOPS increments), then you must also increase the ``AllocatedStorage`` value (in 100-GiB increments).
|
|
@@ -923,6 +924,37 @@ export type RDSDBInstanceAttributes = {
|
|
|
923
924
|
StatusType: string;
|
|
924
925
|
}[];
|
|
925
926
|
};
|
|
927
|
+
/**
|
|
928
|
+
* Type definition for `AWS::RDS::DBInstance.AdditionalStorageVolume`.
|
|
929
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbinstance-additionalstoragevolume.html}
|
|
930
|
+
*/
|
|
931
|
+
export type AdditionalStorageVolume = {
|
|
932
|
+
/**
|
|
933
|
+
* The amount of storage allocated for the additional storage volume, in gibibytes (GiB). The minimum is 20 GiB. The maximum is 65,536 GiB (64 TiB).
|
|
934
|
+
* @pattern `^[0-9]*$`
|
|
935
|
+
*/
|
|
936
|
+
AllocatedStorage?: string;
|
|
937
|
+
/**
|
|
938
|
+
* The number of I/O operations per second (IOPS) provisioned for the additional storage volume.
|
|
939
|
+
*/
|
|
940
|
+
Iops?: number;
|
|
941
|
+
/**
|
|
942
|
+
* The upper limit in gibibytes (GiB) to which RDS can automatically scale the storage of the additional storage volume.
|
|
943
|
+
*/
|
|
944
|
+
MaxAllocatedStorage?: number;
|
|
945
|
+
/**
|
|
946
|
+
* The storage throughput value for the additional storage volume, in mebibytes per second (MiBps). This setting applies only to the General Purpose SSD gp3 storage type.
|
|
947
|
+
*/
|
|
948
|
+
StorageThroughput?: number;
|
|
949
|
+
/**
|
|
950
|
+
* The storage type for the additional storage volume.
|
|
951
|
+
*/
|
|
952
|
+
StorageType?: string;
|
|
953
|
+
/**
|
|
954
|
+
* The name of the additional storage volume.
|
|
955
|
+
*/
|
|
956
|
+
VolumeName?: string;
|
|
957
|
+
};
|
|
926
958
|
/**
|
|
927
959
|
* Type definition for `AWS::RDS::DBInstance.DBInstanceRole`.
|
|
928
960
|
* Information about an AWS Identity and Access Management (IAM) role that is associated with a DB instance.
|