@awboost/cfn-resource-types 0.1.51 → 0.1.53
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-ARCZonalShift-ZonalAutoshiftConfiguration.d.ts +1 -1
- package/lib/AWS-Amplify-Domain.d.ts +12 -2
- package/lib/AWS-Bedrock-DataSource.d.ts +179 -0
- package/lib/AWS-Bedrock-DataSource.js +12 -0
- package/lib/AWS-Bedrock-KnowledgeBase.d.ts +316 -0
- package/lib/AWS-Bedrock-KnowledgeBase.js +12 -0
- package/lib/AWS-CleanRoomsML-TrainingDataset.d.ts +155 -0
- package/lib/AWS-CleanRoomsML-TrainingDataset.js +12 -0
- package/lib/AWS-Deadline-Farm.d.ts +45 -0
- package/lib/AWS-Deadline-Farm.js +12 -0
- package/lib/AWS-Deadline-Fleet.d.ts +348 -0
- package/lib/AWS-Deadline-Fleet.js +12 -0
- package/lib/AWS-Deadline-LicenseEndpoint.d.ts +58 -0
- package/lib/AWS-Deadline-LicenseEndpoint.js +12 -0
- package/lib/AWS-Deadline-MeteredProduct.d.ts +50 -0
- package/lib/AWS-Deadline-MeteredProduct.js +12 -0
- package/lib/AWS-Deadline-Queue.d.ts +134 -0
- package/lib/AWS-Deadline-Queue.js +12 -0
- package/lib/AWS-Deadline-QueueEnvironment.d.ts +52 -0
- package/lib/AWS-Deadline-QueueEnvironment.js +12 -0
- package/lib/AWS-Deadline-QueueFleetAssociation.d.ts +29 -0
- package/lib/AWS-Deadline-QueueFleetAssociation.js +12 -0
- package/lib/AWS-Deadline-StorageProfile.d.ts +70 -0
- package/lib/AWS-Deadline-StorageProfile.js +12 -0
- package/lib/AWS-EC2-SecurityGroup.d.ts +0 -1
- package/lib/AWS-EC2-Subnet.d.ts +7 -4
- package/lib/AWS-ECS-TaskDefinition.d.ts +146 -41
- package/lib/AWS-ECS-TaskDefinition.js +3 -1
- package/lib/AWS-EntityResolution-IdNamespace.d.ts +130 -0
- package/lib/AWS-EntityResolution-IdNamespace.js +13 -0
- package/lib/AWS-EntityResolution-PolicyStatement.d.ts +44 -0
- package/lib/AWS-EntityResolution-PolicyStatement.js +13 -0
- package/lib/AWS-GlobalAccelerator-CrossAccountAttachment.d.ts +71 -0
- package/lib/AWS-GlobalAccelerator-CrossAccountAttachment.js +12 -0
- package/lib/AWS-IVS-EncoderConfiguration.d.ts +90 -0
- package/lib/AWS-IVS-EncoderConfiguration.js +12 -0
- package/lib/AWS-IVS-PlaybackRestrictionPolicy.d.ts +73 -0
- package/lib/AWS-IVS-PlaybackRestrictionPolicy.js +12 -0
- package/lib/AWS-IVS-StorageConfiguration.d.ts +76 -0
- package/lib/AWS-IVS-StorageConfiguration.js +12 -0
- package/lib/AWS-Lambda-Function.d.ts +5 -5
- package/lib/AWS-MediaTailor-Channel.d.ts +4 -0
- package/lib/AWS-RDS-CustomDBEngineVersion.d.ts +13 -1
- package/lib/AWS-Route53-HostedZone.d.ts +4 -4
- package/lib/AWS-SSM-Parameter.d.ts +1 -1
- package/lib/AWS-SageMaker-Domain.d.ts +6 -0
- package/lib/AWS-SageMaker-UserProfile.d.ts +6 -0
- package/lib/AWS-SecurityHub-Insight.d.ts +35 -3
- package/package.json +2 -2
|
@@ -0,0 +1,155 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
|
|
3
|
+
/**
|
|
4
|
+
* Definition of AWS::CleanRoomsML::TrainingDataset Resource Type
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanroomsml-trainingdataset.html}
|
|
6
|
+
*/
|
|
7
|
+
export type CleanRoomsMLTrainingDatasetProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* @maxLength `255`
|
|
10
|
+
* @pattern `^[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDBFF-\uDC00\uDFFF\t\r\n]*$`
|
|
11
|
+
*/
|
|
12
|
+
Description?: string;
|
|
13
|
+
/**
|
|
14
|
+
* @minLength `1`
|
|
15
|
+
* @maxLength `63`
|
|
16
|
+
* @pattern `^(?!\s*$)[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDBFF-\uDC00\uDFFF\t]*$`
|
|
17
|
+
*/
|
|
18
|
+
Name: string;
|
|
19
|
+
/**
|
|
20
|
+
* @minLength `20`
|
|
21
|
+
* @maxLength `2048`
|
|
22
|
+
* @pattern `^arn:aws[-a-z]*:iam::[0-9]{12}:role/.+$`
|
|
23
|
+
*/
|
|
24
|
+
RoleArn: string;
|
|
25
|
+
/**
|
|
26
|
+
* An arbitrary set of tags (key-value pairs) for this cleanrooms-ml training dataset.
|
|
27
|
+
*/
|
|
28
|
+
Tags?: Tag[];
|
|
29
|
+
/**
|
|
30
|
+
* @minLength `1`
|
|
31
|
+
* @maxLength `1`
|
|
32
|
+
*/
|
|
33
|
+
TrainingData: Dataset[];
|
|
34
|
+
};
|
|
35
|
+
/**
|
|
36
|
+
* Attribute type definition for `AWS::CleanRoomsML::TrainingDataset`.
|
|
37
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanroomsml-trainingdataset.html#aws-resource-cleanroomsml-trainingdataset-return-values}
|
|
38
|
+
*/
|
|
39
|
+
export type CleanRoomsMLTrainingDatasetAttributes = {
|
|
40
|
+
Status: TrainingDatasetStatus;
|
|
41
|
+
/**
|
|
42
|
+
* @minLength `20`
|
|
43
|
+
* @maxLength `2048`
|
|
44
|
+
* @pattern `^arn:aws[-a-z]*:cleanrooms-ml:[-a-z0-9]+:[0-9]{12}:training-dataset/[-a-zA-Z0-9_/.]+$`
|
|
45
|
+
*/
|
|
46
|
+
TrainingDatasetArn: string;
|
|
47
|
+
};
|
|
48
|
+
/**
|
|
49
|
+
* Type definition for `AWS::CleanRoomsML::TrainingDataset.ColumnSchema`.
|
|
50
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanroomsml-trainingdataset-columnschema.html}
|
|
51
|
+
*/
|
|
52
|
+
export type ColumnSchema = {
|
|
53
|
+
/**
|
|
54
|
+
* @minLength `1`
|
|
55
|
+
* @maxLength `128`
|
|
56
|
+
* @pattern `^[a-zA-Z0-9_](([a-zA-Z0-9_ ]+-)*([a-zA-Z0-9_ ]+))?$`
|
|
57
|
+
*/
|
|
58
|
+
ColumnName: string;
|
|
59
|
+
/**
|
|
60
|
+
* @minLength `1`
|
|
61
|
+
* @maxLength `1`
|
|
62
|
+
*/
|
|
63
|
+
ColumnTypes: ColumnType[];
|
|
64
|
+
};
|
|
65
|
+
/**
|
|
66
|
+
* Type definition for `AWS::CleanRoomsML::TrainingDataset.ColumnType`.
|
|
67
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanroomsml-trainingdataset-columntype.html}
|
|
68
|
+
*/
|
|
69
|
+
export type ColumnType = "USER_ID" | "ITEM_ID" | "TIMESTAMP" | "CATEGORICAL_FEATURE" | "NUMERICAL_FEATURE";
|
|
70
|
+
/**
|
|
71
|
+
* Type definition for `AWS::CleanRoomsML::TrainingDataset.Dataset`.
|
|
72
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanroomsml-trainingdataset-dataset.html}
|
|
73
|
+
*/
|
|
74
|
+
export type Dataset = {
|
|
75
|
+
InputConfig: DatasetInputConfig;
|
|
76
|
+
Type: DatasetType;
|
|
77
|
+
};
|
|
78
|
+
/**
|
|
79
|
+
* Type definition for `AWS::CleanRoomsML::TrainingDataset.DatasetInputConfig`.
|
|
80
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanroomsml-trainingdataset-datasetinputconfig.html}
|
|
81
|
+
*/
|
|
82
|
+
export type DatasetInputConfig = {
|
|
83
|
+
DataSource: DataSource;
|
|
84
|
+
/**
|
|
85
|
+
* @minLength `1`
|
|
86
|
+
* @maxLength `100`
|
|
87
|
+
*/
|
|
88
|
+
Schema: ColumnSchema[];
|
|
89
|
+
};
|
|
90
|
+
/**
|
|
91
|
+
* Type definition for `AWS::CleanRoomsML::TrainingDataset.DatasetType`.
|
|
92
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanroomsml-trainingdataset-datasettype.html}
|
|
93
|
+
*/
|
|
94
|
+
export type DatasetType = "INTERACTIONS";
|
|
95
|
+
/**
|
|
96
|
+
* Type definition for `AWS::CleanRoomsML::TrainingDataset.DataSource`.
|
|
97
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanroomsml-trainingdataset-datasource.html}
|
|
98
|
+
*/
|
|
99
|
+
export type DataSource = {
|
|
100
|
+
GlueDataSource: GlueDataSource;
|
|
101
|
+
};
|
|
102
|
+
/**
|
|
103
|
+
* Type definition for `AWS::CleanRoomsML::TrainingDataset.GlueDataSource`.
|
|
104
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanroomsml-trainingdataset-gluedatasource.html}
|
|
105
|
+
*/
|
|
106
|
+
export type GlueDataSource = {
|
|
107
|
+
/**
|
|
108
|
+
* @minLength `12`
|
|
109
|
+
* @maxLength `12`
|
|
110
|
+
* @pattern `^[0-9]{12}$`
|
|
111
|
+
*/
|
|
112
|
+
CatalogId?: string;
|
|
113
|
+
/**
|
|
114
|
+
* @minLength `1`
|
|
115
|
+
* @maxLength `128`
|
|
116
|
+
* @pattern `^[a-zA-Z0-9_](([a-zA-Z0-9_]+-)*([a-zA-Z0-9_]+))?$`
|
|
117
|
+
*/
|
|
118
|
+
DatabaseName: string;
|
|
119
|
+
/**
|
|
120
|
+
* @minLength `1`
|
|
121
|
+
* @maxLength `128`
|
|
122
|
+
* @pattern `^[a-zA-Z0-9_](([a-zA-Z0-9_ ]+-)*([a-zA-Z0-9_ ]+))?$`
|
|
123
|
+
*/
|
|
124
|
+
TableName: string;
|
|
125
|
+
};
|
|
126
|
+
/**
|
|
127
|
+
* Type definition for `AWS::CleanRoomsML::TrainingDataset.Tag`.
|
|
128
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanroomsml-trainingdataset-tag.html}
|
|
129
|
+
*/
|
|
130
|
+
export type Tag = {
|
|
131
|
+
/**
|
|
132
|
+
* @minLength `1`
|
|
133
|
+
* @maxLength `128`
|
|
134
|
+
*/
|
|
135
|
+
Key: string;
|
|
136
|
+
/**
|
|
137
|
+
* @minLength `1`
|
|
138
|
+
* @maxLength `256`
|
|
139
|
+
*/
|
|
140
|
+
Value: string;
|
|
141
|
+
};
|
|
142
|
+
/**
|
|
143
|
+
* Type definition for `AWS::CleanRoomsML::TrainingDataset.TrainingDatasetStatus`.
|
|
144
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanroomsml-trainingdataset-trainingdatasetstatus.html}
|
|
145
|
+
*/
|
|
146
|
+
export type TrainingDatasetStatus = "ACTIVE";
|
|
147
|
+
/**
|
|
148
|
+
* Definition of AWS::CleanRoomsML::TrainingDataset Resource Type
|
|
149
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanroomsml-trainingdataset.html}
|
|
150
|
+
*/
|
|
151
|
+
export declare class CleanRoomsMLTrainingDataset extends $Resource<"AWS::CleanRoomsML::TrainingDataset", CleanRoomsMLTrainingDatasetProperties, CleanRoomsMLTrainingDatasetAttributes> {
|
|
152
|
+
static readonly Type = "AWS::CleanRoomsML::TrainingDataset";
|
|
153
|
+
constructor(logicalId: string, properties: CleanRoomsMLTrainingDatasetProperties, options?: $ResourceOptions);
|
|
154
|
+
}
|
|
155
|
+
//# sourceMappingURL=AWS-CleanRoomsML-TrainingDataset.d.ts.map
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
/**
|
|
3
|
+
* Definition of AWS::CleanRoomsML::TrainingDataset Resource Type
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanroomsml-trainingdataset.html}
|
|
5
|
+
*/
|
|
6
|
+
export class CleanRoomsMLTrainingDataset extends $Resource {
|
|
7
|
+
static Type = "AWS::CleanRoomsML::TrainingDataset";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, CleanRoomsMLTrainingDataset.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-CleanRoomsML-TrainingDataset.js.map
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
|
|
3
|
+
/**
|
|
4
|
+
* Definition of AWS::Deadline::Farm Resource Type
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-farm.html}
|
|
6
|
+
*/
|
|
7
|
+
export type DeadlineFarmProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* @minLength `0`
|
|
10
|
+
* @maxLength `100`
|
|
11
|
+
*/
|
|
12
|
+
Description?: string;
|
|
13
|
+
/**
|
|
14
|
+
* @minLength `1`
|
|
15
|
+
* @maxLength `100`
|
|
16
|
+
*/
|
|
17
|
+
DisplayName: string;
|
|
18
|
+
/**
|
|
19
|
+
* @pattern `^arn:aws[-a-z]*:kms:.*:key/.*`
|
|
20
|
+
*/
|
|
21
|
+
KmsKeyArn?: string;
|
|
22
|
+
};
|
|
23
|
+
/**
|
|
24
|
+
* Attribute type definition for `AWS::Deadline::Farm`.
|
|
25
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-farm.html#aws-resource-deadline-farm-return-values}
|
|
26
|
+
*/
|
|
27
|
+
export type DeadlineFarmAttributes = {
|
|
28
|
+
/**
|
|
29
|
+
* @pattern `^arn:(aws[a-zA-Z-]*):deadline:[a-z0-9-]+:[0-9]+:farm/.+?`
|
|
30
|
+
*/
|
|
31
|
+
Arn: string;
|
|
32
|
+
/**
|
|
33
|
+
* @pattern `^farm-[0-9a-f]{32}$`
|
|
34
|
+
*/
|
|
35
|
+
FarmId: string;
|
|
36
|
+
};
|
|
37
|
+
/**
|
|
38
|
+
* Definition of AWS::Deadline::Farm Resource Type
|
|
39
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-farm.html}
|
|
40
|
+
*/
|
|
41
|
+
export declare class DeadlineFarm extends $Resource<"AWS::Deadline::Farm", DeadlineFarmProperties, DeadlineFarmAttributes> {
|
|
42
|
+
static readonly Type = "AWS::Deadline::Farm";
|
|
43
|
+
constructor(logicalId: string, properties: DeadlineFarmProperties, options?: $ResourceOptions);
|
|
44
|
+
}
|
|
45
|
+
//# sourceMappingURL=AWS-Deadline-Farm.d.ts.map
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
/**
|
|
3
|
+
* Definition of AWS::Deadline::Farm Resource Type
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-farm.html}
|
|
5
|
+
*/
|
|
6
|
+
export class DeadlineFarm extends $Resource {
|
|
7
|
+
static Type = "AWS::Deadline::Farm";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, DeadlineFarm.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-Deadline-Farm.js.map
|
|
@@ -0,0 +1,348 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
|
|
3
|
+
/**
|
|
4
|
+
* Definition of AWS::Deadline::Fleet Resource Type
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-fleet.html}
|
|
6
|
+
*/
|
|
7
|
+
export type DeadlineFleetProperties = {
|
|
8
|
+
Configuration: FleetConfiguration;
|
|
9
|
+
/**
|
|
10
|
+
* @minLength `0`
|
|
11
|
+
* @maxLength `100`
|
|
12
|
+
*/
|
|
13
|
+
Description?: string;
|
|
14
|
+
/**
|
|
15
|
+
* @minLength `1`
|
|
16
|
+
* @maxLength `100`
|
|
17
|
+
*/
|
|
18
|
+
DisplayName: string;
|
|
19
|
+
/**
|
|
20
|
+
* @pattern `^farm-[0-9a-f]{32}$`
|
|
21
|
+
*/
|
|
22
|
+
FarmId?: string;
|
|
23
|
+
/**
|
|
24
|
+
* @min `0`
|
|
25
|
+
* @max `2147483647`
|
|
26
|
+
*/
|
|
27
|
+
MaxWorkerCount: number;
|
|
28
|
+
/**
|
|
29
|
+
* @min `0`
|
|
30
|
+
* @max `2147483647`
|
|
31
|
+
*/
|
|
32
|
+
MinWorkerCount?: number;
|
|
33
|
+
/**
|
|
34
|
+
* @pattern `^arn:(aws[a-zA-Z-]*):iam::\d{12}:role(/[!-.0-~]+)/*[\w+=,.@-]+$`
|
|
35
|
+
*/
|
|
36
|
+
RoleArn: string;
|
|
37
|
+
};
|
|
38
|
+
/**
|
|
39
|
+
* Attribute type definition for `AWS::Deadline::Fleet`.
|
|
40
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-fleet.html#aws-resource-deadline-fleet-return-values}
|
|
41
|
+
*/
|
|
42
|
+
export type DeadlineFleetAttributes = {
|
|
43
|
+
/**
|
|
44
|
+
* @pattern `^arn:(aws[a-zA-Z-]*):deadline:[a-z0-9-]+:[0-9]+:farm/farm-[0-9a-z]{32}/fleet/fleet-[0-9a-z]{32}`
|
|
45
|
+
*/
|
|
46
|
+
Arn: string;
|
|
47
|
+
Capabilities: {
|
|
48
|
+
/**
|
|
49
|
+
* @minLength `1`
|
|
50
|
+
* @maxLength `15`
|
|
51
|
+
*/
|
|
52
|
+
Amounts: {
|
|
53
|
+
Max: number;
|
|
54
|
+
Min: number;
|
|
55
|
+
/**
|
|
56
|
+
* @minLength `1`
|
|
57
|
+
* @maxLength `100`
|
|
58
|
+
* @pattern `^([a-zA-Z][a-zA-Z0-9]{0,63}:)?amount(\.[a-zA-Z][a-zA-Z0-9]{0,63})+$`
|
|
59
|
+
*/
|
|
60
|
+
Name: string;
|
|
61
|
+
}[];
|
|
62
|
+
/**
|
|
63
|
+
* @minLength `1`
|
|
64
|
+
* @maxLength `15`
|
|
65
|
+
*/
|
|
66
|
+
Attributes: {
|
|
67
|
+
/**
|
|
68
|
+
* @minLength `1`
|
|
69
|
+
* @maxLength `100`
|
|
70
|
+
* @pattern `^([a-zA-Z][a-zA-Z0-9]{0,63}:)?attr(\.[a-zA-Z][a-zA-Z0-9]{0,63})+$`
|
|
71
|
+
*/
|
|
72
|
+
Name: string;
|
|
73
|
+
/**
|
|
74
|
+
* @minLength `1`
|
|
75
|
+
* @maxLength `10`
|
|
76
|
+
*/
|
|
77
|
+
Values: string[];
|
|
78
|
+
}[];
|
|
79
|
+
};
|
|
80
|
+
/**
|
|
81
|
+
* @pattern `^fleet-[0-9a-f]{32}$`
|
|
82
|
+
*/
|
|
83
|
+
FleetId: string;
|
|
84
|
+
Status: FleetStatus;
|
|
85
|
+
WorkerCount: number;
|
|
86
|
+
};
|
|
87
|
+
/**
|
|
88
|
+
* Type definition for `AWS::Deadline::Fleet.AcceleratorCountRange`.
|
|
89
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-deadline-fleet-acceleratorcountrange.html}
|
|
90
|
+
*/
|
|
91
|
+
export type AcceleratorCountRange = {
|
|
92
|
+
/**
|
|
93
|
+
* @min `0`
|
|
94
|
+
* @max `2147483647`
|
|
95
|
+
*/
|
|
96
|
+
Max?: number;
|
|
97
|
+
/**
|
|
98
|
+
* @min `0`
|
|
99
|
+
* @max `2147483647`
|
|
100
|
+
*/
|
|
101
|
+
Min: number;
|
|
102
|
+
};
|
|
103
|
+
/**
|
|
104
|
+
* Type definition for `AWS::Deadline::Fleet.AcceleratorTotalMemoryMiBRange`.
|
|
105
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-deadline-fleet-acceleratortotalmemorymibrange.html}
|
|
106
|
+
*/
|
|
107
|
+
export type AcceleratorTotalMemoryMiBRange = {
|
|
108
|
+
/**
|
|
109
|
+
* @min `0`
|
|
110
|
+
* @max `2147483647`
|
|
111
|
+
*/
|
|
112
|
+
Max?: number;
|
|
113
|
+
/**
|
|
114
|
+
* @min `0`
|
|
115
|
+
* @max `2147483647`
|
|
116
|
+
*/
|
|
117
|
+
Min: number;
|
|
118
|
+
};
|
|
119
|
+
/**
|
|
120
|
+
* Type definition for `AWS::Deadline::Fleet.AcceleratorType`.
|
|
121
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-deadline-fleet-acceleratortype.html}
|
|
122
|
+
*/
|
|
123
|
+
export type AcceleratorType = "gpu";
|
|
124
|
+
/**
|
|
125
|
+
* Type definition for `AWS::Deadline::Fleet.AutoScalingMode`.
|
|
126
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-deadline-fleet-autoscalingmode.html}
|
|
127
|
+
*/
|
|
128
|
+
export type AutoScalingMode = "NO_SCALING" | "EVENT_BASED_AUTO_SCALING";
|
|
129
|
+
/**
|
|
130
|
+
* Type definition for `AWS::Deadline::Fleet.CpuArchitectureType`.
|
|
131
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-deadline-fleet-cpuarchitecturetype.html}
|
|
132
|
+
*/
|
|
133
|
+
export type CpuArchitectureType = "x86_64" | "arm64";
|
|
134
|
+
/**
|
|
135
|
+
* Type definition for `AWS::Deadline::Fleet.CustomerManagedFleetConfiguration`.
|
|
136
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-deadline-fleet-customermanagedfleetconfiguration.html}
|
|
137
|
+
*/
|
|
138
|
+
export type CustomerManagedFleetConfiguration = {
|
|
139
|
+
Mode: AutoScalingMode;
|
|
140
|
+
/**
|
|
141
|
+
* @pattern `^sp-[0-9a-f]{32}$`
|
|
142
|
+
*/
|
|
143
|
+
StorageProfileId?: string;
|
|
144
|
+
WorkerCapabilities: CustomerManagedWorkerCapabilities;
|
|
145
|
+
};
|
|
146
|
+
/**
|
|
147
|
+
* Type definition for `AWS::Deadline::Fleet.CustomerManagedFleetOperatingSystemFamily`.
|
|
148
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-deadline-fleet-customermanagedfleetoperatingsystemfamily.html}
|
|
149
|
+
*/
|
|
150
|
+
export type CustomerManagedFleetOperatingSystemFamily = "WINDOWS" | "LINUX" | "MACOS";
|
|
151
|
+
/**
|
|
152
|
+
* Type definition for `AWS::Deadline::Fleet.CustomerManagedWorkerCapabilities`.
|
|
153
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-deadline-fleet-customermanagedworkercapabilities.html}
|
|
154
|
+
*/
|
|
155
|
+
export type CustomerManagedWorkerCapabilities = {
|
|
156
|
+
AcceleratorCount?: AcceleratorCountRange;
|
|
157
|
+
AcceleratorTotalMemoryMiB?: AcceleratorTotalMemoryMiBRange;
|
|
158
|
+
AcceleratorTypes?: AcceleratorType[];
|
|
159
|
+
CpuArchitectureType: CpuArchitectureType;
|
|
160
|
+
/**
|
|
161
|
+
* @minLength `1`
|
|
162
|
+
* @maxLength `15`
|
|
163
|
+
*/
|
|
164
|
+
CustomAmounts?: FleetAmountCapability[];
|
|
165
|
+
/**
|
|
166
|
+
* @minLength `1`
|
|
167
|
+
* @maxLength `15`
|
|
168
|
+
*/
|
|
169
|
+
CustomAttributes?: FleetAttributeCapability[];
|
|
170
|
+
MemoryMiB: MemoryMiBRange;
|
|
171
|
+
OsFamily: CustomerManagedFleetOperatingSystemFamily;
|
|
172
|
+
VCpuCount: VCpuCountRange;
|
|
173
|
+
};
|
|
174
|
+
/**
|
|
175
|
+
* Type definition for `AWS::Deadline::Fleet.Ec2EbsVolume`.
|
|
176
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-deadline-fleet-ec2ebsvolume.html}
|
|
177
|
+
*/
|
|
178
|
+
export type Ec2EbsVolume = {
|
|
179
|
+
/**
|
|
180
|
+
* @min `3000`
|
|
181
|
+
* @max `16000`
|
|
182
|
+
*/
|
|
183
|
+
Iops?: number;
|
|
184
|
+
SizeGiB?: number;
|
|
185
|
+
/**
|
|
186
|
+
* @min `125`
|
|
187
|
+
* @max `1000`
|
|
188
|
+
*/
|
|
189
|
+
ThroughputMiB?: number;
|
|
190
|
+
};
|
|
191
|
+
/**
|
|
192
|
+
* Type definition for `AWS::Deadline::Fleet.Ec2MarketType`.
|
|
193
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-deadline-fleet-ec2markettype.html}
|
|
194
|
+
*/
|
|
195
|
+
export type Ec2MarketType = "on-demand" | "spot";
|
|
196
|
+
/**
|
|
197
|
+
* Type definition for `AWS::Deadline::Fleet.FleetAmountCapability`.
|
|
198
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-deadline-fleet-fleetamountcapability.html}
|
|
199
|
+
*/
|
|
200
|
+
export type FleetAmountCapability = {
|
|
201
|
+
Max?: number;
|
|
202
|
+
Min: number;
|
|
203
|
+
/**
|
|
204
|
+
* @minLength `1`
|
|
205
|
+
* @maxLength `100`
|
|
206
|
+
* @pattern `^([a-zA-Z][a-zA-Z0-9]{0,63}:)?amount(\.[a-zA-Z][a-zA-Z0-9]{0,63})+$`
|
|
207
|
+
*/
|
|
208
|
+
Name: string;
|
|
209
|
+
};
|
|
210
|
+
/**
|
|
211
|
+
* Type definition for `AWS::Deadline::Fleet.FleetAttributeCapability`.
|
|
212
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-deadline-fleet-fleetattributecapability.html}
|
|
213
|
+
*/
|
|
214
|
+
export type FleetAttributeCapability = {
|
|
215
|
+
/**
|
|
216
|
+
* @minLength `1`
|
|
217
|
+
* @maxLength `100`
|
|
218
|
+
* @pattern `^([a-zA-Z][a-zA-Z0-9]{0,63}:)?attr(\.[a-zA-Z][a-zA-Z0-9]{0,63})+$`
|
|
219
|
+
*/
|
|
220
|
+
Name: string;
|
|
221
|
+
/**
|
|
222
|
+
* @minLength `1`
|
|
223
|
+
* @maxLength `10`
|
|
224
|
+
*/
|
|
225
|
+
Values: string[];
|
|
226
|
+
};
|
|
227
|
+
/**
|
|
228
|
+
* Type definition for `AWS::Deadline::Fleet.FleetCapabilities`.
|
|
229
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-deadline-fleet-fleetcapabilities.html}
|
|
230
|
+
*/
|
|
231
|
+
export type FleetCapabilities = {
|
|
232
|
+
/**
|
|
233
|
+
* @minLength `1`
|
|
234
|
+
* @maxLength `15`
|
|
235
|
+
*/
|
|
236
|
+
Amounts?: FleetAmountCapability[];
|
|
237
|
+
/**
|
|
238
|
+
* @minLength `1`
|
|
239
|
+
* @maxLength `15`
|
|
240
|
+
*/
|
|
241
|
+
Attributes?: FleetAttributeCapability[];
|
|
242
|
+
};
|
|
243
|
+
/**
|
|
244
|
+
* Type definition for `AWS::Deadline::Fleet.FleetConfiguration`.
|
|
245
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-deadline-fleet-fleetconfiguration.html}
|
|
246
|
+
*/
|
|
247
|
+
export type FleetConfiguration = {
|
|
248
|
+
CustomerManaged: CustomerManagedFleetConfiguration;
|
|
249
|
+
} | {
|
|
250
|
+
ServiceManagedEc2: ServiceManagedEc2FleetConfiguration;
|
|
251
|
+
};
|
|
252
|
+
/**
|
|
253
|
+
* Type definition for `AWS::Deadline::Fleet.FleetStatus`.
|
|
254
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-deadline-fleet-fleetstatus.html}
|
|
255
|
+
*/
|
|
256
|
+
export type FleetStatus = "ACTIVE" | "CREATE_IN_PROGRESS" | "UPDATE_IN_PROGRESS" | "CREATE_FAILED" | "UPDATE_FAILED";
|
|
257
|
+
/**
|
|
258
|
+
* Type definition for `AWS::Deadline::Fleet.MemoryMiBRange`.
|
|
259
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-deadline-fleet-memorymibrange.html}
|
|
260
|
+
*/
|
|
261
|
+
export type MemoryMiBRange = {
|
|
262
|
+
/**
|
|
263
|
+
* @min `512`
|
|
264
|
+
* @max `2147483647`
|
|
265
|
+
*/
|
|
266
|
+
Max?: number;
|
|
267
|
+
/**
|
|
268
|
+
* @min `512`
|
|
269
|
+
* @max `2147483647`
|
|
270
|
+
*/
|
|
271
|
+
Min: number;
|
|
272
|
+
};
|
|
273
|
+
/**
|
|
274
|
+
* Type definition for `AWS::Deadline::Fleet.ServiceManagedEc2FleetConfiguration`.
|
|
275
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-deadline-fleet-servicemanagedec2fleetconfiguration.html}
|
|
276
|
+
*/
|
|
277
|
+
export type ServiceManagedEc2FleetConfiguration = {
|
|
278
|
+
InstanceCapabilities: ServiceManagedEc2InstanceCapabilities;
|
|
279
|
+
InstanceMarketOptions: ServiceManagedEc2InstanceMarketOptions;
|
|
280
|
+
};
|
|
281
|
+
/**
|
|
282
|
+
* Type definition for `AWS::Deadline::Fleet.ServiceManagedEc2InstanceCapabilities`.
|
|
283
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-deadline-fleet-servicemanagedec2instancecapabilities.html}
|
|
284
|
+
*/
|
|
285
|
+
export type ServiceManagedEc2InstanceCapabilities = {
|
|
286
|
+
/**
|
|
287
|
+
* @minLength `1`
|
|
288
|
+
* @maxLength `100`
|
|
289
|
+
*/
|
|
290
|
+
AllowedInstanceTypes?: string[];
|
|
291
|
+
CpuArchitectureType: CpuArchitectureType;
|
|
292
|
+
/**
|
|
293
|
+
* @minLength `1`
|
|
294
|
+
* @maxLength `15`
|
|
295
|
+
*/
|
|
296
|
+
CustomAmounts?: FleetAmountCapability[];
|
|
297
|
+
/**
|
|
298
|
+
* @minLength `1`
|
|
299
|
+
* @maxLength `15`
|
|
300
|
+
*/
|
|
301
|
+
CustomAttributes?: FleetAttributeCapability[];
|
|
302
|
+
/**
|
|
303
|
+
* @minLength `1`
|
|
304
|
+
* @maxLength `100`
|
|
305
|
+
*/
|
|
306
|
+
ExcludedInstanceTypes?: string[];
|
|
307
|
+
MemoryMiB: MemoryMiBRange;
|
|
308
|
+
OsFamily: ServiceManagedFleetOperatingSystemFamily;
|
|
309
|
+
RootEbsVolume?: Ec2EbsVolume;
|
|
310
|
+
VCpuCount: VCpuCountRange;
|
|
311
|
+
};
|
|
312
|
+
/**
|
|
313
|
+
* Type definition for `AWS::Deadline::Fleet.ServiceManagedEc2InstanceMarketOptions`.
|
|
314
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-deadline-fleet-servicemanagedec2instancemarketoptions.html}
|
|
315
|
+
*/
|
|
316
|
+
export type ServiceManagedEc2InstanceMarketOptions = {
|
|
317
|
+
Type: Ec2MarketType;
|
|
318
|
+
};
|
|
319
|
+
/**
|
|
320
|
+
* Type definition for `AWS::Deadline::Fleet.ServiceManagedFleetOperatingSystemFamily`.
|
|
321
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-deadline-fleet-servicemanagedfleetoperatingsystemfamily.html}
|
|
322
|
+
*/
|
|
323
|
+
export type ServiceManagedFleetOperatingSystemFamily = "WINDOWS" | "LINUX";
|
|
324
|
+
/**
|
|
325
|
+
* Type definition for `AWS::Deadline::Fleet.VCpuCountRange`.
|
|
326
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-deadline-fleet-vcpucountrange.html}
|
|
327
|
+
*/
|
|
328
|
+
export type VCpuCountRange = {
|
|
329
|
+
/**
|
|
330
|
+
* @min `1`
|
|
331
|
+
* @max `10000`
|
|
332
|
+
*/
|
|
333
|
+
Max?: number;
|
|
334
|
+
/**
|
|
335
|
+
* @min `1`
|
|
336
|
+
* @max `10000`
|
|
337
|
+
*/
|
|
338
|
+
Min: number;
|
|
339
|
+
};
|
|
340
|
+
/**
|
|
341
|
+
* Definition of AWS::Deadline::Fleet Resource Type
|
|
342
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-fleet.html}
|
|
343
|
+
*/
|
|
344
|
+
export declare class DeadlineFleet extends $Resource<"AWS::Deadline::Fleet", DeadlineFleetProperties, DeadlineFleetAttributes> {
|
|
345
|
+
static readonly Type = "AWS::Deadline::Fleet";
|
|
346
|
+
constructor(logicalId: string, properties: DeadlineFleetProperties, options?: $ResourceOptions);
|
|
347
|
+
}
|
|
348
|
+
//# sourceMappingURL=AWS-Deadline-Fleet.d.ts.map
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
/**
|
|
3
|
+
* Definition of AWS::Deadline::Fleet Resource Type
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-fleet.html}
|
|
5
|
+
*/
|
|
6
|
+
export class DeadlineFleet extends $Resource {
|
|
7
|
+
static Type = "AWS::Deadline::Fleet";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, DeadlineFleet.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-Deadline-Fleet.js.map
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
|
|
3
|
+
/**
|
|
4
|
+
* Definition of AWS::Deadline::LicenseEndpoint Resource Type
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-licenseendpoint.html}
|
|
6
|
+
*/
|
|
7
|
+
export type DeadlineLicenseEndpointProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* @minLength `1`
|
|
10
|
+
* @maxLength `10`
|
|
11
|
+
*/
|
|
12
|
+
SecurityGroupIds: string[];
|
|
13
|
+
/**
|
|
14
|
+
* @minLength `1`
|
|
15
|
+
* @maxLength `10`
|
|
16
|
+
*/
|
|
17
|
+
SubnetIds: string[];
|
|
18
|
+
/**
|
|
19
|
+
* @minLength `1`
|
|
20
|
+
* @maxLength `32`
|
|
21
|
+
*/
|
|
22
|
+
VpcId: string;
|
|
23
|
+
};
|
|
24
|
+
/**
|
|
25
|
+
* Attribute type definition for `AWS::Deadline::LicenseEndpoint`.
|
|
26
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-licenseendpoint.html#aws-resource-deadline-licenseendpoint-return-values}
|
|
27
|
+
*/
|
|
28
|
+
export type DeadlineLicenseEndpointAttributes = {
|
|
29
|
+
/**
|
|
30
|
+
* @pattern `^arn:(aws[a-zA-Z-]*):deadline:[a-z0-9-]+:[0-9]{12}:license-endpoint/le-[0-9a-z]{32}`
|
|
31
|
+
*/
|
|
32
|
+
Arn: string;
|
|
33
|
+
DnsName: string;
|
|
34
|
+
/**
|
|
35
|
+
* @pattern `^le-[0-9a-f]{32}$`
|
|
36
|
+
*/
|
|
37
|
+
LicenseEndpointId: string;
|
|
38
|
+
Status: LicenseEndpointStatus;
|
|
39
|
+
/**
|
|
40
|
+
* @minLength `0`
|
|
41
|
+
* @maxLength `1024`
|
|
42
|
+
*/
|
|
43
|
+
StatusMessage: string;
|
|
44
|
+
};
|
|
45
|
+
/**
|
|
46
|
+
* Type definition for `AWS::Deadline::LicenseEndpoint.LicenseEndpointStatus`.
|
|
47
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-deadline-licenseendpoint-licenseendpointstatus.html}
|
|
48
|
+
*/
|
|
49
|
+
export type LicenseEndpointStatus = "CREATE_IN_PROGRESS" | "DELETE_IN_PROGRESS" | "READY" | "NOT_READY";
|
|
50
|
+
/**
|
|
51
|
+
* Definition of AWS::Deadline::LicenseEndpoint Resource Type
|
|
52
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-licenseendpoint.html}
|
|
53
|
+
*/
|
|
54
|
+
export declare class DeadlineLicenseEndpoint extends $Resource<"AWS::Deadline::LicenseEndpoint", DeadlineLicenseEndpointProperties, DeadlineLicenseEndpointAttributes> {
|
|
55
|
+
static readonly Type = "AWS::Deadline::LicenseEndpoint";
|
|
56
|
+
constructor(logicalId: string, properties: DeadlineLicenseEndpointProperties, options?: $ResourceOptions);
|
|
57
|
+
}
|
|
58
|
+
//# sourceMappingURL=AWS-Deadline-LicenseEndpoint.d.ts.map
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
/**
|
|
3
|
+
* Definition of AWS::Deadline::LicenseEndpoint Resource Type
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-licenseendpoint.html}
|
|
5
|
+
*/
|
|
6
|
+
export class DeadlineLicenseEndpoint extends $Resource {
|
|
7
|
+
static Type = "AWS::Deadline::LicenseEndpoint";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, DeadlineLicenseEndpoint.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-Deadline-LicenseEndpoint.js.map
|