@awboost/cfn-resource-types 0.1.183 → 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.
Files changed (30) hide show
  1. package/lib/AWS-ApiGateway-Account.d.ts +0 -3
  2. package/lib/AWS-ApiGateway-ApiKey.d.ts +0 -27
  3. package/lib/AWS-ApiGateway-Authorizer.d.ts +0 -30
  4. package/lib/AWS-ApiGateway-BasePathMapping.d.ts +0 -12
  5. package/lib/AWS-ApiGateway-ClientCertificate.d.ts +0 -6
  6. package/lib/AWS-ApiGateway-Deployment.d.ts +1 -61
  7. package/lib/AWS-ApiGateway-DocumentationPart.d.ts +3 -23
  8. package/lib/AWS-ApiGateway-DocumentationVersion.d.ts +0 -5
  9. package/lib/AWS-ApiGateway-GatewayResponse.d.ts +0 -15
  10. package/lib/AWS-ApiGateway-Method.d.ts +1 -103
  11. package/lib/AWS-ApiGateway-Model.d.ts +0 -12
  12. package/lib/AWS-ApiGateway-RequestValidator.d.ts +0 -12
  13. package/lib/AWS-ApiGateway-Resource.d.ts +0 -9
  14. package/lib/AWS-ApiGateway-RestApi.d.ts +0 -33
  15. package/lib/AWS-ApiGateway-Stage.d.ts +3 -69
  16. package/lib/AWS-ApiGateway-UsagePlan.d.ts +4 -32
  17. package/lib/AWS-ApiGateway-UsagePlanKey.d.ts +0 -3
  18. package/lib/AWS-NimbleStudio-LaunchProfile.d.ts +9 -186
  19. package/lib/AWS-NimbleStudio-LaunchProfile.js +1 -2
  20. package/lib/AWS-NimbleStudio-StreamingImage.d.ts +6 -72
  21. package/lib/AWS-NimbleStudio-StreamingImage.js +1 -2
  22. package/lib/AWS-NimbleStudio-Studio.d.ts +4 -58
  23. package/lib/AWS-NimbleStudio-Studio.js +1 -2
  24. package/lib/AWS-NimbleStudio-StudioComponent.d.ts +11 -187
  25. package/lib/AWS-NimbleStudio-StudioComponent.js +1 -2
  26. package/lib/AWS-Wisdom-AIAgent.d.ts +182 -0
  27. package/lib/AWS-Wisdom-AIAgent.js +12 -0
  28. package/lib/AWS-Wisdom-AIAgentVersion.d.ts +45 -0
  29. package/lib/AWS-Wisdom-AIAgentVersion.js +12 -0
  30. package/package.json +1 -1
@@ -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 type definition for `AWS::NimbleStudio::StreamingImage`.
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
- * <p>A friendly name for a streaming image resource.</p>
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?: 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 `AWS::NimbleStudio::StreamingImage.StreamingImageEncryptionConfiguration`.
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 type definition for `AWS::NimbleStudio::StreamingImage`.
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 type definition for `AWS::NimbleStudio::Studio`.
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?: 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 `AWS::NimbleStudio::Studio.StudioEncryptionConfigurationKeyType`.
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 type definition for `AWS::NimbleStudio::Studio`.
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 type definition for `AWS::NimbleStudio::StudioComponent`.
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?: StudioComponentSubtype;
56
- Tags?: Tags;
57
- Type: StudioComponentType;
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
- * <p>The configuration for a Microsoft Active Directory (Microsoft AD) studio
208
- resource.</p>
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?: LaunchProfilePlatform;
244
- RunContext?: StudioComponentInitializationScriptRunContext;
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 `AWS::NimbleStudio::StudioComponent.StudioComponentInitializationScriptRunContext`.
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 type definition for `AWS::NimbleStudio::StudioComponent`.
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 {