@awboost/cfn-resource-types 0.1.184 → 0.1.185
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-NimbleStudio-LaunchProfile.d.ts +9 -186
- package/lib/AWS-NimbleStudio-LaunchProfile.js +1 -2
- package/lib/AWS-NimbleStudio-StreamingImage.d.ts +6 -72
- package/lib/AWS-NimbleStudio-StreamingImage.js +1 -2
- package/lib/AWS-NimbleStudio-Studio.d.ts +4 -58
- package/lib/AWS-NimbleStudio-Studio.js +1 -2
- package/lib/AWS-NimbleStudio-StudioComponent.d.ts +11 -187
- package/lib/AWS-NimbleStudio-StudioComponent.js +1 -2
- package/lib/AWS-Wisdom-AIAgentVersion.d.ts +45 -0
- package/lib/AWS-Wisdom-AIAgentVersion.js +12 -0
- package/package.json +1 -1
|
@@ -1,51 +1,18 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
|
|
3
3
|
/**
|
|
4
|
-
* Resource
|
|
5
|
-
* Represents a launch profile which delegates access to a collection of studio components to studio users
|
|
4
|
+
* Resource Type definition for AWS::NimbleStudio::LaunchProfile
|
|
6
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-nimblestudio-launchprofile.html}
|
|
7
6
|
*/
|
|
8
7
|
export type NimbleStudioLaunchProfileProperties = {
|
|
9
|
-
/**
|
|
10
|
-
* <p>The description.</p>
|
|
11
|
-
* @minLength `0`
|
|
12
|
-
* @maxLength `256`
|
|
13
|
-
*/
|
|
14
8
|
Description?: string;
|
|
15
|
-
/**
|
|
16
|
-
* <p>Specifies the IDs of the EC2 subnets where streaming sessions will be accessible from.
|
|
17
|
-
These subnets must support the specified instance types. </p>
|
|
18
|
-
* @minLength `0`
|
|
19
|
-
* @maxLength `6`
|
|
20
|
-
*/
|
|
21
9
|
Ec2SubnetIds: string[];
|
|
22
|
-
/**
|
|
23
|
-
* <p>The version number of the protocol that is used by the launch profile. The only valid
|
|
24
|
-
version is "2021-03-31".</p>
|
|
25
|
-
*/
|
|
26
10
|
LaunchProfileProtocolVersions: string[];
|
|
27
|
-
/**
|
|
28
|
-
* <p>The name for the launch profile.</p>
|
|
29
|
-
* @minLength `1`
|
|
30
|
-
* @maxLength `64`
|
|
31
|
-
*/
|
|
32
11
|
Name: string;
|
|
33
|
-
/**
|
|
34
|
-
* <p>A configuration for a streaming session.</p>
|
|
35
|
-
*/
|
|
36
12
|
StreamConfiguration: StreamConfiguration;
|
|
37
|
-
/**
|
|
38
|
-
* <p>Unique identifiers for a collection of studio components that can be used with this
|
|
39
|
-
launch profile.</p>
|
|
40
|
-
* @minLength `1`
|
|
41
|
-
* @maxLength `100`
|
|
42
|
-
*/
|
|
43
13
|
StudioComponentIds: string[];
|
|
44
|
-
/**
|
|
45
|
-
* <p>The studio ID. </p>
|
|
46
|
-
*/
|
|
47
14
|
StudioId: string;
|
|
48
|
-
Tags?:
|
|
15
|
+
Tags?: Record<string, string>;
|
|
49
16
|
};
|
|
50
17
|
/**
|
|
51
18
|
* Attribute type definition for `AWS::NimbleStudio::LaunchProfile`.
|
|
@@ -54,201 +21,57 @@ export type NimbleStudioLaunchProfileProperties = {
|
|
|
54
21
|
export type NimbleStudioLaunchProfileAttributes = {
|
|
55
22
|
LaunchProfileId: string;
|
|
56
23
|
};
|
|
57
|
-
/**
|
|
58
|
-
* Type definition for `AWS::NimbleStudio::LaunchProfile.AutomaticTerminationMode`.
|
|
59
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-nimblestudio-launchprofile-automaticterminationmode.html}
|
|
60
|
-
*/
|
|
61
|
-
export type AutomaticTerminationMode = "DEACTIVATED" | "ACTIVATED";
|
|
62
|
-
/**
|
|
63
|
-
* Type definition for `AWS::NimbleStudio::LaunchProfile.SessionBackupMode`.
|
|
64
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-nimblestudio-launchprofile-sessionbackupmode.html}
|
|
65
|
-
*/
|
|
66
|
-
export type SessionBackupMode = "AUTOMATIC" | "DEACTIVATED";
|
|
67
|
-
/**
|
|
68
|
-
* Type definition for `AWS::NimbleStudio::LaunchProfile.SessionPersistenceMode`.
|
|
69
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-nimblestudio-launchprofile-sessionpersistencemode.html}
|
|
70
|
-
*/
|
|
71
|
-
export type SessionPersistenceMode = "DEACTIVATED" | "ACTIVATED";
|
|
72
24
|
/**
|
|
73
25
|
* Type definition for `AWS::NimbleStudio::LaunchProfile.StreamConfiguration`.
|
|
74
|
-
* <p>A configuration for a streaming session.</p>
|
|
75
26
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-nimblestudio-launchprofile-streamconfiguration.html}
|
|
76
27
|
*/
|
|
77
28
|
export type StreamConfiguration = {
|
|
78
|
-
AutomaticTerminationMode?:
|
|
79
|
-
ClipboardMode:
|
|
80
|
-
|
|
81
|
-
* <p>The EC2 instance types that users can select from when launching a streaming session
|
|
82
|
-
with this launch profile.</p>
|
|
83
|
-
* @minLength `1`
|
|
84
|
-
* @maxLength `30`
|
|
85
|
-
*/
|
|
86
|
-
Ec2InstanceTypes: StreamingInstanceType[];
|
|
87
|
-
/**
|
|
88
|
-
* <p>The length of time, in minutes, that a streaming session can be active before it is
|
|
89
|
-
stopped or terminated. After this point, Nimble Studio automatically terminates or
|
|
90
|
-
stops the session. The default length of time is 690 minutes, and the maximum length of
|
|
91
|
-
time is 30 days.</p>
|
|
92
|
-
* @min `1`
|
|
93
|
-
* @max `43200`
|
|
94
|
-
*/
|
|
29
|
+
AutomaticTerminationMode?: string;
|
|
30
|
+
ClipboardMode: string;
|
|
31
|
+
Ec2InstanceTypes: string[];
|
|
95
32
|
MaxSessionLengthInMinutes?: number;
|
|
96
|
-
/**
|
|
97
|
-
* <p>Integer that determines if you can start and stop your sessions and how long a session
|
|
98
|
-
can stay in the <code>STOPPED</code> state. The default value is 0. The maximum value is
|
|
99
|
-
5760.</p>
|
|
100
|
-
<p>This field is allowed only when <code>sessionPersistenceMode</code> is
|
|
101
|
-
<code>ACTIVATED</code> and <code>automaticTerminationMode</code> is
|
|
102
|
-
<code>ACTIVATED</code>.</p>
|
|
103
|
-
<p>If the value is set to 0, your sessions can’t be <code>STOPPED</code>. If you then
|
|
104
|
-
call <code>StopStreamingSession</code>, the session fails. If the time that a session
|
|
105
|
-
stays in the <code>READY</code> state exceeds the <code>maxSessionLengthInMinutes</code>
|
|
106
|
-
value, the session will automatically be terminated (instead of
|
|
107
|
-
<code>STOPPED</code>).</p>
|
|
108
|
-
<p>If the value is set to a positive number, the session can be stopped. You can call
|
|
109
|
-
<code>StopStreamingSession</code> to stop sessions in the <code>READY</code> state.
|
|
110
|
-
If the time that a session stays in the <code>READY</code> state exceeds the
|
|
111
|
-
<code>maxSessionLengthInMinutes</code> value, the session will automatically be
|
|
112
|
-
stopped (instead of terminated).</p>
|
|
113
|
-
* @min `0`
|
|
114
|
-
* @max `5760`
|
|
115
|
-
*/
|
|
116
33
|
MaxStoppedSessionLengthInMinutes?: number;
|
|
117
|
-
/**
|
|
118
|
-
* <p>Configures how streaming sessions are backed up when launched from this launch
|
|
119
|
-
profile.</p>
|
|
120
|
-
*/
|
|
121
34
|
SessionBackup?: StreamConfigurationSessionBackup;
|
|
122
|
-
SessionPersistenceMode?:
|
|
123
|
-
/**
|
|
124
|
-
* <p>The configuration for a streaming session’s upload storage.</p>
|
|
125
|
-
*/
|
|
35
|
+
SessionPersistenceMode?: string;
|
|
126
36
|
SessionStorage?: StreamConfigurationSessionStorage;
|
|
127
|
-
/**
|
|
128
|
-
* <p>The streaming images that users can select from when launching a streaming session
|
|
129
|
-
with this launch profile.</p>
|
|
130
|
-
* @minLength `1`
|
|
131
|
-
* @maxLength `20`
|
|
132
|
-
*/
|
|
133
37
|
StreamingImageIds: string[];
|
|
134
|
-
/**
|
|
135
|
-
* <p>Custom volume configuration for the root volumes that are attached to streaming
|
|
136
|
-
sessions.</p>
|
|
137
|
-
<p>This parameter is only allowed when <code>sessionPersistenceMode</code> is
|
|
138
|
-
<code>ACTIVATED</code>.</p>
|
|
139
|
-
*/
|
|
140
38
|
VolumeConfiguration?: VolumeConfiguration;
|
|
141
39
|
};
|
|
142
40
|
/**
|
|
143
41
|
* Type definition for `AWS::NimbleStudio::LaunchProfile.StreamConfigurationSessionBackup`.
|
|
144
|
-
* <p>Configures how streaming sessions are backed up when launched from this launch
|
|
145
|
-
profile.</p>
|
|
146
42
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-nimblestudio-launchprofile-streamconfigurationsessionbackup.html}
|
|
147
43
|
*/
|
|
148
44
|
export type StreamConfigurationSessionBackup = {
|
|
149
|
-
/**
|
|
150
|
-
* <p>The maximum number of backups that each streaming session created from this launch
|
|
151
|
-
profile can have.</p>
|
|
152
|
-
* @min `0`
|
|
153
|
-
* @max `10`
|
|
154
|
-
*/
|
|
155
45
|
MaxBackupsToRetain?: number;
|
|
156
|
-
Mode?:
|
|
46
|
+
Mode?: string;
|
|
157
47
|
};
|
|
158
48
|
/**
|
|
159
49
|
* Type definition for `AWS::NimbleStudio::LaunchProfile.StreamConfigurationSessionStorage`.
|
|
160
|
-
* <p>The configuration for a streaming session’s upload storage.</p>
|
|
161
50
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-nimblestudio-launchprofile-streamconfigurationsessionstorage.html}
|
|
162
51
|
*/
|
|
163
52
|
export type StreamConfigurationSessionStorage = {
|
|
164
|
-
|
|
165
|
-
* <p>Allows artists to upload files to their workstations. The only valid option is
|
|
166
|
-
<code>UPLOAD</code>.</p>
|
|
167
|
-
* @minLength `1`
|
|
168
|
-
*/
|
|
169
|
-
Mode: StreamingSessionStorageMode[];
|
|
170
|
-
/**
|
|
171
|
-
* <p>The upload storage root location (folder) on streaming workstations where files are
|
|
172
|
-
uploaded.</p>
|
|
173
|
-
*/
|
|
53
|
+
Mode: string[];
|
|
174
54
|
Root?: StreamingSessionStorageRoot;
|
|
175
55
|
};
|
|
176
|
-
/**
|
|
177
|
-
* Type definition for `AWS::NimbleStudio::LaunchProfile.StreamingClipboardMode`.
|
|
178
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-nimblestudio-launchprofile-streamingclipboardmode.html}
|
|
179
|
-
*/
|
|
180
|
-
export type StreamingClipboardMode = "ENABLED" | "DISABLED";
|
|
181
|
-
/**
|
|
182
|
-
* Type definition for `AWS::NimbleStudio::LaunchProfile.StreamingInstanceType`.
|
|
183
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-nimblestudio-launchprofile-streaminginstancetype.html}
|
|
184
|
-
*/
|
|
185
|
-
export type StreamingInstanceType = "g4dn.xlarge" | "g4dn.2xlarge" | "g4dn.4xlarge" | "g4dn.8xlarge" | "g4dn.12xlarge" | "g4dn.16xlarge" | "g3.4xlarge" | "g3s.xlarge" | "g5.xlarge" | "g5.2xlarge" | "g5.4xlarge" | "g5.8xlarge" | "g5.16xlarge";
|
|
186
|
-
/**
|
|
187
|
-
* Type definition for `AWS::NimbleStudio::LaunchProfile.StreamingSessionStorageMode`.
|
|
188
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-nimblestudio-launchprofile-streamingsessionstoragemode.html}
|
|
189
|
-
*/
|
|
190
|
-
export type StreamingSessionStorageMode = "UPLOAD";
|
|
191
56
|
/**
|
|
192
57
|
* Type definition for `AWS::NimbleStudio::LaunchProfile.StreamingSessionStorageRoot`.
|
|
193
|
-
* <p>The upload storage root location (folder) on streaming workstations where files are
|
|
194
|
-
uploaded.</p>
|
|
195
58
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-nimblestudio-launchprofile-streamingsessionstorageroot.html}
|
|
196
59
|
*/
|
|
197
60
|
export type StreamingSessionStorageRoot = {
|
|
198
|
-
/**
|
|
199
|
-
* <p>The folder path in Linux workstations where files are uploaded.</p>
|
|
200
|
-
* @minLength `1`
|
|
201
|
-
* @maxLength `128`
|
|
202
|
-
* @pattern `^(\$HOME|/)[/]?([A-Za-z0-9-_]+/)*([A-Za-z0-9_-]+)$`
|
|
203
|
-
*/
|
|
204
61
|
Linux?: string;
|
|
205
|
-
/**
|
|
206
|
-
* <p>The folder path in Windows workstations where files are uploaded.</p>
|
|
207
|
-
* @minLength `1`
|
|
208
|
-
* @maxLength `128`
|
|
209
|
-
* @pattern `^((\%HOMEPATH\%)|[a-zA-Z]:)[\\/](?:[a-zA-Z0-9_-]+[\\/])*[a-zA-Z0-9_-]+$`
|
|
210
|
-
*/
|
|
211
62
|
Windows?: string;
|
|
212
63
|
};
|
|
213
|
-
/**
|
|
214
|
-
* Type definition for `AWS::NimbleStudio::LaunchProfile.Tags`.
|
|
215
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-nimblestudio-launchprofile-tags.html}
|
|
216
|
-
*/
|
|
217
|
-
export type Tags = Record<string, string>;
|
|
218
64
|
/**
|
|
219
65
|
* Type definition for `AWS::NimbleStudio::LaunchProfile.VolumeConfiguration`.
|
|
220
|
-
* <p>Custom volume configuration for the root volumes that are attached to streaming
|
|
221
|
-
sessions.</p>
|
|
222
|
-
<p>This parameter is only allowed when <code>sessionPersistenceMode</code> is
|
|
223
|
-
<code>ACTIVATED</code>.</p>
|
|
224
66
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-nimblestudio-launchprofile-volumeconfiguration.html}
|
|
225
67
|
*/
|
|
226
68
|
export type VolumeConfiguration = {
|
|
227
|
-
/**
|
|
228
|
-
* <p>The number of I/O operations per second for the root volume that is attached to
|
|
229
|
-
streaming session.</p>
|
|
230
|
-
* @min `3000`
|
|
231
|
-
* @max `16000`
|
|
232
|
-
*/
|
|
233
69
|
Iops?: number;
|
|
234
|
-
/**
|
|
235
|
-
* <p>The size of the root volume that is attached to the streaming session. The root volume
|
|
236
|
-
size is measured in GiBs.</p>
|
|
237
|
-
* @min `100`
|
|
238
|
-
* @max `16000`
|
|
239
|
-
*/
|
|
240
70
|
Size?: number;
|
|
241
|
-
/**
|
|
242
|
-
* <p>The throughput to provision for the root volume that is attached to the streaming
|
|
243
|
-
session. The throughput is measured in MiB/s.</p>
|
|
244
|
-
* @min `125`
|
|
245
|
-
* @max `1000`
|
|
246
|
-
*/
|
|
247
71
|
Throughput?: number;
|
|
248
72
|
};
|
|
249
73
|
/**
|
|
250
|
-
* Resource
|
|
251
|
-
* Represents a launch profile which delegates access to a collection of studio components to studio users
|
|
74
|
+
* Resource Type definition for AWS::NimbleStudio::LaunchProfile
|
|
252
75
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-nimblestudio-launchprofile.html}
|
|
253
76
|
*/
|
|
254
77
|
export declare class NimbleStudioLaunchProfile extends $Resource<"AWS::NimbleStudio::LaunchProfile", NimbleStudioLaunchProfileProperties, NimbleStudioLaunchProfileAttributes> {
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
/**
|
|
3
|
-
* Resource
|
|
4
|
-
* Represents a launch profile which delegates access to a collection of studio components to studio users
|
|
3
|
+
* Resource Type definition for AWS::NimbleStudio::LaunchProfile
|
|
5
4
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-nimblestudio-launchprofile.html}
|
|
6
5
|
*/
|
|
7
6
|
export class NimbleStudioLaunchProfile extends $Resource {
|
|
@@ -1,100 +1,34 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
|
|
3
3
|
/**
|
|
4
|
-
* Resource
|
|
5
|
-
* Represents a streaming session machine image that can be used to launch a streaming session
|
|
4
|
+
* Resource Type definition for AWS::NimbleStudio::StreamingImage
|
|
6
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-nimblestudio-streamingimage.html}
|
|
7
6
|
*/
|
|
8
7
|
export type NimbleStudioStreamingImageProperties = {
|
|
9
|
-
/**
|
|
10
|
-
* <p>A human-readable description of the streaming image.</p>
|
|
11
|
-
* @minLength `0`
|
|
12
|
-
* @maxLength `256`
|
|
13
|
-
*/
|
|
14
8
|
Description?: string;
|
|
15
|
-
/**
|
|
16
|
-
* <p>The ID of an EC2 machine image with which to create this streaming image.</p>
|
|
17
|
-
* @pattern `^ami-[0-9A-z]+$`
|
|
18
|
-
*/
|
|
19
9
|
Ec2ImageId: string;
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
* @minLength `0`
|
|
23
|
-
* @maxLength `64`
|
|
24
|
-
*/
|
|
10
|
+
EncryptionConfigurationKeyArn?: string;
|
|
11
|
+
EncryptionConfigurationKeyType?: string;
|
|
25
12
|
Name: string;
|
|
26
|
-
/**
|
|
27
|
-
* <p>The studioId. </p>
|
|
28
|
-
*/
|
|
29
13
|
StudioId: string;
|
|
30
|
-
Tags?:
|
|
14
|
+
Tags?: Record<string, string>;
|
|
31
15
|
};
|
|
32
16
|
/**
|
|
33
17
|
* Attribute type definition for `AWS::NimbleStudio::StreamingImage`.
|
|
34
18
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-nimblestudio-streamingimage.html#aws-resource-nimblestudio-streamingimage-return-values}
|
|
35
19
|
*/
|
|
36
20
|
export type NimbleStudioStreamingImageAttributes = {
|
|
37
|
-
/**
|
|
38
|
-
* <p>TODO</p>
|
|
39
|
-
*/
|
|
40
21
|
EncryptionConfiguration: {
|
|
41
|
-
/**
|
|
42
|
-
* <p>The ARN for a KMS key that is used to encrypt studio data.</p>
|
|
43
|
-
* @minLength `4`
|
|
44
|
-
* @pattern `^arn:.*`
|
|
45
|
-
*/
|
|
46
22
|
KeyArn: string;
|
|
47
|
-
|
|
48
|
-
* <p/>
|
|
49
|
-
*/
|
|
50
|
-
KeyType: StreamingImageEncryptionConfigurationKeyType;
|
|
23
|
+
KeyType: string;
|
|
51
24
|
};
|
|
52
|
-
/**
|
|
53
|
-
* <p>The list of EULAs that must be accepted before a Streaming Session can be started using this streaming image.</p>
|
|
54
|
-
*/
|
|
55
25
|
EulaIds: string[];
|
|
56
|
-
/**
|
|
57
|
-
* <p>The owner of the streaming image, either the studioId that contains the streaming image, or 'amazon' for images that are provided by Amazon Nimble Studio.</p>
|
|
58
|
-
*/
|
|
59
26
|
Owner: string;
|
|
60
|
-
/**
|
|
61
|
-
* <p>The platform of the streaming image, either WINDOWS or LINUX.</p>
|
|
62
|
-
* @pattern `^[a-zA-Z]*$`
|
|
63
|
-
*/
|
|
64
27
|
Platform: string;
|
|
65
28
|
StreamingImageId: string;
|
|
66
29
|
};
|
|
67
30
|
/**
|
|
68
|
-
* Type definition for
|
|
69
|
-
* <p>TODO</p>
|
|
70
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-nimblestudio-streamingimage-streamingimageencryptionconfiguration.html}
|
|
71
|
-
*/
|
|
72
|
-
export type StreamingImageEncryptionConfiguration = {
|
|
73
|
-
/**
|
|
74
|
-
* <p>The ARN for a KMS key that is used to encrypt studio data.</p>
|
|
75
|
-
* @minLength `4`
|
|
76
|
-
* @pattern `^arn:.*`
|
|
77
|
-
*/
|
|
78
|
-
KeyArn?: string;
|
|
79
|
-
/**
|
|
80
|
-
* <p/>
|
|
81
|
-
*/
|
|
82
|
-
KeyType: StreamingImageEncryptionConfigurationKeyType;
|
|
83
|
-
};
|
|
84
|
-
/**
|
|
85
|
-
* Type definition for `AWS::NimbleStudio::StreamingImage.StreamingImageEncryptionConfigurationKeyType`.
|
|
86
|
-
* <p/>
|
|
87
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-nimblestudio-streamingimage-streamingimageencryptionconfigurationkeytype.html}
|
|
88
|
-
*/
|
|
89
|
-
export type StreamingImageEncryptionConfigurationKeyType = "CUSTOMER_MANAGED_KEY";
|
|
90
|
-
/**
|
|
91
|
-
* Type definition for `AWS::NimbleStudio::StreamingImage.Tags`.
|
|
92
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-nimblestudio-streamingimage-tags.html}
|
|
93
|
-
*/
|
|
94
|
-
export type Tags = Record<string, string>;
|
|
95
|
-
/**
|
|
96
|
-
* Resource type definition for `AWS::NimbleStudio::StreamingImage`.
|
|
97
|
-
* Represents a streaming session machine image that can be used to launch a streaming session
|
|
31
|
+
* Resource Type definition for AWS::NimbleStudio::StreamingImage
|
|
98
32
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-nimblestudio-streamingimage.html}
|
|
99
33
|
*/
|
|
100
34
|
export declare class NimbleStudioStreamingImage extends $Resource<"AWS::NimbleStudio::StreamingImage", NimbleStudioStreamingImageProperties, NimbleStudioStreamingImageAttributes> {
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
/**
|
|
3
|
-
* Resource
|
|
4
|
-
* Represents a streaming session machine image that can be used to launch a streaming session
|
|
3
|
+
* Resource Type definition for AWS::NimbleStudio::StreamingImage
|
|
5
4
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-nimblestudio-streamingimage.html}
|
|
6
5
|
*/
|
|
7
6
|
export class NimbleStudioStreamingImage extends $Resource {
|
|
@@ -1,36 +1,15 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
|
|
3
3
|
/**
|
|
4
|
-
* Resource
|
|
5
|
-
* Represents a studio that contains other Nimble Studio resources
|
|
4
|
+
* Resource Type definition for AWS::NimbleStudio::Studio
|
|
6
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-nimblestudio-studio.html}
|
|
7
6
|
*/
|
|
8
7
|
export type NimbleStudioStudioProperties = {
|
|
9
|
-
/**
|
|
10
|
-
* <p>The IAM role that Studio Admins will assume when logging in to the Nimble Studio portal.</p>
|
|
11
|
-
*/
|
|
12
8
|
AdminRoleArn: string;
|
|
13
|
-
/**
|
|
14
|
-
* <p>A friendly name for the studio.</p>
|
|
15
|
-
* @minLength `0`
|
|
16
|
-
* @maxLength `64`
|
|
17
|
-
*/
|
|
18
9
|
DisplayName: string;
|
|
19
|
-
/**
|
|
20
|
-
* <p>Configuration of the encryption method that is used for the studio.</p>
|
|
21
|
-
*/
|
|
22
10
|
StudioEncryptionConfiguration?: StudioEncryptionConfiguration;
|
|
23
|
-
/**
|
|
24
|
-
* <p>The studio name that is used in the URL of the Nimble Studio portal when accessed by Nimble Studio users.</p>
|
|
25
|
-
* @minLength `3`
|
|
26
|
-
* @maxLength `64`
|
|
27
|
-
* @pattern `^[a-z0-9]*$`
|
|
28
|
-
*/
|
|
29
11
|
StudioName: string;
|
|
30
|
-
Tags?:
|
|
31
|
-
/**
|
|
32
|
-
* <p>The IAM role that Studio Users will assume when logging in to the Nimble Studio portal.</p>
|
|
33
|
-
*/
|
|
12
|
+
Tags?: Record<string, string>;
|
|
34
13
|
UserRoleArn: string;
|
|
35
14
|
};
|
|
36
15
|
/**
|
|
@@ -38,54 +17,21 @@ export type NimbleStudioStudioProperties = {
|
|
|
38
17
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-nimblestudio-studio.html#aws-resource-nimblestudio-studio-return-values}
|
|
39
18
|
*/
|
|
40
19
|
export type NimbleStudioStudioAttributes = {
|
|
41
|
-
/**
|
|
42
|
-
* <p>The Amazon Web Services Region where the studio resource is located.</p>
|
|
43
|
-
* @minLength `0`
|
|
44
|
-
* @maxLength `50`
|
|
45
|
-
* @pattern `[a-z]{2}-?(iso|gov)?-{1}[a-z]*-{1}[0-9]`
|
|
46
|
-
*/
|
|
47
20
|
HomeRegion: string;
|
|
48
|
-
/**
|
|
49
|
-
* <p>The Amazon Web Services SSO application client ID used to integrate with Amazon Web Services SSO to enable Amazon Web Services SSO users to log in to Nimble Studio portal.</p>
|
|
50
|
-
*/
|
|
51
21
|
SsoClientId: string;
|
|
52
22
|
StudioId: string;
|
|
53
|
-
/**
|
|
54
|
-
* <p>The address of the web page for the studio.</p>
|
|
55
|
-
*/
|
|
56
23
|
StudioUrl: string;
|
|
57
24
|
};
|
|
58
25
|
/**
|
|
59
26
|
* Type definition for `AWS::NimbleStudio::Studio.StudioEncryptionConfiguration`.
|
|
60
|
-
* <p>Configuration of the encryption method that is used for the studio.</p>
|
|
61
27
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-nimblestudio-studio-studioencryptionconfiguration.html}
|
|
62
28
|
*/
|
|
63
29
|
export type StudioEncryptionConfiguration = {
|
|
64
|
-
/**
|
|
65
|
-
* <p>The ARN for a KMS key that is used to encrypt studio data.</p>
|
|
66
|
-
* @minLength `4`
|
|
67
|
-
* @pattern `^arn:.*`
|
|
68
|
-
*/
|
|
69
30
|
KeyArn?: string;
|
|
70
|
-
|
|
71
|
-
* <p>The type of KMS key that is used to encrypt studio data.</p>
|
|
72
|
-
*/
|
|
73
|
-
KeyType: StudioEncryptionConfigurationKeyType;
|
|
31
|
+
KeyType: string;
|
|
74
32
|
};
|
|
75
33
|
/**
|
|
76
|
-
* Type definition for
|
|
77
|
-
* <p>The type of KMS key that is used to encrypt studio data.</p>
|
|
78
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-nimblestudio-studio-studioencryptionconfigurationkeytype.html}
|
|
79
|
-
*/
|
|
80
|
-
export type StudioEncryptionConfigurationKeyType = "AWS_OWNED_KEY" | "CUSTOMER_MANAGED_KEY";
|
|
81
|
-
/**
|
|
82
|
-
* Type definition for `AWS::NimbleStudio::Studio.Tags`.
|
|
83
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-nimblestudio-studio-tags.html}
|
|
84
|
-
*/
|
|
85
|
-
export type Tags = Record<string, string>;
|
|
86
|
-
/**
|
|
87
|
-
* Resource type definition for `AWS::NimbleStudio::Studio`.
|
|
88
|
-
* Represents a studio that contains other Nimble Studio resources
|
|
34
|
+
* Resource Type definition for AWS::NimbleStudio::Studio
|
|
89
35
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-nimblestudio-studio.html}
|
|
90
36
|
*/
|
|
91
37
|
export declare class NimbleStudioStudio extends $Resource<"AWS::NimbleStudio::Studio", NimbleStudioStudioProperties, NimbleStudioStudioAttributes> {
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
/**
|
|
3
|
-
* Resource
|
|
4
|
-
* Represents a studio that contains other Nimble Studio resources
|
|
3
|
+
* Resource Type definition for AWS::NimbleStudio::Studio
|
|
5
4
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-nimblestudio-studio.html}
|
|
6
5
|
*/
|
|
7
6
|
export class NimbleStudioStudio extends $Resource {
|
|
@@ -1,60 +1,20 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
|
|
3
3
|
/**
|
|
4
|
-
* Resource
|
|
5
|
-
* Represents a studio component that connects a non-Nimble Studio resource in your account to your studio
|
|
4
|
+
* Resource Type definition for AWS::NimbleStudio::StudioComponent
|
|
6
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-nimblestudio-studiocomponent.html}
|
|
7
6
|
*/
|
|
8
7
|
export type NimbleStudioStudioComponentProperties = {
|
|
9
|
-
/**
|
|
10
|
-
* <p>The configuration of the studio component, based on component type.</p>
|
|
11
|
-
*/
|
|
12
8
|
Configuration?: StudioComponentConfiguration;
|
|
13
|
-
/**
|
|
14
|
-
* <p>The description.</p>
|
|
15
|
-
* @minLength `0`
|
|
16
|
-
* @maxLength `256`
|
|
17
|
-
*/
|
|
18
9
|
Description?: string;
|
|
19
|
-
/**
|
|
20
|
-
* <p>The EC2 security groups that control access to the studio component.</p>
|
|
21
|
-
* @minLength `0`
|
|
22
|
-
* @maxLength `30`
|
|
23
|
-
*/
|
|
24
10
|
Ec2SecurityGroupIds?: string[];
|
|
25
|
-
/**
|
|
26
|
-
* <p>Initialization scripts for studio components.</p>
|
|
27
|
-
*/
|
|
28
11
|
InitializationScripts?: StudioComponentInitializationScript[];
|
|
29
|
-
/**
|
|
30
|
-
* <p>The name for the studio component.</p>
|
|
31
|
-
* @minLength `0`
|
|
32
|
-
* @maxLength `64`
|
|
33
|
-
*/
|
|
34
12
|
Name: string;
|
|
35
|
-
/**
|
|
36
|
-
* @minLength `0`
|
|
37
|
-
* @maxLength `2048`
|
|
38
|
-
*/
|
|
39
|
-
RuntimeRoleArn?: string;
|
|
40
|
-
/**
|
|
41
|
-
* <p>Parameters for the studio component scripts.</p>
|
|
42
|
-
* @minLength `0`
|
|
43
|
-
* @maxLength `30`
|
|
44
|
-
*/
|
|
45
13
|
ScriptParameters?: ScriptParameterKeyValue[];
|
|
46
|
-
/**
|
|
47
|
-
* @minLength `0`
|
|
48
|
-
* @maxLength `2048`
|
|
49
|
-
*/
|
|
50
|
-
SecureInitializationRoleArn?: string;
|
|
51
|
-
/**
|
|
52
|
-
* <p>The studio ID. </p>
|
|
53
|
-
*/
|
|
54
14
|
StudioId: string;
|
|
55
|
-
Subtype?:
|
|
56
|
-
Tags?:
|
|
57
|
-
Type:
|
|
15
|
+
Subtype?: string;
|
|
16
|
+
Tags?: Record<string, string>;
|
|
17
|
+
Type: string;
|
|
58
18
|
};
|
|
59
19
|
/**
|
|
60
20
|
* Attribute type definition for `AWS::NimbleStudio::StudioComponent`.
|
|
@@ -65,213 +25,77 @@ export type NimbleStudioStudioComponentAttributes = {
|
|
|
65
25
|
};
|
|
66
26
|
/**
|
|
67
27
|
* Type definition for `AWS::NimbleStudio::StudioComponent.ActiveDirectoryComputerAttribute`.
|
|
68
|
-
* <p>An LDAP attribute of an Active Directory computer account, in the form of a name:value
|
|
69
|
-
pair.</p>
|
|
70
28
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-nimblestudio-studiocomponent-activedirectorycomputerattribute.html}
|
|
71
29
|
*/
|
|
72
30
|
export type ActiveDirectoryComputerAttribute = {
|
|
73
|
-
/**
|
|
74
|
-
* <p>The name for the LDAP attribute.</p>
|
|
75
|
-
* @minLength `1`
|
|
76
|
-
* @maxLength `40`
|
|
77
|
-
*/
|
|
78
31
|
Name?: string;
|
|
79
|
-
/**
|
|
80
|
-
* <p>The value for the LDAP attribute.</p>
|
|
81
|
-
* @minLength `1`
|
|
82
|
-
* @maxLength `64`
|
|
83
|
-
*/
|
|
84
32
|
Value?: string;
|
|
85
33
|
};
|
|
86
34
|
/**
|
|
87
35
|
* Type definition for `AWS::NimbleStudio::StudioComponent.ActiveDirectoryConfiguration`.
|
|
88
|
-
* <p>The configuration for a Microsoft Active Directory (Microsoft AD) studio
|
|
89
|
-
resource.</p>
|
|
90
36
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-nimblestudio-studiocomponent-activedirectoryconfiguration.html}
|
|
91
37
|
*/
|
|
92
38
|
export type ActiveDirectoryConfiguration = {
|
|
93
|
-
/**
|
|
94
|
-
* <p>A collection of custom attributes for an Active Directory computer.</p>
|
|
95
|
-
* @minLength `0`
|
|
96
|
-
* @maxLength `50`
|
|
97
|
-
*/
|
|
98
39
|
ComputerAttributes?: ActiveDirectoryComputerAttribute[];
|
|
99
|
-
/**
|
|
100
|
-
* <p>The directory ID of the Directory Service for Microsoft Active Directory to access
|
|
101
|
-
using this studio component.</p>
|
|
102
|
-
*/
|
|
103
40
|
DirectoryId?: string;
|
|
104
|
-
/**
|
|
105
|
-
* <p>The distinguished name (DN) and organizational unit (OU) of an Active Directory
|
|
106
|
-
computer.</p>
|
|
107
|
-
* @minLength `1`
|
|
108
|
-
* @maxLength `2000`
|
|
109
|
-
*/
|
|
110
41
|
OrganizationalUnitDistinguishedName?: string;
|
|
111
42
|
};
|
|
112
43
|
/**
|
|
113
44
|
* Type definition for `AWS::NimbleStudio::StudioComponent.ComputeFarmConfiguration`.
|
|
114
|
-
* <p>The configuration for a render farm that is associated with a studio resource.</p>
|
|
115
45
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-nimblestudio-studiocomponent-computefarmconfiguration.html}
|
|
116
46
|
*/
|
|
117
47
|
export type ComputeFarmConfiguration = {
|
|
118
|
-
/**
|
|
119
|
-
* <p>The name of an Active Directory user that is used on ComputeFarm worker
|
|
120
|
-
instances.</p>
|
|
121
|
-
*/
|
|
122
48
|
ActiveDirectoryUser?: string;
|
|
123
|
-
/**
|
|
124
|
-
* <p>The endpoint of the ComputeFarm that is accessed by the studio component
|
|
125
|
-
resource.</p>
|
|
126
|
-
*/
|
|
127
49
|
Endpoint?: string;
|
|
128
50
|
};
|
|
129
|
-
/**
|
|
130
|
-
* Type definition for `AWS::NimbleStudio::StudioComponent.LaunchProfilePlatform`.
|
|
131
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-nimblestudio-studiocomponent-launchprofileplatform.html}
|
|
132
|
-
*/
|
|
133
|
-
export type LaunchProfilePlatform = "LINUX" | "WINDOWS";
|
|
134
51
|
/**
|
|
135
52
|
* Type definition for `AWS::NimbleStudio::StudioComponent.LicenseServiceConfiguration`.
|
|
136
|
-
* <p>The configuration for a license service that is associated with a studio
|
|
137
|
-
resource.</p>
|
|
138
53
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-nimblestudio-studiocomponent-licenseserviceconfiguration.html}
|
|
139
54
|
*/
|
|
140
55
|
export type LicenseServiceConfiguration = {
|
|
141
|
-
/**
|
|
142
|
-
* <p>The endpoint of the license service that is accessed by the studio component
|
|
143
|
-
resource.</p>
|
|
144
|
-
*/
|
|
145
56
|
Endpoint?: string;
|
|
146
57
|
};
|
|
147
58
|
/**
|
|
148
59
|
* Type definition for `AWS::NimbleStudio::StudioComponent.ScriptParameterKeyValue`.
|
|
149
|
-
* <p>A parameter for a studio component script, in the form of a key:value pair.</p>
|
|
150
60
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-nimblestudio-studiocomponent-scriptparameterkeyvalue.html}
|
|
151
61
|
*/
|
|
152
62
|
export type ScriptParameterKeyValue = {
|
|
153
|
-
/**
|
|
154
|
-
* <p>A script parameter key.</p>
|
|
155
|
-
* @minLength `1`
|
|
156
|
-
* @maxLength `64`
|
|
157
|
-
* @pattern `^[a-zA-Z_][a-zA-Z0-9_]+$`
|
|
158
|
-
*/
|
|
159
63
|
Key?: string;
|
|
160
|
-
/**
|
|
161
|
-
* <p>A script parameter value.</p>
|
|
162
|
-
* @minLength `1`
|
|
163
|
-
* @maxLength `256`
|
|
164
|
-
*/
|
|
165
64
|
Value?: string;
|
|
166
65
|
};
|
|
167
66
|
/**
|
|
168
67
|
* Type definition for `AWS::NimbleStudio::StudioComponent.SharedFileSystemConfiguration`.
|
|
169
|
-
* <p>The configuration for a shared file storage system that is associated with a studio
|
|
170
|
-
resource.</p>
|
|
171
68
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-nimblestudio-studiocomponent-sharedfilesystemconfiguration.html}
|
|
172
69
|
*/
|
|
173
70
|
export type SharedFileSystemConfiguration = {
|
|
174
|
-
/**
|
|
175
|
-
* <p>The endpoint of the shared file system that is accessed by the studio component
|
|
176
|
-
resource.</p>
|
|
177
|
-
*/
|
|
178
71
|
Endpoint?: string;
|
|
179
|
-
/**
|
|
180
|
-
* <p>The unique identifier for a file system.</p>
|
|
181
|
-
*/
|
|
182
72
|
FileSystemId?: string;
|
|
183
|
-
/**
|
|
184
|
-
* <p>The mount location for a shared file system on a Linux virtual workstation.</p>
|
|
185
|
-
* @minLength `0`
|
|
186
|
-
* @maxLength `128`
|
|
187
|
-
* @pattern `^(/?|(\$HOME)?(/[^/\n\s\\]+)*)$`
|
|
188
|
-
*/
|
|
189
73
|
LinuxMountPoint?: string;
|
|
190
|
-
/**
|
|
191
|
-
* <p>The name of the file share.</p>
|
|
192
|
-
*/
|
|
193
74
|
ShareName?: string;
|
|
194
|
-
/**
|
|
195
|
-
* <p>The mount location for a shared file system on a Windows virtual workstation.</p>
|
|
196
|
-
* @pattern `^[A-Z]$`
|
|
197
|
-
*/
|
|
198
75
|
WindowsMountDrive?: string;
|
|
199
76
|
};
|
|
200
77
|
/**
|
|
201
78
|
* Type definition for `AWS::NimbleStudio::StudioComponent.StudioComponentConfiguration`.
|
|
202
|
-
* <p>The configuration of the studio component, based on component type.</p>
|
|
203
79
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-nimblestudio-studiocomponent-studiocomponentconfiguration.html}
|
|
204
80
|
*/
|
|
205
81
|
export type StudioComponentConfiguration = {
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
ActiveDirectoryConfiguration: ActiveDirectoryConfiguration;
|
|
211
|
-
} | {
|
|
212
|
-
/**
|
|
213
|
-
* <p>The configuration for a render farm that is associated with a studio resource.</p>
|
|
214
|
-
*/
|
|
215
|
-
ComputeFarmConfiguration: ComputeFarmConfiguration;
|
|
216
|
-
} | {
|
|
217
|
-
/**
|
|
218
|
-
* <p>The configuration for a license service that is associated with a studio
|
|
219
|
-
resource.</p>
|
|
220
|
-
*/
|
|
221
|
-
LicenseServiceConfiguration: LicenseServiceConfiguration;
|
|
222
|
-
} | {
|
|
223
|
-
/**
|
|
224
|
-
* <p>The configuration for a shared file storage system that is associated with a studio
|
|
225
|
-
resource.</p>
|
|
226
|
-
*/
|
|
227
|
-
SharedFileSystemConfiguration: SharedFileSystemConfiguration;
|
|
82
|
+
ActiveDirectoryConfiguration?: ActiveDirectoryConfiguration;
|
|
83
|
+
ComputeFarmConfiguration?: ComputeFarmConfiguration;
|
|
84
|
+
LicenseServiceConfiguration?: LicenseServiceConfiguration;
|
|
85
|
+
SharedFileSystemConfiguration?: SharedFileSystemConfiguration;
|
|
228
86
|
};
|
|
229
87
|
/**
|
|
230
88
|
* Type definition for `AWS::NimbleStudio::StudioComponent.StudioComponentInitializationScript`.
|
|
231
|
-
* <p>Initialization scripts for studio components.</p>
|
|
232
89
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-nimblestudio-studiocomponent-studiocomponentinitializationscript.html}
|
|
233
90
|
*/
|
|
234
91
|
export type StudioComponentInitializationScript = {
|
|
235
|
-
/**
|
|
236
|
-
* <p>The version number of the protocol that is used by the launch profile. The only valid
|
|
237
|
-
version is "2021-03-31".</p>
|
|
238
|
-
* @minLength `0`
|
|
239
|
-
* @maxLength `10`
|
|
240
|
-
* @pattern `^2021\-03\-31$`
|
|
241
|
-
*/
|
|
242
92
|
LaunchProfileProtocolVersion?: string;
|
|
243
|
-
Platform?:
|
|
244
|
-
RunContext?:
|
|
245
|
-
/**
|
|
246
|
-
* <p>The initialization script.</p>
|
|
247
|
-
* @minLength `1`
|
|
248
|
-
* @maxLength `5120`
|
|
249
|
-
*/
|
|
93
|
+
Platform?: string;
|
|
94
|
+
RunContext?: string;
|
|
250
95
|
Script?: string;
|
|
251
96
|
};
|
|
252
97
|
/**
|
|
253
|
-
* Type definition for
|
|
254
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-nimblestudio-studiocomponent-studiocomponentinitializationscriptruncontext.html}
|
|
255
|
-
*/
|
|
256
|
-
export type StudioComponentInitializationScriptRunContext = "SYSTEM_INITIALIZATION" | "USER_INITIALIZATION";
|
|
257
|
-
/**
|
|
258
|
-
* Type definition for `AWS::NimbleStudio::StudioComponent.StudioComponentSubtype`.
|
|
259
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-nimblestudio-studiocomponent-studiocomponentsubtype.html}
|
|
260
|
-
*/
|
|
261
|
-
export type StudioComponentSubtype = "AWS_MANAGED_MICROSOFT_AD" | "AMAZON_FSX_FOR_WINDOWS" | "AMAZON_FSX_FOR_LUSTRE" | "CUSTOM";
|
|
262
|
-
/**
|
|
263
|
-
* Type definition for `AWS::NimbleStudio::StudioComponent.StudioComponentType`.
|
|
264
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-nimblestudio-studiocomponent-studiocomponenttype.html}
|
|
265
|
-
*/
|
|
266
|
-
export type StudioComponentType = "ACTIVE_DIRECTORY" | "SHARED_FILE_SYSTEM" | "COMPUTE_FARM" | "LICENSE_SERVICE" | "CUSTOM";
|
|
267
|
-
/**
|
|
268
|
-
* Type definition for `AWS::NimbleStudio::StudioComponent.Tags`.
|
|
269
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-nimblestudio-studiocomponent-tags.html}
|
|
270
|
-
*/
|
|
271
|
-
export type Tags = Record<string, string>;
|
|
272
|
-
/**
|
|
273
|
-
* Resource type definition for `AWS::NimbleStudio::StudioComponent`.
|
|
274
|
-
* Represents a studio component that connects a non-Nimble Studio resource in your account to your studio
|
|
98
|
+
* Resource Type definition for AWS::NimbleStudio::StudioComponent
|
|
275
99
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-nimblestudio-studiocomponent.html}
|
|
276
100
|
*/
|
|
277
101
|
export declare class NimbleStudioStudioComponent extends $Resource<"AWS::NimbleStudio::StudioComponent", NimbleStudioStudioComponentProperties, NimbleStudioStudioComponentAttributes> {
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
/**
|
|
3
|
-
* Resource
|
|
4
|
-
* Represents a studio component that connects a non-Nimble Studio resource in your account to your studio
|
|
3
|
+
* Resource Type definition for AWS::NimbleStudio::StudioComponent
|
|
5
4
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-nimblestudio-studiocomponent.html}
|
|
6
5
|
*/
|
|
7
6
|
export class NimbleStudioStudioComponent extends $Resource {
|
|
@@ -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::Wisdom::AIAgentVersion Resource Type
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wisdom-aiagentversion.html}
|
|
6
|
+
*/
|
|
7
|
+
export type WisdomAIAgentVersionProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* @pattern `^[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}$`
|
|
10
|
+
*/
|
|
11
|
+
AIAgentId: string;
|
|
12
|
+
/**
|
|
13
|
+
* @pattern `^[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}$`
|
|
14
|
+
*/
|
|
15
|
+
AssistantId: string;
|
|
16
|
+
ModifiedTimeSeconds?: number;
|
|
17
|
+
};
|
|
18
|
+
/**
|
|
19
|
+
* Attribute type definition for `AWS::Wisdom::AIAgentVersion`.
|
|
20
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wisdom-aiagentversion.html#aws-resource-wisdom-aiagentversion-return-values}
|
|
21
|
+
*/
|
|
22
|
+
export type WisdomAIAgentVersionAttributes = {
|
|
23
|
+
/**
|
|
24
|
+
* @pattern `^arn:[a-z-]*?:wisdom:[a-z0-9-]*?:[0-9]{12}:[a-z-]*?/[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}(?:/[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12})?$`
|
|
25
|
+
*/
|
|
26
|
+
AIAgentArn: string;
|
|
27
|
+
/**
|
|
28
|
+
* @pattern `^[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}(:[A-Z0-9_$]+){0,1}$`
|
|
29
|
+
*/
|
|
30
|
+
AIAgentVersionId: string;
|
|
31
|
+
/**
|
|
32
|
+
* @pattern `^arn:[a-z-]*?:wisdom:[a-z0-9-]*?:[0-9]{12}:[a-z-]*?/[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}(?:/[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12})?$`
|
|
33
|
+
*/
|
|
34
|
+
AssistantArn: string;
|
|
35
|
+
VersionNumber: number;
|
|
36
|
+
};
|
|
37
|
+
/**
|
|
38
|
+
* Definition of AWS::Wisdom::AIAgentVersion Resource Type
|
|
39
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wisdom-aiagentversion.html}
|
|
40
|
+
*/
|
|
41
|
+
export declare class WisdomAIAgentVersion extends $Resource<"AWS::Wisdom::AIAgentVersion", WisdomAIAgentVersionProperties, WisdomAIAgentVersionAttributes> {
|
|
42
|
+
static readonly Type = "AWS::Wisdom::AIAgentVersion";
|
|
43
|
+
constructor(logicalId: string, properties: WisdomAIAgentVersionProperties, options?: $ResourceOptions);
|
|
44
|
+
}
|
|
45
|
+
//# sourceMappingURL=AWS-Wisdom-AIAgentVersion.d.ts.map
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
/**
|
|
3
|
+
* Definition of AWS::Wisdom::AIAgentVersion Resource Type
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wisdom-aiagentversion.html}
|
|
5
|
+
*/
|
|
6
|
+
export class WisdomAIAgentVersion extends $Resource {
|
|
7
|
+
static Type = "AWS::Wisdom::AIAgentVersion";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, WisdomAIAgentVersion.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-Wisdom-AIAgentVersion.js.map
|