@awboost/cfn-resource-types 0.1.358 → 0.1.360
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-Amplify-App.d.ts
CHANGED
|
@@ -45,6 +45,7 @@ export type AmplifyAppProperties = {
|
|
|
45
45
|
* @pattern `(?s).*`
|
|
46
46
|
*/
|
|
47
47
|
IAMServiceRole?: string;
|
|
48
|
+
JobConfig?: JobConfig;
|
|
48
49
|
/**
|
|
49
50
|
* @minLength `1`
|
|
50
51
|
* @maxLength `255`
|
|
@@ -190,6 +191,13 @@ export type EnvironmentVariable = {
|
|
|
190
191
|
*/
|
|
191
192
|
Value: string;
|
|
192
193
|
};
|
|
194
|
+
/**
|
|
195
|
+
* Type definition for `AWS::Amplify::App.JobConfig`.
|
|
196
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-jobconfig.html}
|
|
197
|
+
*/
|
|
198
|
+
export type JobConfig = {
|
|
199
|
+
BuildComputeType: "STANDARD_8GB" | "LARGE_16GB" | "XLARGE_72GB";
|
|
200
|
+
};
|
|
193
201
|
/**
|
|
194
202
|
* Type definition for `AWS::Amplify::App.Tag`.
|
|
195
203
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-tag.html}
|
|
@@ -14,7 +14,7 @@ export type CleanRoomsCollaborationProperties = {
|
|
|
14
14
|
*/
|
|
15
15
|
CreatorDisplayName: string;
|
|
16
16
|
CreatorMLMemberAbilities?: MLMemberAbilities;
|
|
17
|
-
CreatorMemberAbilities
|
|
17
|
+
CreatorMemberAbilities?: MemberAbility[];
|
|
18
18
|
CreatorPaymentConfiguration?: PaymentConfiguration;
|
|
19
19
|
DataEncryptionMetadata?: DataEncryptionMetadata;
|
|
20
20
|
/**
|
|
@@ -28,7 +28,7 @@ export type CleanRoomsCollaborationProperties = {
|
|
|
28
28
|
* @minLength `0`
|
|
29
29
|
* @maxLength `9`
|
|
30
30
|
*/
|
|
31
|
-
Members
|
|
31
|
+
Members?: MemberSpecification[];
|
|
32
32
|
/**
|
|
33
33
|
* @minLength `1`
|
|
34
34
|
* @maxLength `100`
|
|
@@ -117,7 +117,7 @@ export type MemberSpecification = {
|
|
|
117
117
|
*/
|
|
118
118
|
DisplayName: string;
|
|
119
119
|
MLMemberAbilities?: MLMemberAbilities;
|
|
120
|
-
MemberAbilities
|
|
120
|
+
MemberAbilities?: MemberAbility[];
|
|
121
121
|
PaymentConfiguration?: PaymentConfiguration;
|
|
122
122
|
};
|
|
123
123
|
/**
|
|
@@ -257,6 +257,16 @@ export type Ebs = {
|
|
|
257
257
|
Valid Range: Minimum value of 125. Maximum value of 1000.
|
|
258
258
|
*/
|
|
259
259
|
Throughput?: number;
|
|
260
|
+
/**
|
|
261
|
+
* Specifies the Amazon EBS Provisioned Rate for Volume Initialization (volume initialization rate), in MiB/s, at which to download the snapshot blocks from Amazon S3 to the volume. This is also known as *volume initialization*. Specifying a volume initialization rate ensures that the volume is initialized at a predictable and consistent rate after creation.
|
|
262
|
+
This parameter is supported only for volumes created from snapshots. Omit this parameter if:
|
|
263
|
+
+ You want to create the volume using fast snapshot restore. You must specify a snapshot that is enabled for fast snapshot restore. In this case, the volume is fully initialized at creation.
|
|
264
|
+
If you specify a snapshot that is enabled for fast snapshot restore and a volume initialization rate, the volume will be initialized at the specified rate instead of fast snapshot restore.
|
|
265
|
+
+ You want to create a volume that is initialized at the default rate.
|
|
266
|
+
|
|
267
|
+
For more information, see [Initialize Amazon EBS volumes](https://docs.aws.amazon.com/ebs/latest/userguide/initalize-volume.html) in the *Amazon EC2 User Guide*.
|
|
268
|
+
Valid range: 100 - 300 MiB/s
|
|
269
|
+
*/
|
|
260
270
|
VolumeInitializationRate?: number;
|
|
261
271
|
/**
|
|
262
272
|
* The size of the volume, in GiBs. You must specify either a snapshot ID or a volume size. The following are the supported volumes sizes for each volume type:
|
|
@@ -32,9 +32,9 @@ export type OrganizationsPolicyProperties = {
|
|
|
32
32
|
*/
|
|
33
33
|
TargetIds?: string[];
|
|
34
34
|
/**
|
|
35
|
-
* The type of policy to create. You can specify one of the following values: AISERVICES_OPT_OUT_POLICY, BACKUP_POLICY, SERVICE_CONTROL_POLICY, TAG_POLICY, CHATBOT_POLICY, RESOURCE_CONTROL_POLICY,DECLARATIVE_POLICY_EC2
|
|
35
|
+
* The type of policy to create. You can specify one of the following values: AISERVICES_OPT_OUT_POLICY, BACKUP_POLICY, SERVICE_CONTROL_POLICY, TAG_POLICY, CHATBOT_POLICY, RESOURCE_CONTROL_POLICY,DECLARATIVE_POLICY_EC2, SECURITYHUB_POLICY
|
|
36
36
|
*/
|
|
37
|
-
Type: "SERVICE_CONTROL_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "BACKUP_POLICY" | "TAG_POLICY" | "CHATBOT_POLICY" | "RESOURCE_CONTROL_POLICY" | "DECLARATIVE_POLICY_EC2";
|
|
37
|
+
Type: "SERVICE_CONTROL_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "BACKUP_POLICY" | "TAG_POLICY" | "CHATBOT_POLICY" | "RESOURCE_CONTROL_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY";
|
|
38
38
|
};
|
|
39
39
|
/**
|
|
40
40
|
* Attribute type definition for `AWS::Organizations::Policy`.
|