@awboost/cfn-resource-types 0.1.403 → 0.1.404
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.
|
@@ -54,7 +54,7 @@ export type BillingBillingViewProperties = {
|
|
|
54
54
|
*/
|
|
55
55
|
export type BillingBillingViewAttributes = {
|
|
56
56
|
/**
|
|
57
|
-
* @pattern `arn:aws[a-z-]*:(billing)::[0-9]{12}:billingview/[a-zA-Z0-
|
|
57
|
+
* @pattern `arn:aws[a-z-]*:(billing)::[0-9]{12}:billingview/[a-zA-Z0-9/:_\+=\.\-@]{0,75}[a-zA-Z0-9]`
|
|
58
58
|
*/
|
|
59
59
|
Arn: string;
|
|
60
60
|
BillingViewType: BillingViewType;
|
|
@@ -13,17 +13,17 @@ export type ConnectPredefinedAttributeProperties = {
|
|
|
13
13
|
/**
|
|
14
14
|
* The name of the predefined attribute.
|
|
15
15
|
* @minLength `1`
|
|
16
|
-
* @maxLength `
|
|
16
|
+
* @maxLength `100`
|
|
17
17
|
*/
|
|
18
18
|
Name: string;
|
|
19
19
|
/**
|
|
20
20
|
* The values of a predefined attribute.
|
|
21
21
|
*/
|
|
22
|
-
Values
|
|
22
|
+
Values?: {
|
|
23
23
|
/**
|
|
24
24
|
* Predefined attribute values of type string list.
|
|
25
25
|
* @minLength `1`
|
|
26
|
-
* @maxLength `
|
|
26
|
+
* @maxLength `500`
|
|
27
27
|
*/
|
|
28
28
|
StringList?: string[];
|
|
29
29
|
};
|
|
@@ -88,6 +88,7 @@ export type DeadlineFleetAttributes = {
|
|
|
88
88
|
*/
|
|
89
89
|
FleetId: string;
|
|
90
90
|
Status: FleetStatus;
|
|
91
|
+
StatusMessage: string;
|
|
91
92
|
WorkerCount: number;
|
|
92
93
|
};
|
|
93
94
|
/**
|
|
@@ -222,7 +223,7 @@ export type Ec2EbsVolume = {
|
|
|
222
223
|
* Type definition for `AWS::Deadline::Fleet.Ec2MarketType`.
|
|
223
224
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-deadline-fleet-ec2markettype.html}
|
|
224
225
|
*/
|
|
225
|
-
export type Ec2MarketType = "on-demand" | "spot";
|
|
226
|
+
export type Ec2MarketType = "on-demand" | "spot" | "wait-and-save";
|
|
226
227
|
/**
|
|
227
228
|
* Type definition for `AWS::Deadline::Fleet.FleetAmountCapability`.
|
|
228
229
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-deadline-fleet-fleetamountcapability.html}
|
|
@@ -283,7 +284,7 @@ export type FleetConfiguration = {
|
|
|
283
284
|
* Type definition for `AWS::Deadline::Fleet.FleetStatus`.
|
|
284
285
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-deadline-fleet-fleetstatus.html}
|
|
285
286
|
*/
|
|
286
|
-
export type FleetStatus = "ACTIVE" | "CREATE_IN_PROGRESS" | "UPDATE_IN_PROGRESS" | "CREATE_FAILED" | "UPDATE_FAILED";
|
|
287
|
+
export type FleetStatus = "ACTIVE" | "CREATE_IN_PROGRESS" | "UPDATE_IN_PROGRESS" | "CREATE_FAILED" | "UPDATE_FAILED" | "SUSPENDED";
|
|
287
288
|
/**
|
|
288
289
|
* Type definition for `AWS::Deadline::Fleet.HostConfiguration`.
|
|
289
290
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-deadline-fleet-hostconfiguration.html}
|