@awboost/cfn-resource-types 0.1.91 → 0.1.93
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-Batch-JobDefinition.d.ts +1 -0
- package/lib/AWS-Bedrock-KnowledgeBase.d.ts +2 -2
- package/lib/AWS-DataSync-Agent.d.ts +1 -1
- package/lib/AWS-Deadline-Farm.d.ts +25 -1
- package/lib/AWS-Deadline-Fleet.d.ts +24 -0
- package/lib/AWS-Deadline-LicenseEndpoint.d.ts +24 -0
- package/lib/AWS-Deadline-Monitor.d.ts +50 -0
- package/lib/AWS-Deadline-Monitor.js +12 -0
- package/lib/AWS-Deadline-Queue.d.ts +24 -0
- package/lib/AWS-ECS-Cluster.d.ts +9 -0
- package/lib/AWS-FSx-FileSystem.d.ts +9 -0
- package/lib/AWS-Glue-Crawler.d.ts +1 -0
- package/package.json +1 -1
|
@@ -300,8 +300,8 @@ export type VectorKnowledgeBaseConfiguration = {
|
|
|
300
300
|
/**
|
|
301
301
|
* The ARN of the model used to create vector embeddings for the knowledge base.
|
|
302
302
|
* @minLength `20`
|
|
303
|
-
* @maxLength `
|
|
304
|
-
* @pattern `^arn:aws(-[^:]+)?:bedrock:[a-z0-9-]{1,20}:(([0-9]{12}:custom-model/[a-z0-9-]{1,63}[.]{1}[a-z0-9-]{1,63}/[a-z0-9]{12})|(:foundation-model/[a-z0-9-]{1,63}[.]{1}[a-z0-9-]{1,63}))$`
|
|
303
|
+
* @maxLength `2048`
|
|
304
|
+
* @pattern `^(arn:aws(-[^:]+)?:bedrock:[a-z0-9-]{1,20}:(([0-9]{12}:custom-model/[a-z0-9-]{1,63}[.]{1}[a-z0-9-]{1,63}/[a-z0-9]{12})|(:foundation-model/[a-z0-9-]{1,63}[.]{1}[a-z0-9-]{1,63}([.:]?[a-z0-9-]{1,63}))|([0-9]{12}:provisioned-model/[a-z0-9]{12})))|([a-z0-9-]{1,63}[.]{1}[a-z0-9-]{1,63}([.:]?[a-z0-9-]{1,63}))|(([0-9a-zA-Z][_-]?)+)$`
|
|
305
305
|
*/
|
|
306
306
|
EmbeddingModelArn: string;
|
|
307
307
|
};
|
|
@@ -13,7 +13,7 @@ export type DataSyncAgentProperties = {
|
|
|
13
13
|
ActivationKey?: string;
|
|
14
14
|
/**
|
|
15
15
|
* The name configured for the agent. Text reference used to identify the agent in the console.
|
|
16
|
-
* @minLength `
|
|
16
|
+
* @minLength `0`
|
|
17
17
|
* @maxLength `256`
|
|
18
18
|
* @pattern `^[a-zA-Z0-9\s+=._:@/-]+$`
|
|
19
19
|
*/
|
|
@@ -19,6 +19,11 @@ export type DeadlineFarmProperties = {
|
|
|
19
19
|
* @pattern `^arn:aws[-a-z]*:kms:.*:key/.*`
|
|
20
20
|
*/
|
|
21
21
|
KmsKeyArn?: string;
|
|
22
|
+
/**
|
|
23
|
+
* An array of key-value pairs to apply to this resource.
|
|
24
|
+
* @maxLength `50`
|
|
25
|
+
*/
|
|
26
|
+
Tags?: Tag[];
|
|
22
27
|
};
|
|
23
28
|
/**
|
|
24
29
|
* Attribute type definition for `AWS::Deadline::Farm`.
|
|
@@ -26,7 +31,7 @@ export type DeadlineFarmProperties = {
|
|
|
26
31
|
*/
|
|
27
32
|
export type DeadlineFarmAttributes = {
|
|
28
33
|
/**
|
|
29
|
-
* @pattern `^arn:(aws[a-zA-Z-]*):deadline:[a-z0-9-]+:[0-9]+:farm
|
|
34
|
+
* @pattern `^arn:(aws[a-zA-Z-]*):deadline:[a-z0-9-]+:[0-9]+:farm/farm-[0-9a-z]{32}$`
|
|
30
35
|
*/
|
|
31
36
|
Arn: string;
|
|
32
37
|
/**
|
|
@@ -34,6 +39,25 @@ export type DeadlineFarmAttributes = {
|
|
|
34
39
|
*/
|
|
35
40
|
FarmId: string;
|
|
36
41
|
};
|
|
42
|
+
/**
|
|
43
|
+
* Type definition for `AWS::Deadline::Farm.Tag`.
|
|
44
|
+
* A key-value pair to associate with a resource.
|
|
45
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-deadline-farm-tag.html}
|
|
46
|
+
*/
|
|
47
|
+
export type Tag = {
|
|
48
|
+
/**
|
|
49
|
+
* The key name of the tag. You can specify a value that is 1 to 127 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
|
|
50
|
+
* @minLength `1`
|
|
51
|
+
* @maxLength `127`
|
|
52
|
+
*/
|
|
53
|
+
Key: string;
|
|
54
|
+
/**
|
|
55
|
+
* The value for the tag. You can specify a value that is 1 to 255 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
|
|
56
|
+
* @minLength `1`
|
|
57
|
+
* @maxLength `255`
|
|
58
|
+
*/
|
|
59
|
+
Value: string;
|
|
60
|
+
};
|
|
37
61
|
/**
|
|
38
62
|
* Definition of AWS::Deadline::Farm Resource Type
|
|
39
63
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-farm.html}
|
|
@@ -34,6 +34,11 @@ export type DeadlineFleetProperties = {
|
|
|
34
34
|
* @pattern `^arn:(aws[a-zA-Z-]*):iam::\d{12}:role(/[!-.0-~]+)/*[\w+=,.@-]+$`
|
|
35
35
|
*/
|
|
36
36
|
RoleArn: string;
|
|
37
|
+
/**
|
|
38
|
+
* An array of key-value pairs to apply to this resource.
|
|
39
|
+
* @maxLength `50`
|
|
40
|
+
*/
|
|
41
|
+
Tags?: Tag[];
|
|
37
42
|
};
|
|
38
43
|
/**
|
|
39
44
|
* Attribute type definition for `AWS::Deadline::Fleet`.
|
|
@@ -321,6 +326,25 @@ export type ServiceManagedEc2InstanceMarketOptions = {
|
|
|
321
326
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-deadline-fleet-servicemanagedfleetoperatingsystemfamily.html}
|
|
322
327
|
*/
|
|
323
328
|
export type ServiceManagedFleetOperatingSystemFamily = "LINUX";
|
|
329
|
+
/**
|
|
330
|
+
* Type definition for `AWS::Deadline::Fleet.Tag`.
|
|
331
|
+
* A key-value pair to associate with a resource.
|
|
332
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-deadline-fleet-tag.html}
|
|
333
|
+
*/
|
|
334
|
+
export type Tag = {
|
|
335
|
+
/**
|
|
336
|
+
* The key name of the tag. You can specify a value that is 1 to 127 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
|
|
337
|
+
* @minLength `1`
|
|
338
|
+
* @maxLength `127`
|
|
339
|
+
*/
|
|
340
|
+
Key: string;
|
|
341
|
+
/**
|
|
342
|
+
* The value for the tag. You can specify a value that is 1 to 255 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
|
|
343
|
+
* @minLength `1`
|
|
344
|
+
* @maxLength `255`
|
|
345
|
+
*/
|
|
346
|
+
Value: string;
|
|
347
|
+
};
|
|
324
348
|
/**
|
|
325
349
|
* Type definition for `AWS::Deadline::Fleet.VCpuCountRange`.
|
|
326
350
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-deadline-fleet-vcpucountrange.html}
|
|
@@ -15,6 +15,11 @@ export type DeadlineLicenseEndpointProperties = {
|
|
|
15
15
|
* @maxLength `10`
|
|
16
16
|
*/
|
|
17
17
|
SubnetIds: string[];
|
|
18
|
+
/**
|
|
19
|
+
* An array of key-value pairs to apply to this resource.
|
|
20
|
+
* @maxLength `50`
|
|
21
|
+
*/
|
|
22
|
+
Tags?: Tag[];
|
|
18
23
|
/**
|
|
19
24
|
* @minLength `1`
|
|
20
25
|
* @maxLength `32`
|
|
@@ -47,6 +52,25 @@ export type DeadlineLicenseEndpointAttributes = {
|
|
|
47
52
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-deadline-licenseendpoint-licenseendpointstatus.html}
|
|
48
53
|
*/
|
|
49
54
|
export type LicenseEndpointStatus = "CREATE_IN_PROGRESS" | "DELETE_IN_PROGRESS" | "READY" | "NOT_READY";
|
|
55
|
+
/**
|
|
56
|
+
* Type definition for `AWS::Deadline::LicenseEndpoint.Tag`.
|
|
57
|
+
* A key-value pair to associate with a resource.
|
|
58
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-deadline-licenseendpoint-tag.html}
|
|
59
|
+
*/
|
|
60
|
+
export type Tag = {
|
|
61
|
+
/**
|
|
62
|
+
* The key name of the tag. You can specify a value that is 1 to 127 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
|
|
63
|
+
* @minLength `1`
|
|
64
|
+
* @maxLength `127`
|
|
65
|
+
*/
|
|
66
|
+
Key: string;
|
|
67
|
+
/**
|
|
68
|
+
* The value for the tag. You can specify a value that is 1 to 255 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
|
|
69
|
+
* @minLength `1`
|
|
70
|
+
* @maxLength `255`
|
|
71
|
+
*/
|
|
72
|
+
Value: string;
|
|
73
|
+
};
|
|
50
74
|
/**
|
|
51
75
|
* Definition of AWS::Deadline::LicenseEndpoint Resource Type
|
|
52
76
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-licenseendpoint.html}
|
|
@@ -0,0 +1,50 @@
|
|
|
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::Monitor Resource Type
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-monitor.html}
|
|
6
|
+
*/
|
|
7
|
+
export type DeadlineMonitorProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* @minLength `1`
|
|
10
|
+
* @maxLength `100`
|
|
11
|
+
*/
|
|
12
|
+
DisplayName: string;
|
|
13
|
+
/**
|
|
14
|
+
* @pattern `^arn:(aws|aws-us-gov|aws-cn|aws-iso|aws-iso-b):sso:::instance/(sso)?ins-[a-zA-Z0-9-.]{16}$`
|
|
15
|
+
*/
|
|
16
|
+
IdentityCenterInstanceArn: string;
|
|
17
|
+
/**
|
|
18
|
+
* @pattern `^arn:(aws[a-zA-Z-]*):iam::\d{12}:role(/[!-.0-~]+)/*[\w+=,.@-]+$`
|
|
19
|
+
*/
|
|
20
|
+
RoleArn: string;
|
|
21
|
+
/**
|
|
22
|
+
* @pattern `^[a-z0-9-]{1,100}$`
|
|
23
|
+
*/
|
|
24
|
+
Subdomain: string;
|
|
25
|
+
};
|
|
26
|
+
/**
|
|
27
|
+
* Attribute type definition for `AWS::Deadline::Monitor`.
|
|
28
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-monitor.html#aws-resource-deadline-monitor-return-values}
|
|
29
|
+
*/
|
|
30
|
+
export type DeadlineMonitorAttributes = {
|
|
31
|
+
/**
|
|
32
|
+
* @pattern `^arn:(aws[a-zA-Z-]*):deadline:[a-z0-9-]+:[0-9]+:monitor/monitor-[0-9a-z]{32}$`
|
|
33
|
+
*/
|
|
34
|
+
Arn: string;
|
|
35
|
+
IdentityCenterApplicationArn: string;
|
|
36
|
+
/**
|
|
37
|
+
* @pattern `^monitor-[0-9a-f]{32}$`
|
|
38
|
+
*/
|
|
39
|
+
MonitorId: string;
|
|
40
|
+
Url: string;
|
|
41
|
+
};
|
|
42
|
+
/**
|
|
43
|
+
* Definition of AWS::Deadline::Monitor Resource Type
|
|
44
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-monitor.html}
|
|
45
|
+
*/
|
|
46
|
+
export declare class DeadlineMonitor extends $Resource<"AWS::Deadline::Monitor", DeadlineMonitorProperties, DeadlineMonitorAttributes> {
|
|
47
|
+
static readonly Type = "AWS::Deadline::Monitor";
|
|
48
|
+
constructor(logicalId: string, properties: DeadlineMonitorProperties, options?: $ResourceOptions);
|
|
49
|
+
}
|
|
50
|
+
//# sourceMappingURL=AWS-Deadline-Monitor.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::Monitor Resource Type
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-monitor.html}
|
|
5
|
+
*/
|
|
6
|
+
export class DeadlineMonitor extends $Resource {
|
|
7
|
+
static Type = "AWS::Deadline::Monitor";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, DeadlineMonitor.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-Deadline-Monitor.js.map
|
|
@@ -36,6 +36,11 @@ export type DeadlineQueueProperties = {
|
|
|
36
36
|
* @pattern `^arn:(aws[a-zA-Z-]*):iam::\d{12}:role(/[!-.0-~]+)/*[\w+=,.@-]+$`
|
|
37
37
|
*/
|
|
38
38
|
RoleArn?: string;
|
|
39
|
+
/**
|
|
40
|
+
* An array of key-value pairs to apply to this resource.
|
|
41
|
+
* @maxLength `50`
|
|
42
|
+
*/
|
|
43
|
+
Tags?: Tag[];
|
|
39
44
|
};
|
|
40
45
|
/**
|
|
41
46
|
* Attribute type definition for `AWS::Deadline::Queue`.
|
|
@@ -105,6 +110,25 @@ export type PosixUser = {
|
|
|
105
110
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-deadline-queue-runas.html}
|
|
106
111
|
*/
|
|
107
112
|
export type RunAs = "QUEUE_CONFIGURED_USER" | "WORKER_AGENT_USER";
|
|
113
|
+
/**
|
|
114
|
+
* Type definition for `AWS::Deadline::Queue.Tag`.
|
|
115
|
+
* A key-value pair to associate with a resource.
|
|
116
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-deadline-queue-tag.html}
|
|
117
|
+
*/
|
|
118
|
+
export type Tag = {
|
|
119
|
+
/**
|
|
120
|
+
* The key name of the tag. You can specify a value that is 1 to 127 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
|
|
121
|
+
* @minLength `1`
|
|
122
|
+
* @maxLength `127`
|
|
123
|
+
*/
|
|
124
|
+
Key: string;
|
|
125
|
+
/**
|
|
126
|
+
* The value for the tag. You can specify a value that is 1 to 255 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
|
|
127
|
+
* @minLength `1`
|
|
128
|
+
* @maxLength `255`
|
|
129
|
+
*/
|
|
130
|
+
Value: string;
|
|
131
|
+
};
|
|
108
132
|
/**
|
|
109
133
|
* Type definition for `AWS::Deadline::Queue.WindowsUser`.
|
|
110
134
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-deadline-queue-windowsuser.html}
|
package/lib/AWS-ECS-Cluster.d.ts
CHANGED
|
@@ -84,6 +84,7 @@ export type ClusterConfiguration = {
|
|
|
84
84
|
* The details of the execute command configuration.
|
|
85
85
|
*/
|
|
86
86
|
ExecuteCommandConfiguration?: ExecuteCommandConfiguration;
|
|
87
|
+
ManagedStorageConfiguration?: ManagedStorageConfiguration;
|
|
87
88
|
};
|
|
88
89
|
/**
|
|
89
90
|
* Type definition for `AWS::ECS::Cluster.ClusterSettings`.
|
|
@@ -152,6 +153,14 @@ export type ExecuteCommandLogConfiguration = {
|
|
|
152
153
|
*/
|
|
153
154
|
S3KeyPrefix?: string;
|
|
154
155
|
};
|
|
156
|
+
/**
|
|
157
|
+
* Type definition for `AWS::ECS::Cluster.ManagedStorageConfiguration`.
|
|
158
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-cluster-managedstorageconfiguration.html}
|
|
159
|
+
*/
|
|
160
|
+
export type ManagedStorageConfiguration = {
|
|
161
|
+
FargateEphemeralStorageKmsKeyId?: string;
|
|
162
|
+
KmsKeyId?: string;
|
|
163
|
+
};
|
|
155
164
|
/**
|
|
156
165
|
* Type definition for `AWS::ECS::Cluster.ServiceConnectDefaults`.
|
|
157
166
|
* Use this parameter to set a default Service Connect namespace. After you set a default Service Connect namespace, any new services with Service Connect turned on that are created in the cluster are added as client services in the namespace. This setting only applies to new services that set the ``enabled`` parameter to ``true`` in the ``ServiceConnectConfiguration``. You can set the namespace of each service individually in the ``ServiceConnectConfiguration`` to override this default parameter.
|
|
@@ -70,9 +70,18 @@ export type LustreConfiguration = {
|
|
|
70
70
|
ExportPath?: string;
|
|
71
71
|
ImportPath?: string;
|
|
72
72
|
ImportedFileChunkSize?: number;
|
|
73
|
+
MetadataConfiguration?: MetadataConfiguration;
|
|
73
74
|
PerUnitStorageThroughput?: number;
|
|
74
75
|
WeeklyMaintenanceStartTime?: string;
|
|
75
76
|
};
|
|
77
|
+
/**
|
|
78
|
+
* Type definition for `AWS::FSx::FileSystem.MetadataConfiguration`.
|
|
79
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-metadataconfiguration.html}
|
|
80
|
+
*/
|
|
81
|
+
export type MetadataConfiguration = {
|
|
82
|
+
Iops?: number;
|
|
83
|
+
Mode?: string;
|
|
84
|
+
};
|
|
76
85
|
/**
|
|
77
86
|
* Type definition for `AWS::FSx::FileSystem.NfsExports`.
|
|
78
87
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-nfsexports.html}
|