@cdklabs/cdk-ecs-codedeploy 0.0.11 → 0.0.13
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/.jsii +3 -3
- package/lib/ecs-appspec/index.js +1 -1
- package/lib/ecs-deployment/index.js +1 -1
- package/node_modules/aws-sdk/CHANGELOG.md +20 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/athena-2017-05-18.min.json +3 -1
- package/node_modules/aws-sdk/apis/batch-2016-08-10.min.json +6 -0
- package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +90 -83
- package/node_modules/aws-sdk/apis/ec2-2016-11-15.paginators.json +3 -0
- package/node_modules/aws-sdk/apis/ecs-2014-11-13.min.json +178 -159
- package/node_modules/aws-sdk/apis/kinesis-video-webrtc-storage-2018-05-10.examples.json +5 -0
- package/node_modules/aws-sdk/apis/kinesis-video-webrtc-storage-2018-05-10.min.json +49 -0
- package/node_modules/aws-sdk/apis/kinesis-video-webrtc-storage-2018-05-10.paginators.json +4 -0
- package/node_modules/aws-sdk/apis/kinesisvideo-2017-09-30.min.json +96 -12
- package/node_modules/aws-sdk/apis/kinesisvideo-2017-09-30.paginators.json +6 -0
- package/node_modules/aws-sdk/apis/lookoutequipment-2020-12-15.min.json +2 -1
- package/node_modules/aws-sdk/apis/medialive-2017-10-14.min.json +247 -201
- package/node_modules/aws-sdk/apis/metadata.json +4 -0
- package/node_modules/aws-sdk/apis/nimble-2020-08-01.min.json +283 -140
- package/node_modules/aws-sdk/apis/nimble-2020-08-01.paginators.json +5 -0
- package/node_modules/aws-sdk/apis/rds-2014-10-31.min.json +3 -0
- package/node_modules/aws-sdk/apis/route53domains-2014-05-15.min.json +159 -91
- package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +646 -556
- package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.paginators.json +6 -0
- package/node_modules/aws-sdk/clients/all.d.ts +1 -0
- package/node_modules/aws-sdk/clients/all.js +2 -1
- package/node_modules/aws-sdk/clients/athena.d.ts +4 -4
- package/node_modules/aws-sdk/clients/batch.d.ts +13 -5
- package/node_modules/aws-sdk/clients/ec2.d.ts +52 -38
- package/node_modules/aws-sdk/clients/ecs.d.ts +19 -1
- package/node_modules/aws-sdk/clients/kinesisvideo.d.ts +109 -5
- package/node_modules/aws-sdk/clients/kinesisvideowebrtcstorage.d.ts +66 -0
- package/node_modules/aws-sdk/clients/kinesisvideowebrtcstorage.js +18 -0
- package/node_modules/aws-sdk/clients/lookoutequipment.d.ts +4 -0
- package/node_modules/aws-sdk/clients/medialive.d.ts +47 -4
- package/node_modules/aws-sdk/clients/nimble.d.ts +319 -123
- package/node_modules/aws-sdk/clients/rds.d.ts +5 -1
- package/node_modules/aws-sdk/clients/resourceexplorer2.d.ts +6 -6
- package/node_modules/aws-sdk/clients/route53domains.d.ts +227 -37
- package/node_modules/aws-sdk/clients/sagemaker.d.ts +202 -21
- package/node_modules/aws-sdk/clients/transcribeservice.d.ts +1 -1
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +2 -2
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +56 -19
- package/node_modules/aws-sdk/dist/aws-sdk.js +545 -349
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +71 -71
- package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +2 -0
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +5 -5
|
@@ -37,27 +37,27 @@ declare class Nimble extends Service {
|
|
|
37
37
|
*/
|
|
38
38
|
createStreamingImage(callback?: (err: AWSError, data: Nimble.Types.CreateStreamingImageResponse) => void): Request<Nimble.Types.CreateStreamingImageResponse, AWSError>;
|
|
39
39
|
/**
|
|
40
|
-
* Creates a streaming session in a studio. After invoking this operation, you must poll GetStreamingSession until the streaming session is in
|
|
40
|
+
* Creates a streaming session in a studio. After invoking this operation, you must poll GetStreamingSession until the streaming session is in the READY state.
|
|
41
41
|
*/
|
|
42
42
|
createStreamingSession(params: Nimble.Types.CreateStreamingSessionRequest, callback?: (err: AWSError, data: Nimble.Types.CreateStreamingSessionResponse) => void): Request<Nimble.Types.CreateStreamingSessionResponse, AWSError>;
|
|
43
43
|
/**
|
|
44
|
-
* Creates a streaming session in a studio. After invoking this operation, you must poll GetStreamingSession until the streaming session is in
|
|
44
|
+
* Creates a streaming session in a studio. After invoking this operation, you must poll GetStreamingSession until the streaming session is in the READY state.
|
|
45
45
|
*/
|
|
46
46
|
createStreamingSession(callback?: (err: AWSError, data: Nimble.Types.CreateStreamingSessionResponse) => void): Request<Nimble.Types.CreateStreamingSessionResponse, AWSError>;
|
|
47
47
|
/**
|
|
48
|
-
* Creates a streaming session stream for a streaming session. After invoking this API, invoke GetStreamingSessionStream with the returned streamId to poll the resource until it is in
|
|
48
|
+
* Creates a streaming session stream for a streaming session. After invoking this API, invoke GetStreamingSessionStream with the returned streamId to poll the resource until it is in the READY state.
|
|
49
49
|
*/
|
|
50
50
|
createStreamingSessionStream(params: Nimble.Types.CreateStreamingSessionStreamRequest, callback?: (err: AWSError, data: Nimble.Types.CreateStreamingSessionStreamResponse) => void): Request<Nimble.Types.CreateStreamingSessionStreamResponse, AWSError>;
|
|
51
51
|
/**
|
|
52
|
-
* Creates a streaming session stream for a streaming session. After invoking this API, invoke GetStreamingSessionStream with the returned streamId to poll the resource until it is in
|
|
52
|
+
* Creates a streaming session stream for a streaming session. After invoking this API, invoke GetStreamingSessionStream with the returned streamId to poll the resource until it is in the READY state.
|
|
53
53
|
*/
|
|
54
54
|
createStreamingSessionStream(callback?: (err: AWSError, data: Nimble.Types.CreateStreamingSessionStreamResponse) => void): Request<Nimble.Types.CreateStreamingSessionStreamResponse, AWSError>;
|
|
55
55
|
/**
|
|
56
|
-
* Create a new
|
|
56
|
+
* Create a new studio. When creating a studio, two IAM roles must be provided: the admin role and the user role. These roles are assumed by your users when they log in to the Nimble Studio portal. The user role must have the AmazonNimbleStudio-StudioUser managed policy attached for the portal to function properly. The admin role must have the AmazonNimbleStudio-StudioAdmin managed policy attached for the portal to function properly. You may optionally specify a KMS key in the StudioEncryptionConfiguration. In Nimble Studio, resource names, descriptions, initialization scripts, and other data you provide are always encrypted at rest using an KMS key. By default, this key is owned by Amazon Web Services and managed on your behalf. You may provide your own KMS key when calling CreateStudio to encrypt this data using a key you own and manage. When providing an KMS key during studio creation, Nimble Studio creates KMS grants in your account to provide your studio user and admin roles access to these KMS keys. If you delete this grant, the studio will no longer be accessible to your portal users. If you delete the studio KMS key, your studio will no longer be accessible.
|
|
57
57
|
*/
|
|
58
58
|
createStudio(params: Nimble.Types.CreateStudioRequest, callback?: (err: AWSError, data: Nimble.Types.CreateStudioResponse) => void): Request<Nimble.Types.CreateStudioResponse, AWSError>;
|
|
59
59
|
/**
|
|
60
|
-
* Create a new
|
|
60
|
+
* Create a new studio. When creating a studio, two IAM roles must be provided: the admin role and the user role. These roles are assumed by your users when they log in to the Nimble Studio portal. The user role must have the AmazonNimbleStudio-StudioUser managed policy attached for the portal to function properly. The admin role must have the AmazonNimbleStudio-StudioAdmin managed policy attached for the portal to function properly. You may optionally specify a KMS key in the StudioEncryptionConfiguration. In Nimble Studio, resource names, descriptions, initialization scripts, and other data you provide are always encrypted at rest using an KMS key. By default, this key is owned by Amazon Web Services and managed on your behalf. You may provide your own KMS key when calling CreateStudio to encrypt this data using a key you own and manage. When providing an KMS key during studio creation, Nimble Studio creates KMS grants in your account to provide your studio user and admin roles access to these KMS keys. If you delete this grant, the studio will no longer be accessible to your portal users. If you delete the studio KMS key, your studio will no longer be accessible.
|
|
61
61
|
*/
|
|
62
62
|
createStudio(callback?: (err: AWSError, data: Nimble.Types.CreateStudioResponse) => void): Request<Nimble.Types.CreateStudioResponse, AWSError>;
|
|
63
63
|
/**
|
|
@@ -125,11 +125,11 @@ declare class Nimble extends Service {
|
|
|
125
125
|
*/
|
|
126
126
|
deleteStudioMember(callback?: (err: AWSError, data: Nimble.Types.DeleteStudioMemberResponse) => void): Request<Nimble.Types.DeleteStudioMemberResponse, AWSError>;
|
|
127
127
|
/**
|
|
128
|
-
* Get
|
|
128
|
+
* Get EULA.
|
|
129
129
|
*/
|
|
130
130
|
getEula(params: Nimble.Types.GetEulaRequest, callback?: (err: AWSError, data: Nimble.Types.GetEulaResponse) => void): Request<Nimble.Types.GetEulaResponse, AWSError>;
|
|
131
131
|
/**
|
|
132
|
-
* Get
|
|
132
|
+
* Get EULA.
|
|
133
133
|
*/
|
|
134
134
|
getEula(callback?: (err: AWSError, data: Nimble.Types.GetEulaResponse) => void): Request<Nimble.Types.GetEulaResponse, AWSError>;
|
|
135
135
|
/**
|
|
@@ -181,19 +181,27 @@ declare class Nimble extends Service {
|
|
|
181
181
|
*/
|
|
182
182
|
getStreamingSession(callback?: (err: AWSError, data: Nimble.Types.GetStreamingSessionResponse) => void): Request<Nimble.Types.GetStreamingSessionResponse, AWSError>;
|
|
183
183
|
/**
|
|
184
|
-
* Gets
|
|
184
|
+
* Gets StreamingSessionBackup resource. Invoke this operation to poll for a streaming session backup while stopping a streaming session.
|
|
185
|
+
*/
|
|
186
|
+
getStreamingSessionBackup(params: Nimble.Types.GetStreamingSessionBackupRequest, callback?: (err: AWSError, data: Nimble.Types.GetStreamingSessionBackupResponse) => void): Request<Nimble.Types.GetStreamingSessionBackupResponse, AWSError>;
|
|
187
|
+
/**
|
|
188
|
+
* Gets StreamingSessionBackup resource. Invoke this operation to poll for a streaming session backup while stopping a streaming session.
|
|
189
|
+
*/
|
|
190
|
+
getStreamingSessionBackup(callback?: (err: AWSError, data: Nimble.Types.GetStreamingSessionBackupResponse) => void): Request<Nimble.Types.GetStreamingSessionBackupResponse, AWSError>;
|
|
191
|
+
/**
|
|
192
|
+
* Gets a StreamingSessionStream for a streaming session. Invoke this operation to poll the resource after invoking CreateStreamingSessionStream. After the StreamingSessionStream changes to the READY state, the url property will contain a stream to be used with the DCV streaming client.
|
|
185
193
|
*/
|
|
186
194
|
getStreamingSessionStream(params: Nimble.Types.GetStreamingSessionStreamRequest, callback?: (err: AWSError, data: Nimble.Types.GetStreamingSessionStreamResponse) => void): Request<Nimble.Types.GetStreamingSessionStreamResponse, AWSError>;
|
|
187
195
|
/**
|
|
188
|
-
* Gets a StreamingSessionStream for a streaming session. Invoke this operation to poll the resource after invoking CreateStreamingSessionStream. After the StreamingSessionStream changes to the state
|
|
196
|
+
* Gets a StreamingSessionStream for a streaming session. Invoke this operation to poll the resource after invoking CreateStreamingSessionStream. After the StreamingSessionStream changes to the READY state, the url property will contain a stream to be used with the DCV streaming client.
|
|
189
197
|
*/
|
|
190
198
|
getStreamingSessionStream(callback?: (err: AWSError, data: Nimble.Types.GetStreamingSessionStreamResponse) => void): Request<Nimble.Types.GetStreamingSessionStreamResponse, AWSError>;
|
|
191
199
|
/**
|
|
192
|
-
* Get a
|
|
200
|
+
* Get a studio resource.
|
|
193
201
|
*/
|
|
194
202
|
getStudio(params: Nimble.Types.GetStudioRequest, callback?: (err: AWSError, data: Nimble.Types.GetStudioResponse) => void): Request<Nimble.Types.GetStudioResponse, AWSError>;
|
|
195
203
|
/**
|
|
196
|
-
* Get a
|
|
204
|
+
* Get a studio resource.
|
|
197
205
|
*/
|
|
198
206
|
getStudio(callback?: (err: AWSError, data: Nimble.Types.GetStudioResponse) => void): Request<Nimble.Types.GetStudioResponse, AWSError>;
|
|
199
207
|
/**
|
|
@@ -213,19 +221,19 @@ declare class Nimble extends Service {
|
|
|
213
221
|
*/
|
|
214
222
|
getStudioMember(callback?: (err: AWSError, data: Nimble.Types.GetStudioMemberResponse) => void): Request<Nimble.Types.GetStudioMemberResponse, AWSError>;
|
|
215
223
|
/**
|
|
216
|
-
* List
|
|
224
|
+
* List EULA acceptances.
|
|
217
225
|
*/
|
|
218
226
|
listEulaAcceptances(params: Nimble.Types.ListEulaAcceptancesRequest, callback?: (err: AWSError, data: Nimble.Types.ListEulaAcceptancesResponse) => void): Request<Nimble.Types.ListEulaAcceptancesResponse, AWSError>;
|
|
219
227
|
/**
|
|
220
|
-
* List
|
|
228
|
+
* List EULA acceptances.
|
|
221
229
|
*/
|
|
222
230
|
listEulaAcceptances(callback?: (err: AWSError, data: Nimble.Types.ListEulaAcceptancesResponse) => void): Request<Nimble.Types.ListEulaAcceptancesResponse, AWSError>;
|
|
223
231
|
/**
|
|
224
|
-
* List
|
|
232
|
+
* List EULAs.
|
|
225
233
|
*/
|
|
226
234
|
listEulas(params: Nimble.Types.ListEulasRequest, callback?: (err: AWSError, data: Nimble.Types.ListEulasResponse) => void): Request<Nimble.Types.ListEulasResponse, AWSError>;
|
|
227
235
|
/**
|
|
228
|
-
* List
|
|
236
|
+
* List EULAs.
|
|
229
237
|
*/
|
|
230
238
|
listEulas(callback?: (err: AWSError, data: Nimble.Types.ListEulasResponse) => void): Request<Nimble.Types.ListEulasResponse, AWSError>;
|
|
231
239
|
/**
|
|
@@ -252,6 +260,14 @@ declare class Nimble extends Service {
|
|
|
252
260
|
* List the streaming image resources available to this studio. This list will contain both images provided by Amazon Web Services, as well as streaming images that you have created in your studio.
|
|
253
261
|
*/
|
|
254
262
|
listStreamingImages(callback?: (err: AWSError, data: Nimble.Types.ListStreamingImagesResponse) => void): Request<Nimble.Types.ListStreamingImagesResponse, AWSError>;
|
|
263
|
+
/**
|
|
264
|
+
* Lists the backups of a streaming session in a studio.
|
|
265
|
+
*/
|
|
266
|
+
listStreamingSessionBackups(params: Nimble.Types.ListStreamingSessionBackupsRequest, callback?: (err: AWSError, data: Nimble.Types.ListStreamingSessionBackupsResponse) => void): Request<Nimble.Types.ListStreamingSessionBackupsResponse, AWSError>;
|
|
267
|
+
/**
|
|
268
|
+
* Lists the backups of a streaming session in a studio.
|
|
269
|
+
*/
|
|
270
|
+
listStreamingSessionBackups(callback?: (err: AWSError, data: Nimble.Types.ListStreamingSessionBackupsResponse) => void): Request<Nimble.Types.ListStreamingSessionBackupsResponse, AWSError>;
|
|
255
271
|
/**
|
|
256
272
|
* Lists the streaming sessions in a studio.
|
|
257
273
|
*/
|
|
@@ -277,11 +293,11 @@ declare class Nimble extends Service {
|
|
|
277
293
|
*/
|
|
278
294
|
listStudioMembers(callback?: (err: AWSError, data: Nimble.Types.ListStudioMembersResponse) => void): Request<Nimble.Types.ListStudioMembersResponse, AWSError>;
|
|
279
295
|
/**
|
|
280
|
-
* List studios in your Amazon Web Services
|
|
296
|
+
* List studios in your Amazon Web Services accounts in the requested Amazon Web Services Region.
|
|
281
297
|
*/
|
|
282
298
|
listStudios(params: Nimble.Types.ListStudiosRequest, callback?: (err: AWSError, data: Nimble.Types.ListStudiosResponse) => void): Request<Nimble.Types.ListStudiosResponse, AWSError>;
|
|
283
299
|
/**
|
|
284
|
-
* List studios in your Amazon Web Services
|
|
300
|
+
* List studios in your Amazon Web Services accounts in the requested Amazon Web Services Region.
|
|
285
301
|
*/
|
|
286
302
|
listStudios(callback?: (err: AWSError, data: Nimble.Types.ListStudiosResponse) => void): Request<Nimble.Types.ListStudiosResponse, AWSError>;
|
|
287
303
|
/**
|
|
@@ -309,11 +325,11 @@ declare class Nimble extends Service {
|
|
|
309
325
|
*/
|
|
310
326
|
putStudioMembers(callback?: (err: AWSError, data: Nimble.Types.PutStudioMembersResponse) => void): Request<Nimble.Types.PutStudioMembersResponse, AWSError>;
|
|
311
327
|
/**
|
|
312
|
-
*
|
|
328
|
+
* Transitions sessions from the STOPPED state into the READY state. The START_IN_PROGRESS state is the intermediate state between the STOPPED and READY states.
|
|
313
329
|
*/
|
|
314
330
|
startStreamingSession(params: Nimble.Types.StartStreamingSessionRequest, callback?: (err: AWSError, data: Nimble.Types.StartStreamingSessionResponse) => void): Request<Nimble.Types.StartStreamingSessionResponse, AWSError>;
|
|
315
331
|
/**
|
|
316
|
-
*
|
|
332
|
+
* Transitions sessions from the STOPPED state into the READY state. The START_IN_PROGRESS state is the intermediate state between the STOPPED and READY states.
|
|
317
333
|
*/
|
|
318
334
|
startStreamingSession(callback?: (err: AWSError, data: Nimble.Types.StartStreamingSessionResponse) => void): Request<Nimble.Types.StartStreamingSessionResponse, AWSError>;
|
|
319
335
|
/**
|
|
@@ -488,7 +504,7 @@ declare class Nimble extends Service {
|
|
|
488
504
|
declare namespace Nimble {
|
|
489
505
|
export interface AcceptEulasRequest {
|
|
490
506
|
/**
|
|
491
|
-
* Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If you don’t specify a client token, the
|
|
507
|
+
* Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If you don’t specify a client token, the Amazon Web Services SDK automatically generates a client token and uses it for the request to ensure idempotency.
|
|
492
508
|
*/
|
|
493
509
|
clientToken?: ClientToken;
|
|
494
510
|
/**
|
|
@@ -536,6 +552,7 @@ declare namespace Nimble {
|
|
|
536
552
|
export type ActiveDirectoryDnsIpAddress = string;
|
|
537
553
|
export type ActiveDirectoryDnsIpAddressList = ActiveDirectoryDnsIpAddress[];
|
|
538
554
|
export type ActiveDirectoryOrganizationalUnitDistinguishedName = string;
|
|
555
|
+
export type AutomaticTerminationMode = "DEACTIVATED"|"ACTIVATED"|string;
|
|
539
556
|
export type ClientToken = string;
|
|
540
557
|
export interface ComputeFarmConfiguration {
|
|
541
558
|
/**
|
|
@@ -549,7 +566,7 @@ declare namespace Nimble {
|
|
|
549
566
|
}
|
|
550
567
|
export interface CreateLaunchProfileRequest {
|
|
551
568
|
/**
|
|
552
|
-
* Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If you don’t specify a client token, the
|
|
569
|
+
* Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If you don’t specify a client token, the Amazon Web Services SDK automatically generates a client token and uses it for the request to ensure idempotency.
|
|
553
570
|
*/
|
|
554
571
|
clientToken?: ClientToken;
|
|
555
572
|
/**
|
|
@@ -581,7 +598,7 @@ declare namespace Nimble {
|
|
|
581
598
|
*/
|
|
582
599
|
studioId: String;
|
|
583
600
|
/**
|
|
584
|
-
* A collection of labels, in the form of key
|
|
601
|
+
* A collection of labels, in the form of key-value pairs, that apply to this resource.
|
|
585
602
|
*/
|
|
586
603
|
tags?: Tags;
|
|
587
604
|
}
|
|
@@ -593,7 +610,7 @@ declare namespace Nimble {
|
|
|
593
610
|
}
|
|
594
611
|
export interface CreateStreamingImageRequest {
|
|
595
612
|
/**
|
|
596
|
-
* Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If you don’t specify a client token, the
|
|
613
|
+
* Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If you don’t specify a client token, the Amazon Web Services SDK automatically generates a client token and uses it for the request to ensure idempotency.
|
|
597
614
|
*/
|
|
598
615
|
clientToken?: ClientToken;
|
|
599
616
|
/**
|
|
@@ -613,7 +630,7 @@ declare namespace Nimble {
|
|
|
613
630
|
*/
|
|
614
631
|
studioId: String;
|
|
615
632
|
/**
|
|
616
|
-
* A collection of labels, in the form of key
|
|
633
|
+
* A collection of labels, in the form of key-value pairs, that apply to this resource.
|
|
617
634
|
*/
|
|
618
635
|
tags?: Tags;
|
|
619
636
|
}
|
|
@@ -625,7 +642,7 @@ declare namespace Nimble {
|
|
|
625
642
|
}
|
|
626
643
|
export interface CreateStreamingSessionRequest {
|
|
627
644
|
/**
|
|
628
|
-
* Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If you don’t specify a client token, the
|
|
645
|
+
* Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If you don’t specify a client token, the Amazon Web Services SDK automatically generates a client token and uses it for the request to ensure idempotency.
|
|
629
646
|
*/
|
|
630
647
|
clientToken?: ClientToken;
|
|
631
648
|
/**
|
|
@@ -633,9 +650,9 @@ declare namespace Nimble {
|
|
|
633
650
|
*/
|
|
634
651
|
ec2InstanceType?: StreamingInstanceType;
|
|
635
652
|
/**
|
|
636
|
-
* The launch profile
|
|
653
|
+
* The ID of the launch profile used to control access from the streaming session.
|
|
637
654
|
*/
|
|
638
|
-
launchProfileId
|
|
655
|
+
launchProfileId: String;
|
|
639
656
|
/**
|
|
640
657
|
* The user ID of the user that owns the streaming session. The user that owns the session will be logging into the session and interacting with the virtual workstation.
|
|
641
658
|
*/
|
|
@@ -649,7 +666,7 @@ declare namespace Nimble {
|
|
|
649
666
|
*/
|
|
650
667
|
studioId: String;
|
|
651
668
|
/**
|
|
652
|
-
* A collection of labels, in the form of key
|
|
669
|
+
* A collection of labels, in the form of key-value pairs, that apply to this resource.
|
|
653
670
|
*/
|
|
654
671
|
tags?: Tags;
|
|
655
672
|
}
|
|
@@ -661,7 +678,7 @@ declare namespace Nimble {
|
|
|
661
678
|
}
|
|
662
679
|
export interface CreateStreamingSessionStreamRequest {
|
|
663
680
|
/**
|
|
664
|
-
* Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If you don’t specify a client token, the
|
|
681
|
+
* Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If you don’t specify a client token, the Amazon Web Services SDK automatically generates a client token and uses it for the request to ensure idempotency.
|
|
665
682
|
*/
|
|
666
683
|
clientToken?: ClientToken;
|
|
667
684
|
/**
|
|
@@ -685,7 +702,7 @@ declare namespace Nimble {
|
|
|
685
702
|
}
|
|
686
703
|
export interface CreateStudioComponentRequest {
|
|
687
704
|
/**
|
|
688
|
-
* Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If you don’t specify a client token, the
|
|
705
|
+
* Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If you don’t specify a client token, the Amazon Web Services SDK automatically generates a client token and uses it for the request to ensure idempotency.
|
|
689
706
|
*/
|
|
690
707
|
clientToken?: ClientToken;
|
|
691
708
|
/**
|
|
@@ -709,7 +726,7 @@ declare namespace Nimble {
|
|
|
709
726
|
*/
|
|
710
727
|
name: StudioComponentName;
|
|
711
728
|
/**
|
|
712
|
-
* An IAM role attached to a Studio Component that gives the studio component access to
|
|
729
|
+
* An IAM role attached to a Studio Component that gives the studio component access to Amazon Web Services resources at anytime while the instance is running.
|
|
713
730
|
*/
|
|
714
731
|
runtimeRoleArn?: RoleArn;
|
|
715
732
|
/**
|
|
@@ -717,7 +734,7 @@ declare namespace Nimble {
|
|
|
717
734
|
*/
|
|
718
735
|
scriptParameters?: StudioComponentScriptParameterKeyValueList;
|
|
719
736
|
/**
|
|
720
|
-
* An IAM role attached to Studio Component when the system initialization script runs which give the studio component access to
|
|
737
|
+
* An IAM role attached to Studio Component when the system initialization script runs which give the studio component access to Amazon Web Services resources when the system initialization script runs.
|
|
721
738
|
*/
|
|
722
739
|
secureInitializationRoleArn?: RoleArn;
|
|
723
740
|
/**
|
|
@@ -729,7 +746,7 @@ declare namespace Nimble {
|
|
|
729
746
|
*/
|
|
730
747
|
subtype?: StudioComponentSubtype;
|
|
731
748
|
/**
|
|
732
|
-
* A collection of labels, in the form of key
|
|
749
|
+
* A collection of labels, in the form of key-value pairs, that apply to this resource.
|
|
733
750
|
*/
|
|
734
751
|
tags?: Tags;
|
|
735
752
|
/**
|
|
@@ -745,11 +762,11 @@ declare namespace Nimble {
|
|
|
745
762
|
}
|
|
746
763
|
export interface CreateStudioRequest {
|
|
747
764
|
/**
|
|
748
|
-
* The IAM role that
|
|
765
|
+
* The IAM role that studio admins will assume when logging in to the Nimble Studio portal.
|
|
749
766
|
*/
|
|
750
767
|
adminRoleArn: RoleArn;
|
|
751
768
|
/**
|
|
752
|
-
* Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If you don’t specify a client token, the
|
|
769
|
+
* Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If you don’t specify a client token, the Amazon Web Services SDK automatically generates a client token and uses it for the request to ensure idempotency.
|
|
753
770
|
*/
|
|
754
771
|
clientToken?: ClientToken;
|
|
755
772
|
/**
|
|
@@ -765,11 +782,11 @@ declare namespace Nimble {
|
|
|
765
782
|
*/
|
|
766
783
|
studioName: StudioName;
|
|
767
784
|
/**
|
|
768
|
-
* A collection of labels, in the form of key
|
|
785
|
+
* A collection of labels, in the form of key-value pairs, that apply to this resource.
|
|
769
786
|
*/
|
|
770
787
|
tags?: Tags;
|
|
771
788
|
/**
|
|
772
|
-
* The IAM role that
|
|
789
|
+
* The IAM role that studio users will assume when logging in to the Nimble Studio portal.
|
|
773
790
|
*/
|
|
774
791
|
userRoleArn: RoleArn;
|
|
775
792
|
}
|
|
@@ -781,11 +798,11 @@ declare namespace Nimble {
|
|
|
781
798
|
}
|
|
782
799
|
export interface DeleteLaunchProfileMemberRequest {
|
|
783
800
|
/**
|
|
784
|
-
* Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If you don’t specify a client token, the
|
|
801
|
+
* Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If you don’t specify a client token, the Amazon Web Services SDK automatically generates a client token and uses it for the request to ensure idempotency.
|
|
785
802
|
*/
|
|
786
803
|
clientToken?: ClientToken;
|
|
787
804
|
/**
|
|
788
|
-
* The
|
|
805
|
+
* The ID of the launch profile used to control access from the streaming session.
|
|
789
806
|
*/
|
|
790
807
|
launchProfileId: String;
|
|
791
808
|
/**
|
|
@@ -801,11 +818,11 @@ declare namespace Nimble {
|
|
|
801
818
|
}
|
|
802
819
|
export interface DeleteLaunchProfileRequest {
|
|
803
820
|
/**
|
|
804
|
-
* Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If you don’t specify a client token, the
|
|
821
|
+
* Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If you don’t specify a client token, the Amazon Web Services SDK automatically generates a client token and uses it for the request to ensure idempotency.
|
|
805
822
|
*/
|
|
806
823
|
clientToken?: ClientToken;
|
|
807
824
|
/**
|
|
808
|
-
* The
|
|
825
|
+
* The ID of the launch profile used to control access from the streaming session.
|
|
809
826
|
*/
|
|
810
827
|
launchProfileId: String;
|
|
811
828
|
/**
|
|
@@ -821,7 +838,7 @@ declare namespace Nimble {
|
|
|
821
838
|
}
|
|
822
839
|
export interface DeleteStreamingImageRequest {
|
|
823
840
|
/**
|
|
824
|
-
* Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If you don’t specify a client token, the
|
|
841
|
+
* Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If you don’t specify a client token, the Amazon Web Services SDK automatically generates a client token and uses it for the request to ensure idempotency.
|
|
825
842
|
*/
|
|
826
843
|
clientToken?: ClientToken;
|
|
827
844
|
/**
|
|
@@ -841,7 +858,7 @@ declare namespace Nimble {
|
|
|
841
858
|
}
|
|
842
859
|
export interface DeleteStreamingSessionRequest {
|
|
843
860
|
/**
|
|
844
|
-
* Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If you don’t specify a client token, the
|
|
861
|
+
* Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If you don’t specify a client token, the Amazon Web Services SDK automatically generates a client token and uses it for the request to ensure idempotency.
|
|
845
862
|
*/
|
|
846
863
|
clientToken?: ClientToken;
|
|
847
864
|
/**
|
|
@@ -861,7 +878,7 @@ declare namespace Nimble {
|
|
|
861
878
|
}
|
|
862
879
|
export interface DeleteStudioComponentRequest {
|
|
863
880
|
/**
|
|
864
|
-
* Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If you don’t specify a client token, the
|
|
881
|
+
* Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If you don’t specify a client token, the Amazon Web Services SDK automatically generates a client token and uses it for the request to ensure idempotency.
|
|
865
882
|
*/
|
|
866
883
|
clientToken?: ClientToken;
|
|
867
884
|
/**
|
|
@@ -881,7 +898,7 @@ declare namespace Nimble {
|
|
|
881
898
|
}
|
|
882
899
|
export interface DeleteStudioMemberRequest {
|
|
883
900
|
/**
|
|
884
|
-
* Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If you don’t specify a client token, the
|
|
901
|
+
* Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If you don’t specify a client token, the Amazon Web Services SDK automatically generates a client token and uses it for the request to ensure idempotency.
|
|
885
902
|
*/
|
|
886
903
|
clientToken?: ClientToken;
|
|
887
904
|
/**
|
|
@@ -897,7 +914,7 @@ declare namespace Nimble {
|
|
|
897
914
|
}
|
|
898
915
|
export interface DeleteStudioRequest {
|
|
899
916
|
/**
|
|
900
|
-
* Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If you don’t specify a client token, the
|
|
917
|
+
* Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If you don’t specify a client token, the Amazon Web Services SDK automatically generates a client token and uses it for the request to ensure idempotency.
|
|
901
918
|
*/
|
|
902
919
|
clientToken?: ClientToken;
|
|
903
920
|
/**
|
|
@@ -921,7 +938,7 @@ declare namespace Nimble {
|
|
|
921
938
|
*/
|
|
922
939
|
content?: String;
|
|
923
940
|
/**
|
|
924
|
-
* The
|
|
941
|
+
* The ISO timestamp in seconds for when the resource was created.
|
|
925
942
|
*/
|
|
926
943
|
createdAt?: Timestamp;
|
|
927
944
|
/**
|
|
@@ -933,13 +950,13 @@ declare namespace Nimble {
|
|
|
933
950
|
*/
|
|
934
951
|
name?: EulaName;
|
|
935
952
|
/**
|
|
936
|
-
* The
|
|
953
|
+
* The ISO timestamp in seconds for when the resource was updated.
|
|
937
954
|
*/
|
|
938
955
|
updatedAt?: Timestamp;
|
|
939
956
|
}
|
|
940
957
|
export interface EulaAcceptance {
|
|
941
958
|
/**
|
|
942
|
-
* The
|
|
959
|
+
* The ISO timestamp in seconds for when the EULA was accepted.
|
|
943
960
|
*/
|
|
944
961
|
acceptedAt?: Timestamp;
|
|
945
962
|
/**
|
|
@@ -979,7 +996,7 @@ declare namespace Nimble {
|
|
|
979
996
|
}
|
|
980
997
|
export interface GetLaunchProfileDetailsRequest {
|
|
981
998
|
/**
|
|
982
|
-
* The
|
|
999
|
+
* The ID of the launch profile used to control access from the streaming session.
|
|
983
1000
|
*/
|
|
984
1001
|
launchProfileId: String;
|
|
985
1002
|
/**
|
|
@@ -1003,7 +1020,7 @@ declare namespace Nimble {
|
|
|
1003
1020
|
}
|
|
1004
1021
|
export interface GetLaunchProfileInitializationRequest {
|
|
1005
1022
|
/**
|
|
1006
|
-
* The
|
|
1023
|
+
* The ID of the launch profile used to control access from the streaming session.
|
|
1007
1024
|
*/
|
|
1008
1025
|
launchProfileId: String;
|
|
1009
1026
|
/**
|
|
@@ -1015,7 +1032,7 @@ declare namespace Nimble {
|
|
|
1015
1032
|
*/
|
|
1016
1033
|
launchPurpose: String;
|
|
1017
1034
|
/**
|
|
1018
|
-
* The platform where this Launch Profile will be used, either
|
|
1035
|
+
* The platform where this Launch Profile will be used, either Windows or Linux.
|
|
1019
1036
|
*/
|
|
1020
1037
|
platform: String;
|
|
1021
1038
|
/**
|
|
@@ -1031,7 +1048,7 @@ declare namespace Nimble {
|
|
|
1031
1048
|
}
|
|
1032
1049
|
export interface GetLaunchProfileMemberRequest {
|
|
1033
1050
|
/**
|
|
1034
|
-
* The
|
|
1051
|
+
* The ID of the launch profile used to control access from the streaming session.
|
|
1035
1052
|
*/
|
|
1036
1053
|
launchProfileId: String;
|
|
1037
1054
|
/**
|
|
@@ -1051,7 +1068,7 @@ declare namespace Nimble {
|
|
|
1051
1068
|
}
|
|
1052
1069
|
export interface GetLaunchProfileRequest {
|
|
1053
1070
|
/**
|
|
1054
|
-
* The
|
|
1071
|
+
* The ID of the launch profile used to control access from the streaming session.
|
|
1055
1072
|
*/
|
|
1056
1073
|
launchProfileId: String;
|
|
1057
1074
|
/**
|
|
@@ -1081,6 +1098,22 @@ declare namespace Nimble {
|
|
|
1081
1098
|
*/
|
|
1082
1099
|
streamingImage?: StreamingImage;
|
|
1083
1100
|
}
|
|
1101
|
+
export interface GetStreamingSessionBackupRequest {
|
|
1102
|
+
/**
|
|
1103
|
+
* The ID of the backup.
|
|
1104
|
+
*/
|
|
1105
|
+
backupId: String;
|
|
1106
|
+
/**
|
|
1107
|
+
* The studio ID.
|
|
1108
|
+
*/
|
|
1109
|
+
studioId: String;
|
|
1110
|
+
}
|
|
1111
|
+
export interface GetStreamingSessionBackupResponse {
|
|
1112
|
+
/**
|
|
1113
|
+
* Information about the streaming session backup.
|
|
1114
|
+
*/
|
|
1115
|
+
streamingSessionBackup?: StreamingSessionBackup;
|
|
1116
|
+
}
|
|
1084
1117
|
export interface GetStreamingSessionRequest {
|
|
1085
1118
|
/**
|
|
1086
1119
|
* The streaming session ID.
|
|
@@ -1163,11 +1196,11 @@ declare namespace Nimble {
|
|
|
1163
1196
|
}
|
|
1164
1197
|
export interface LaunchProfile {
|
|
1165
1198
|
/**
|
|
1166
|
-
* The ARN
|
|
1199
|
+
* The Amazon Resource Name (ARN) that is assigned to a studio resource and uniquely identifies it. ARNs are unique across all Regions.
|
|
1167
1200
|
*/
|
|
1168
1201
|
arn?: String;
|
|
1169
1202
|
/**
|
|
1170
|
-
* The
|
|
1203
|
+
* The ISO timestamp in seconds for when the resource was created.
|
|
1171
1204
|
*/
|
|
1172
1205
|
createdAt?: Timestamp;
|
|
1173
1206
|
/**
|
|
@@ -1183,7 +1216,7 @@ declare namespace Nimble {
|
|
|
1183
1216
|
*/
|
|
1184
1217
|
ec2SubnetIds?: EC2SubnetIdList;
|
|
1185
1218
|
/**
|
|
1186
|
-
* The launch profile
|
|
1219
|
+
* The ID of the launch profile used to control access from the streaming session.
|
|
1187
1220
|
*/
|
|
1188
1221
|
launchProfileId?: LaunchProfileId;
|
|
1189
1222
|
/**
|
|
@@ -1215,11 +1248,11 @@ declare namespace Nimble {
|
|
|
1215
1248
|
*/
|
|
1216
1249
|
studioComponentIds?: LaunchProfileStudioComponentIdList;
|
|
1217
1250
|
/**
|
|
1218
|
-
* A collection of labels, in the form of key
|
|
1251
|
+
* A collection of labels, in the form of key-value pairs, that apply to this resource.
|
|
1219
1252
|
*/
|
|
1220
1253
|
tags?: Tags;
|
|
1221
1254
|
/**
|
|
1222
|
-
* The
|
|
1255
|
+
* The ISO timestamp in seconds for when the resource was updated.
|
|
1223
1256
|
*/
|
|
1224
1257
|
updatedAt?: Timestamp;
|
|
1225
1258
|
/**
|
|
@@ -1243,7 +1276,7 @@ declare namespace Nimble {
|
|
|
1243
1276
|
*/
|
|
1244
1277
|
ec2SecurityGroupIds?: LaunchProfileSecurityGroupIdList;
|
|
1245
1278
|
/**
|
|
1246
|
-
* The launch profile
|
|
1279
|
+
* The ID of the launch profile used to control access from the streaming session.
|
|
1247
1280
|
*/
|
|
1248
1281
|
launchProfileId?: LaunchProfileId;
|
|
1249
1282
|
/**
|
|
@@ -1259,7 +1292,7 @@ declare namespace Nimble {
|
|
|
1259
1292
|
*/
|
|
1260
1293
|
name?: LaunchProfileName;
|
|
1261
1294
|
/**
|
|
1262
|
-
* The platform of the launch platform, either
|
|
1295
|
+
* The platform of the launch platform, either Windows or Linux.
|
|
1263
1296
|
*/
|
|
1264
1297
|
platform?: LaunchProfilePlatform;
|
|
1265
1298
|
/**
|
|
@@ -1303,7 +1336,7 @@ declare namespace Nimble {
|
|
|
1303
1336
|
}
|
|
1304
1337
|
export interface LaunchProfileInitializationScript {
|
|
1305
1338
|
/**
|
|
1306
|
-
* An IAM role attached to a Studio Component that gives the studio component access to
|
|
1339
|
+
* An IAM role attached to a Studio Component that gives the studio component access to Amazon Web Services resources at anytime while the instance is running.
|
|
1307
1340
|
*/
|
|
1308
1341
|
runtimeRoleArn?: RoleArn;
|
|
1309
1342
|
/**
|
|
@@ -1311,7 +1344,7 @@ declare namespace Nimble {
|
|
|
1311
1344
|
*/
|
|
1312
1345
|
script?: StudioComponentInitializationScriptContent;
|
|
1313
1346
|
/**
|
|
1314
|
-
* An IAM role attached to Studio Component when the system initialization script runs which give the studio component access to
|
|
1347
|
+
* An IAM role attached to Studio Component when the system initialization script runs which give the studio component access to Amazon Web Services resources when the system initialization script runs.
|
|
1315
1348
|
*/
|
|
1316
1349
|
secureInitializationRoleArn?: RoleArn;
|
|
1317
1350
|
/**
|
|
@@ -1372,7 +1405,7 @@ declare namespace Nimble {
|
|
|
1372
1405
|
*/
|
|
1373
1406
|
eulaIds?: StringList;
|
|
1374
1407
|
/**
|
|
1375
|
-
* The token
|
|
1408
|
+
* The token for the next set of results, or null if there are no more results.
|
|
1376
1409
|
*/
|
|
1377
1410
|
nextToken?: String;
|
|
1378
1411
|
/**
|
|
@@ -1396,7 +1429,7 @@ declare namespace Nimble {
|
|
|
1396
1429
|
*/
|
|
1397
1430
|
eulaIds?: StringList;
|
|
1398
1431
|
/**
|
|
1399
|
-
* The token
|
|
1432
|
+
* The token for the next set of results, or null if there are no more results.
|
|
1400
1433
|
*/
|
|
1401
1434
|
nextToken?: String;
|
|
1402
1435
|
}
|
|
@@ -1412,7 +1445,7 @@ declare namespace Nimble {
|
|
|
1412
1445
|
}
|
|
1413
1446
|
export interface ListLaunchProfileMembersRequest {
|
|
1414
1447
|
/**
|
|
1415
|
-
* The
|
|
1448
|
+
* The ID of the launch profile used to control access from the streaming session.
|
|
1416
1449
|
*/
|
|
1417
1450
|
launchProfileId: String;
|
|
1418
1451
|
/**
|
|
@@ -1420,7 +1453,7 @@ declare namespace Nimble {
|
|
|
1420
1453
|
*/
|
|
1421
1454
|
maxResults?: MaxResults;
|
|
1422
1455
|
/**
|
|
1423
|
-
* The token
|
|
1456
|
+
* The token for the next set of results, or null if there are no more results.
|
|
1424
1457
|
*/
|
|
1425
1458
|
nextToken?: String;
|
|
1426
1459
|
/**
|
|
@@ -1444,7 +1477,7 @@ declare namespace Nimble {
|
|
|
1444
1477
|
*/
|
|
1445
1478
|
maxResults?: MaxResults;
|
|
1446
1479
|
/**
|
|
1447
|
-
* The token
|
|
1480
|
+
* The token for the next set of results, or null if there are no more results.
|
|
1448
1481
|
*/
|
|
1449
1482
|
nextToken?: String;
|
|
1450
1483
|
/**
|
|
@@ -1472,7 +1505,7 @@ declare namespace Nimble {
|
|
|
1472
1505
|
}
|
|
1473
1506
|
export interface ListStreamingImagesRequest {
|
|
1474
1507
|
/**
|
|
1475
|
-
* The token
|
|
1508
|
+
* The token for the next set of results, or null if there are no more results.
|
|
1476
1509
|
*/
|
|
1477
1510
|
nextToken?: String;
|
|
1478
1511
|
/**
|
|
@@ -1494,13 +1527,37 @@ declare namespace Nimble {
|
|
|
1494
1527
|
*/
|
|
1495
1528
|
streamingImages?: StreamingImageList;
|
|
1496
1529
|
}
|
|
1530
|
+
export interface ListStreamingSessionBackupsRequest {
|
|
1531
|
+
/**
|
|
1532
|
+
* The token for the next set of results, or null if there are no more results.
|
|
1533
|
+
*/
|
|
1534
|
+
nextToken?: String;
|
|
1535
|
+
/**
|
|
1536
|
+
* The user ID of the user that owns the streaming session.
|
|
1537
|
+
*/
|
|
1538
|
+
ownedBy?: String;
|
|
1539
|
+
/**
|
|
1540
|
+
* The studio ID.
|
|
1541
|
+
*/
|
|
1542
|
+
studioId: String;
|
|
1543
|
+
}
|
|
1544
|
+
export interface ListStreamingSessionBackupsResponse {
|
|
1545
|
+
/**
|
|
1546
|
+
* The token for the next set of results, or null if there are no more results.
|
|
1547
|
+
*/
|
|
1548
|
+
nextToken?: String;
|
|
1549
|
+
/**
|
|
1550
|
+
* Information about the streaming session backups.
|
|
1551
|
+
*/
|
|
1552
|
+
streamingSessionBackups?: StreamingSessionBackupList;
|
|
1553
|
+
}
|
|
1497
1554
|
export interface ListStreamingSessionsRequest {
|
|
1498
1555
|
/**
|
|
1499
1556
|
* Filters the request to streaming sessions created by the given user.
|
|
1500
1557
|
*/
|
|
1501
1558
|
createdBy?: String;
|
|
1502
1559
|
/**
|
|
1503
|
-
* The token
|
|
1560
|
+
* The token for the next set of results, or null if there are no more results.
|
|
1504
1561
|
*/
|
|
1505
1562
|
nextToken?: String;
|
|
1506
1563
|
/**
|
|
@@ -1532,7 +1589,7 @@ declare namespace Nimble {
|
|
|
1532
1589
|
*/
|
|
1533
1590
|
maxResults?: MaxResults;
|
|
1534
1591
|
/**
|
|
1535
|
-
* The token
|
|
1592
|
+
* The token for the next set of results, or null if there are no more results.
|
|
1536
1593
|
*/
|
|
1537
1594
|
nextToken?: String;
|
|
1538
1595
|
/**
|
|
@@ -1564,7 +1621,7 @@ declare namespace Nimble {
|
|
|
1564
1621
|
*/
|
|
1565
1622
|
maxResults?: MaxResults;
|
|
1566
1623
|
/**
|
|
1567
|
-
* The token
|
|
1624
|
+
* The token for the next set of results, or null if there are no more results.
|
|
1568
1625
|
*/
|
|
1569
1626
|
nextToken?: String;
|
|
1570
1627
|
/**
|
|
@@ -1584,7 +1641,7 @@ declare namespace Nimble {
|
|
|
1584
1641
|
}
|
|
1585
1642
|
export interface ListStudiosRequest {
|
|
1586
1643
|
/**
|
|
1587
|
-
* The token
|
|
1644
|
+
* The token for the next set of results, or null if there are no more results.
|
|
1588
1645
|
*/
|
|
1589
1646
|
nextToken?: String;
|
|
1590
1647
|
}
|
|
@@ -1606,7 +1663,7 @@ declare namespace Nimble {
|
|
|
1606
1663
|
}
|
|
1607
1664
|
export interface ListTagsForResourceResponse {
|
|
1608
1665
|
/**
|
|
1609
|
-
* A collection of labels, in the form of key
|
|
1666
|
+
* A collection of labels, in the form of key-value pairs, that apply to this resource.
|
|
1610
1667
|
*/
|
|
1611
1668
|
tags?: Tags;
|
|
1612
1669
|
}
|
|
@@ -1635,7 +1692,7 @@ declare namespace Nimble {
|
|
|
1635
1692
|
export type NewStudioMemberList = NewStudioMember[];
|
|
1636
1693
|
export interface PutLaunchProfileMembersRequest {
|
|
1637
1694
|
/**
|
|
1638
|
-
* Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If you don’t specify a client token, the
|
|
1695
|
+
* Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If you don’t specify a client token, the Amazon Web Services SDK automatically generates a client token and uses it for the request to ensure idempotency.
|
|
1639
1696
|
*/
|
|
1640
1697
|
clientToken?: ClientToken;
|
|
1641
1698
|
/**
|
|
@@ -1643,7 +1700,7 @@ declare namespace Nimble {
|
|
|
1643
1700
|
*/
|
|
1644
1701
|
identityStoreId: String;
|
|
1645
1702
|
/**
|
|
1646
|
-
* The
|
|
1703
|
+
* The ID of the launch profile used to control access from the streaming session.
|
|
1647
1704
|
*/
|
|
1648
1705
|
launchProfileId: String;
|
|
1649
1706
|
/**
|
|
@@ -1659,7 +1716,7 @@ declare namespace Nimble {
|
|
|
1659
1716
|
}
|
|
1660
1717
|
export interface PutStudioMembersRequest {
|
|
1661
1718
|
/**
|
|
1662
|
-
* Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If you don’t specify a client token, the
|
|
1719
|
+
* Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If you don’t specify a client token, the Amazon Web Services SDK automatically generates a client token and uses it for the request to ensure idempotency.
|
|
1663
1720
|
*/
|
|
1664
1721
|
clientToken?: ClientToken;
|
|
1665
1722
|
/**
|
|
@@ -1693,6 +1750,8 @@ declare namespace Nimble {
|
|
|
1693
1750
|
export type ScriptParameterValue = string;
|
|
1694
1751
|
export type SecurityGroupId = string;
|
|
1695
1752
|
export type SensitiveString = string;
|
|
1753
|
+
export type SessionBackupMode = "AUTOMATIC"|"DEACTIVATED"|string;
|
|
1754
|
+
export type SessionPersistenceMode = "DEACTIVATED"|"ACTIVATED"|string;
|
|
1696
1755
|
export interface SharedFileSystemConfiguration {
|
|
1697
1756
|
/**
|
|
1698
1757
|
* The endpoint of the shared file system that is accessed by the studio component resource.
|
|
@@ -1717,7 +1776,11 @@ declare namespace Nimble {
|
|
|
1717
1776
|
}
|
|
1718
1777
|
export interface StartStreamingSessionRequest {
|
|
1719
1778
|
/**
|
|
1720
|
-
*
|
|
1779
|
+
* The ID of the backup.
|
|
1780
|
+
*/
|
|
1781
|
+
backupId?: String;
|
|
1782
|
+
/**
|
|
1783
|
+
* Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If you don’t specify a client token, the Amazon Web Services SDK automatically generates a client token and uses it for the request to ensure idempotency.
|
|
1721
1784
|
*/
|
|
1722
1785
|
clientToken?: ClientToken;
|
|
1723
1786
|
/**
|
|
@@ -1734,7 +1797,7 @@ declare namespace Nimble {
|
|
|
1734
1797
|
}
|
|
1735
1798
|
export interface StartStudioSSOConfigurationRepairRequest {
|
|
1736
1799
|
/**
|
|
1737
|
-
* Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If you don’t specify a client token, the
|
|
1800
|
+
* Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If you don’t specify a client token, the Amazon Web Services SDK automatically generates a client token and uses it for the request to ensure idempotency.
|
|
1738
1801
|
*/
|
|
1739
1802
|
clientToken?: ClientToken;
|
|
1740
1803
|
/**
|
|
@@ -1750,7 +1813,7 @@ declare namespace Nimble {
|
|
|
1750
1813
|
}
|
|
1751
1814
|
export interface StopStreamingSessionRequest {
|
|
1752
1815
|
/**
|
|
1753
|
-
* Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If you don’t specify a client token, the
|
|
1816
|
+
* Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If you don’t specify a client token, the Amazon Web Services SDK automatically generates a client token and uses it for the request to ensure idempotency.
|
|
1754
1817
|
*/
|
|
1755
1818
|
clientToken?: ClientToken;
|
|
1756
1819
|
/**
|
|
@@ -1761,13 +1824,21 @@ declare namespace Nimble {
|
|
|
1761
1824
|
* The studioId for the StopStreamingSessionRequest.
|
|
1762
1825
|
*/
|
|
1763
1826
|
studioId: String;
|
|
1827
|
+
/**
|
|
1828
|
+
* Adds additional instructions to a streaming session stop action to either retain the EBS volumes or delete the EBS volumes.
|
|
1829
|
+
*/
|
|
1830
|
+
volumeRetentionMode?: VolumeRetentionMode;
|
|
1764
1831
|
}
|
|
1765
1832
|
export interface StopStreamingSessionResponse {
|
|
1766
1833
|
session?: StreamingSession;
|
|
1767
1834
|
}
|
|
1768
1835
|
export interface StreamConfiguration {
|
|
1769
1836
|
/**
|
|
1770
|
-
*
|
|
1837
|
+
* Indicates if a streaming session created from this launch profile should be terminated automatically or retained without termination after being in a STOPPED state. When ACTIVATED, the streaming session is scheduled for termination after being in the STOPPED state for the time specified in maxStoppedSessionLengthInMinutes. When DEACTIVATED, the streaming session can remain in the STOPPED state indefinitely. This parameter is only allowed when sessionPersistenceMode is ACTIVATED. When allowed, the default value for this parameter is DEACTIVATED.
|
|
1838
|
+
*/
|
|
1839
|
+
automaticTerminationMode?: AutomaticTerminationMode;
|
|
1840
|
+
/**
|
|
1841
|
+
* Allows or deactivates the use of the system clipboard to copy and paste between the streaming session and streaming client.
|
|
1771
1842
|
*/
|
|
1772
1843
|
clipboardMode: StreamingClipboardMode;
|
|
1773
1844
|
/**
|
|
@@ -1779,21 +1850,37 @@ declare namespace Nimble {
|
|
|
1779
1850
|
*/
|
|
1780
1851
|
maxSessionLengthInMinutes?: StreamConfigurationMaxSessionLengthInMinutes;
|
|
1781
1852
|
/**
|
|
1782
|
-
* Integer that determines if you can start and stop your sessions and how long a session can stay in the STOPPED state. The default value is 0. The maximum value is 5760. If the value is
|
|
1853
|
+
* Integer that determines if you can start and stop your sessions and how long a session can stay in the STOPPED state. The default value is 0. The maximum value is 5760. This field is allowed only when sessionPersistenceMode is ACTIVATED and automaticTerminationMode is ACTIVATED. If the value is set to 0, your sessions can’t be STOPPED. If you then call StopStreamingSession, the session fails. If the time that a session stays in the READY state exceeds the maxSessionLengthInMinutes value, the session will automatically be terminated (instead of STOPPED). If the value is set to a positive number, the session can be stopped. You can call StopStreamingSession to stop sessions in the READY state. If the time that a session stays in the READY state exceeds the maxSessionLengthInMinutes value, the session will automatically be stopped (instead of terminated).
|
|
1783
1854
|
*/
|
|
1784
1855
|
maxStoppedSessionLengthInMinutes?: StreamConfigurationMaxStoppedSessionLengthInMinutes;
|
|
1785
1856
|
/**
|
|
1786
|
-
*
|
|
1857
|
+
* Information about the streaming session backup.
|
|
1858
|
+
*/
|
|
1859
|
+
sessionBackup?: StreamConfigurationSessionBackup;
|
|
1860
|
+
/**
|
|
1861
|
+
* Determine if a streaming session created from this launch profile can configure persistent storage. This means that volumeConfiguration and automaticTerminationMode are configured.
|
|
1862
|
+
*/
|
|
1863
|
+
sessionPersistenceMode?: SessionPersistenceMode;
|
|
1864
|
+
/**
|
|
1865
|
+
* The upload storage for a streaming session.
|
|
1787
1866
|
*/
|
|
1788
1867
|
sessionStorage?: StreamConfigurationSessionStorage;
|
|
1789
1868
|
/**
|
|
1790
1869
|
* The streaming images that users can select from when launching a streaming session with this launch profile.
|
|
1791
1870
|
*/
|
|
1792
1871
|
streamingImageIds: StreamingImageIdList;
|
|
1872
|
+
/**
|
|
1873
|
+
* Custom volume configuration for the root volumes that are attached to streaming sessions. This parameter is only allowed when sessionPersistenceMode is ACTIVATED.
|
|
1874
|
+
*/
|
|
1875
|
+
volumeConfiguration?: VolumeConfiguration;
|
|
1793
1876
|
}
|
|
1794
1877
|
export interface StreamConfigurationCreate {
|
|
1795
1878
|
/**
|
|
1796
|
-
*
|
|
1879
|
+
* Indicates if a streaming session created from this launch profile should be terminated automatically or retained without termination after being in a STOPPED state. When ACTIVATED, the streaming session is scheduled for termination after being in the STOPPED state for the time specified in maxStoppedSessionLengthInMinutes. When DEACTIVATED, the streaming session can remain in the STOPPED state indefinitely. This parameter is only allowed when sessionPersistenceMode is ACTIVATED. When allowed, the default value for this parameter is DEACTIVATED.
|
|
1880
|
+
*/
|
|
1881
|
+
automaticTerminationMode?: AutomaticTerminationMode;
|
|
1882
|
+
/**
|
|
1883
|
+
* Allows or deactivates the use of the system clipboard to copy and paste between the streaming session and streaming client.
|
|
1797
1884
|
*/
|
|
1798
1885
|
clipboardMode: StreamingClipboardMode;
|
|
1799
1886
|
/**
|
|
@@ -1805,20 +1892,43 @@ declare namespace Nimble {
|
|
|
1805
1892
|
*/
|
|
1806
1893
|
maxSessionLengthInMinutes?: StreamConfigurationMaxSessionLengthInMinutes;
|
|
1807
1894
|
/**
|
|
1808
|
-
* Integer that determines if you can start and stop your sessions and how long a session can stay in the STOPPED state. The default value is 0. The maximum value is 5760. If the value is
|
|
1895
|
+
* Integer that determines if you can start and stop your sessions and how long a session can stay in the STOPPED state. The default value is 0. The maximum value is 5760. This field is allowed only when sessionPersistenceMode is ACTIVATED and automaticTerminationMode is ACTIVATED. If the value is set to 0, your sessions can’t be STOPPED. If you then call StopStreamingSession, the session fails. If the time that a session stays in the READY state exceeds the maxSessionLengthInMinutes value, the session will automatically be terminated (instead of STOPPED). If the value is set to a positive number, the session can be stopped. You can call StopStreamingSession to stop sessions in the READY state. If the time that a session stays in the READY state exceeds the maxSessionLengthInMinutes value, the session will automatically be stopped (instead of terminated).
|
|
1809
1896
|
*/
|
|
1810
1897
|
maxStoppedSessionLengthInMinutes?: StreamConfigurationMaxStoppedSessionLengthInMinutes;
|
|
1811
1898
|
/**
|
|
1812
|
-
*
|
|
1899
|
+
* Configures how streaming sessions are backed up when launched from this launch profile.
|
|
1900
|
+
*/
|
|
1901
|
+
sessionBackup?: StreamConfigurationSessionBackup;
|
|
1902
|
+
/**
|
|
1903
|
+
* Determine if a streaming session created from this launch profile can configure persistent storage. This means that volumeConfiguration and automaticTerminationMode are configured.
|
|
1904
|
+
*/
|
|
1905
|
+
sessionPersistenceMode?: SessionPersistenceMode;
|
|
1906
|
+
/**
|
|
1907
|
+
* The upload storage for a streaming workstation that is created using this launch profile.
|
|
1813
1908
|
*/
|
|
1814
1909
|
sessionStorage?: StreamConfigurationSessionStorage;
|
|
1815
1910
|
/**
|
|
1816
1911
|
* The streaming images that users can select from when launching a streaming session with this launch profile.
|
|
1817
1912
|
*/
|
|
1818
1913
|
streamingImageIds: StreamingImageIdList;
|
|
1914
|
+
/**
|
|
1915
|
+
* Custom volume configuration for the root volumes that are attached to streaming sessions. This parameter is only allowed when sessionPersistenceMode is ACTIVATED.
|
|
1916
|
+
*/
|
|
1917
|
+
volumeConfiguration?: VolumeConfiguration;
|
|
1819
1918
|
}
|
|
1919
|
+
export type StreamConfigurationMaxBackupsToRetain = number;
|
|
1820
1920
|
export type StreamConfigurationMaxSessionLengthInMinutes = number;
|
|
1821
1921
|
export type StreamConfigurationMaxStoppedSessionLengthInMinutes = number;
|
|
1922
|
+
export interface StreamConfigurationSessionBackup {
|
|
1923
|
+
/**
|
|
1924
|
+
* The maximum number of backups that each streaming session created from this launch profile can have.
|
|
1925
|
+
*/
|
|
1926
|
+
maxBackupsToRetain?: StreamConfigurationMaxBackupsToRetain;
|
|
1927
|
+
/**
|
|
1928
|
+
* Specifies how artists sessions are backed up. Configures backups for streaming sessions launched with this launch profile. The default value is DEACTIVATED, which means that backups are deactivated. To allow backups, set this value to AUTOMATIC.
|
|
1929
|
+
*/
|
|
1930
|
+
mode?: SessionBackupMode;
|
|
1931
|
+
}
|
|
1822
1932
|
export interface StreamConfigurationSessionStorage {
|
|
1823
1933
|
/**
|
|
1824
1934
|
* Allows artists to upload files to their workstations. The only valid option is UPLOAD.
|
|
@@ -1832,7 +1942,7 @@ declare namespace Nimble {
|
|
|
1832
1942
|
export type StreamingClipboardMode = "ENABLED"|"DISABLED"|string;
|
|
1833
1943
|
export interface StreamingImage {
|
|
1834
1944
|
/**
|
|
1835
|
-
* The ARN
|
|
1945
|
+
* The Amazon Resource Name (ARN) that is assigned to a studio resource and uniquely identifies it. ARNs are unique across all Regions.
|
|
1836
1946
|
*/
|
|
1837
1947
|
arn?: String;
|
|
1838
1948
|
/**
|
|
@@ -1856,11 +1966,11 @@ declare namespace Nimble {
|
|
|
1856
1966
|
*/
|
|
1857
1967
|
name?: StreamingImageName;
|
|
1858
1968
|
/**
|
|
1859
|
-
* The owner of the streaming image, either the studioId that contains the streaming image, or
|
|
1969
|
+
* 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.
|
|
1860
1970
|
*/
|
|
1861
1971
|
owner?: StreamingImageOwner;
|
|
1862
1972
|
/**
|
|
1863
|
-
* The platform of the streaming image, either
|
|
1973
|
+
* The platform of the streaming image, either Windows or Linux.
|
|
1864
1974
|
*/
|
|
1865
1975
|
platform?: StreamingImagePlatform;
|
|
1866
1976
|
/**
|
|
@@ -1880,7 +1990,7 @@ declare namespace Nimble {
|
|
|
1880
1990
|
*/
|
|
1881
1991
|
streamingImageId?: StreamingImageId;
|
|
1882
1992
|
/**
|
|
1883
|
-
* A collection of labels, in the form of key
|
|
1993
|
+
* A collection of labels, in the form of key-value pairs, that apply to this resource.
|
|
1884
1994
|
*/
|
|
1885
1995
|
tags?: Tags;
|
|
1886
1996
|
}
|
|
@@ -1909,11 +2019,19 @@ declare namespace Nimble {
|
|
|
1909
2019
|
export type StreamingInstanceTypeList = StreamingInstanceType[];
|
|
1910
2020
|
export interface StreamingSession {
|
|
1911
2021
|
/**
|
|
1912
|
-
* The ARN
|
|
2022
|
+
* The Amazon Resource Name (ARN) that is assigned to a studio resource and uniquely identifies it. ARNs are unique across all Regions.
|
|
1913
2023
|
*/
|
|
1914
2024
|
arn?: String;
|
|
1915
2025
|
/**
|
|
1916
|
-
*
|
|
2026
|
+
* Indicates if a streaming session created from this launch profile should be terminated automatically or retained without termination after being in a STOPPED state. When ACTIVATED, the streaming session is scheduled for termination after being in the STOPPED state for the time specified in maxStoppedSessionLengthInMinutes. When DEACTIVATED, the streaming session can remain in the STOPPED state indefinitely. This parameter is only allowed when sessionPersistenceMode is ACTIVATED. When allowed, the default value for this parameter is DEACTIVATED.
|
|
2027
|
+
*/
|
|
2028
|
+
automaticTerminationMode?: AutomaticTerminationMode;
|
|
2029
|
+
/**
|
|
2030
|
+
* Shows the current backup setting of the session.
|
|
2031
|
+
*/
|
|
2032
|
+
backupMode?: SessionBackupMode;
|
|
2033
|
+
/**
|
|
2034
|
+
* The ISO timestamp in seconds for when the resource was created.
|
|
1917
2035
|
*/
|
|
1918
2036
|
createdAt?: Timestamp;
|
|
1919
2037
|
/**
|
|
@@ -1928,6 +2046,10 @@ declare namespace Nimble {
|
|
|
1928
2046
|
* The ID of the launch profile used to control access from the streaming session.
|
|
1929
2047
|
*/
|
|
1930
2048
|
launchProfileId?: String;
|
|
2049
|
+
/**
|
|
2050
|
+
* The maximum number of backups of a streaming session that you can have. When the maximum number of backups is reached, the oldest backup is deleted.
|
|
2051
|
+
*/
|
|
2052
|
+
maxBackupsToRetain?: StreamConfigurationMaxBackupsToRetain;
|
|
1931
2053
|
/**
|
|
1932
2054
|
* The user ID of the user that owns the streaming session. The user that owns the session will be logging into the session and interacting with the virtual workstation.
|
|
1933
2055
|
*/
|
|
@@ -1936,6 +2058,10 @@ declare namespace Nimble {
|
|
|
1936
2058
|
* The session ID.
|
|
1937
2059
|
*/
|
|
1938
2060
|
sessionId?: StreamingSessionId;
|
|
2061
|
+
/**
|
|
2062
|
+
* Determine if a streaming session created from this launch profile can configure persistent storage. This means that volumeConfiguration and automaticTerminationMode are configured.
|
|
2063
|
+
*/
|
|
2064
|
+
sessionPersistenceMode?: SessionPersistenceMode;
|
|
1939
2065
|
/**
|
|
1940
2066
|
* The time the session entered START_IN_PROGRESS state.
|
|
1941
2067
|
*/
|
|
@@ -1944,6 +2070,10 @@ declare namespace Nimble {
|
|
|
1944
2070
|
* The user ID of the user that started the streaming session.
|
|
1945
2071
|
*/
|
|
1946
2072
|
startedBy?: String;
|
|
2073
|
+
/**
|
|
2074
|
+
* The backup ID used to restore a streaming session.
|
|
2075
|
+
*/
|
|
2076
|
+
startedFromBackupId?: String;
|
|
1947
2077
|
/**
|
|
1948
2078
|
* The current state.
|
|
1949
2079
|
*/
|
|
@@ -1973,7 +2103,7 @@ declare namespace Nimble {
|
|
|
1973
2103
|
*/
|
|
1974
2104
|
streamingImageId?: StreamingImageId;
|
|
1975
2105
|
/**
|
|
1976
|
-
* A collection of labels, in the form of key
|
|
2106
|
+
* A collection of labels, in the form of key-value pairs, that apply to this resource.
|
|
1977
2107
|
*/
|
|
1978
2108
|
tags?: Tags;
|
|
1979
2109
|
/**
|
|
@@ -1981,14 +2111,62 @@ declare namespace Nimble {
|
|
|
1981
2111
|
*/
|
|
1982
2112
|
terminateAt?: Timestamp;
|
|
1983
2113
|
/**
|
|
1984
|
-
* The
|
|
2114
|
+
* The ISO timestamp in seconds for when the resource was updated.
|
|
1985
2115
|
*/
|
|
1986
2116
|
updatedAt?: Timestamp;
|
|
1987
2117
|
/**
|
|
1988
2118
|
* The user ID of the user that most recently updated the resource.
|
|
1989
2119
|
*/
|
|
1990
2120
|
updatedBy?: String;
|
|
2121
|
+
/**
|
|
2122
|
+
* Custom volume configuration for the root volumes that are attached to streaming sessions. This parameter is only allowed when sessionPersistenceMode is ACTIVATED.
|
|
2123
|
+
*/
|
|
2124
|
+
volumeConfiguration?: VolumeConfiguration;
|
|
2125
|
+
/**
|
|
2126
|
+
* Determine if an EBS volume created from this streaming session will be backed up.
|
|
2127
|
+
*/
|
|
2128
|
+
volumeRetentionMode?: VolumeRetentionMode;
|
|
1991
2129
|
}
|
|
2130
|
+
export interface StreamingSessionBackup {
|
|
2131
|
+
/**
|
|
2132
|
+
* The Amazon Resource Name (ARN) that is assigned to a studio resource and uniquely identifies it. ARNs are unique across all Regions.
|
|
2133
|
+
*/
|
|
2134
|
+
arn?: String;
|
|
2135
|
+
/**
|
|
2136
|
+
* The ID of the backup.
|
|
2137
|
+
*/
|
|
2138
|
+
backupId?: String;
|
|
2139
|
+
/**
|
|
2140
|
+
* The ISO timestamp in for when the resource was created.
|
|
2141
|
+
*/
|
|
2142
|
+
createdAt?: Timestamp;
|
|
2143
|
+
/**
|
|
2144
|
+
* The ID of the launch profile which allowed the backups for the streaming session.
|
|
2145
|
+
*/
|
|
2146
|
+
launchProfileId?: String;
|
|
2147
|
+
/**
|
|
2148
|
+
* The user ID of the user that owns the streaming session.
|
|
2149
|
+
*/
|
|
2150
|
+
ownedBy?: String;
|
|
2151
|
+
/**
|
|
2152
|
+
* The streaming session ID for the StreamingSessionBackup.
|
|
2153
|
+
*/
|
|
2154
|
+
sessionId?: StreamingSessionId;
|
|
2155
|
+
state?: StreamingSessionState;
|
|
2156
|
+
/**
|
|
2157
|
+
* The status code.
|
|
2158
|
+
*/
|
|
2159
|
+
statusCode?: StreamingSessionStatusCode;
|
|
2160
|
+
/**
|
|
2161
|
+
* The status message for the streaming session backup.
|
|
2162
|
+
*/
|
|
2163
|
+
statusMessage?: String;
|
|
2164
|
+
/**
|
|
2165
|
+
* A collection of labels, in the form of key-value pairs, that apply to this resource.
|
|
2166
|
+
*/
|
|
2167
|
+
tags?: Tags;
|
|
2168
|
+
}
|
|
2169
|
+
export type StreamingSessionBackupList = StreamingSessionBackup[];
|
|
1992
2170
|
export type StreamingSessionId = string;
|
|
1993
2171
|
export type StreamingSessionList = StreamingSession[];
|
|
1994
2172
|
export type StreamingSessionState = "CREATE_IN_PROGRESS"|"DELETE_IN_PROGRESS"|"READY"|"DELETED"|"CREATE_FAILED"|"DELETE_FAILED"|"STOP_IN_PROGRESS"|"START_IN_PROGRESS"|"STOPPED"|"STOP_FAILED"|"START_FAILED"|string;
|
|
@@ -2009,7 +2187,7 @@ declare namespace Nimble {
|
|
|
2009
2187
|
export type StreamingSessionStorageRootPathWindows = string;
|
|
2010
2188
|
export interface StreamingSessionStream {
|
|
2011
2189
|
/**
|
|
2012
|
-
* The
|
|
2190
|
+
* The ISO timestamp in seconds for when the resource was created.
|
|
2013
2191
|
*/
|
|
2014
2192
|
createdAt?: Timestamp;
|
|
2015
2193
|
/**
|
|
@@ -2017,7 +2195,7 @@ declare namespace Nimble {
|
|
|
2017
2195
|
*/
|
|
2018
2196
|
createdBy?: String;
|
|
2019
2197
|
/**
|
|
2020
|
-
* The
|
|
2198
|
+
* The ISO timestamp in seconds for when the resource expires.
|
|
2021
2199
|
*/
|
|
2022
2200
|
expiresAt?: Timestamp;
|
|
2023
2201
|
/**
|
|
@@ -2056,7 +2234,7 @@ declare namespace Nimble {
|
|
|
2056
2234
|
*/
|
|
2057
2235
|
arn?: String;
|
|
2058
2236
|
/**
|
|
2059
|
-
* The
|
|
2237
|
+
* The ISO timestamp in seconds for when the resource was created.
|
|
2060
2238
|
*/
|
|
2061
2239
|
createdAt?: Timestamp;
|
|
2062
2240
|
/**
|
|
@@ -2068,7 +2246,7 @@ declare namespace Nimble {
|
|
|
2068
2246
|
*/
|
|
2069
2247
|
homeRegion?: Region;
|
|
2070
2248
|
/**
|
|
2071
|
-
* The IAM Identity Center application client ID used to integrate with IAM Identity Center
|
|
2249
|
+
* The IAM Identity Center application client ID used to integrate with IAM Identity Center. This ID allows IAM Identity Center users to log in to Nimble Studio portal.
|
|
2072
2250
|
*/
|
|
2073
2251
|
ssoClientId?: String;
|
|
2074
2252
|
/**
|
|
@@ -2100,11 +2278,11 @@ declare namespace Nimble {
|
|
|
2100
2278
|
*/
|
|
2101
2279
|
studioUrl?: String;
|
|
2102
2280
|
/**
|
|
2103
|
-
* A collection of labels, in the form of key
|
|
2281
|
+
* A collection of labels, in the form of key-value pairs, that apply to this resource.
|
|
2104
2282
|
*/
|
|
2105
2283
|
tags?: Tags;
|
|
2106
2284
|
/**
|
|
2107
|
-
* The
|
|
2285
|
+
* The ISO timestamp in seconds for when the resource was updated.
|
|
2108
2286
|
*/
|
|
2109
2287
|
updatedAt?: Timestamp;
|
|
2110
2288
|
/**
|
|
@@ -2114,7 +2292,7 @@ declare namespace Nimble {
|
|
|
2114
2292
|
}
|
|
2115
2293
|
export interface StudioComponent {
|
|
2116
2294
|
/**
|
|
2117
|
-
* The ARN
|
|
2295
|
+
* The Amazon Resource Name (ARN) that is assigned to a studio resource and uniquely identifies it. ARNs are unique across all Regions.
|
|
2118
2296
|
*/
|
|
2119
2297
|
arn?: String;
|
|
2120
2298
|
/**
|
|
@@ -2122,7 +2300,7 @@ declare namespace Nimble {
|
|
|
2122
2300
|
*/
|
|
2123
2301
|
configuration?: StudioComponentConfiguration;
|
|
2124
2302
|
/**
|
|
2125
|
-
* The
|
|
2303
|
+
* The ISO timestamp in seconds for when the resource was created.
|
|
2126
2304
|
*/
|
|
2127
2305
|
createdAt?: Timestamp;
|
|
2128
2306
|
/**
|
|
@@ -2146,7 +2324,7 @@ declare namespace Nimble {
|
|
|
2146
2324
|
*/
|
|
2147
2325
|
name?: StudioComponentName;
|
|
2148
2326
|
/**
|
|
2149
|
-
* An IAM role attached to a Studio Component that gives the studio component access to
|
|
2327
|
+
* An IAM role attached to a Studio Component that gives the studio component access to Amazon Web Services resources at anytime while the instance is running.
|
|
2150
2328
|
*/
|
|
2151
2329
|
runtimeRoleArn?: RoleArn;
|
|
2152
2330
|
/**
|
|
@@ -2154,7 +2332,7 @@ declare namespace Nimble {
|
|
|
2154
2332
|
*/
|
|
2155
2333
|
scriptParameters?: StudioComponentScriptParameterKeyValueList;
|
|
2156
2334
|
/**
|
|
2157
|
-
* An IAM role attached to Studio Component when the system initialization script runs which give the studio component access to
|
|
2335
|
+
* An IAM role attached to Studio Component when the system initialization script runs which give the studio component access to Amazon Web Services resources when the system initialization script runs.
|
|
2158
2336
|
*/
|
|
2159
2337
|
secureInitializationRoleArn?: RoleArn;
|
|
2160
2338
|
/**
|
|
@@ -2178,7 +2356,7 @@ declare namespace Nimble {
|
|
|
2178
2356
|
*/
|
|
2179
2357
|
subtype?: StudioComponentSubtype;
|
|
2180
2358
|
/**
|
|
2181
|
-
* A collection of labels, in the form of key
|
|
2359
|
+
* A collection of labels, in the form of key-value pairs, that apply to this resource.
|
|
2182
2360
|
*/
|
|
2183
2361
|
tags?: Tags;
|
|
2184
2362
|
/**
|
|
@@ -2186,7 +2364,7 @@ declare namespace Nimble {
|
|
|
2186
2364
|
*/
|
|
2187
2365
|
type?: StudioComponentType;
|
|
2188
2366
|
/**
|
|
2189
|
-
* The
|
|
2367
|
+
* The ISO timestamp in seconds for when the resource was updated.
|
|
2190
2368
|
*/
|
|
2191
2369
|
updatedAt?: Timestamp;
|
|
2192
2370
|
/**
|
|
@@ -2196,7 +2374,7 @@ declare namespace Nimble {
|
|
|
2196
2374
|
}
|
|
2197
2375
|
export interface StudioComponentConfiguration {
|
|
2198
2376
|
/**
|
|
2199
|
-
* The configuration for a Microsoft Active Directory
|
|
2377
|
+
* The configuration for a Directory Service for Microsoft Active Directory studio resource.
|
|
2200
2378
|
*/
|
|
2201
2379
|
activeDirectoryConfiguration?: ActiveDirectoryConfiguration;
|
|
2202
2380
|
/**
|
|
@@ -2220,7 +2398,7 @@ declare namespace Nimble {
|
|
|
2220
2398
|
*/
|
|
2221
2399
|
launchProfileProtocolVersion?: LaunchProfileProtocolVersion;
|
|
2222
2400
|
/**
|
|
2223
|
-
* The platform of the initialization script, either
|
|
2401
|
+
* The platform of the initialization script, either Windows or Linux.
|
|
2224
2402
|
*/
|
|
2225
2403
|
platform?: LaunchProfilePlatform;
|
|
2226
2404
|
/**
|
|
@@ -2245,7 +2423,7 @@ declare namespace Nimble {
|
|
|
2245
2423
|
export type StudioComponentSubtype = "AWS_MANAGED_MICROSOFT_AD"|"AMAZON_FSX_FOR_WINDOWS"|"AMAZON_FSX_FOR_LUSTRE"|"CUSTOM"|string;
|
|
2246
2424
|
export interface StudioComponentSummary {
|
|
2247
2425
|
/**
|
|
2248
|
-
* The
|
|
2426
|
+
* The ISO timestamp in seconds for when the resource was created.
|
|
2249
2427
|
*/
|
|
2250
2428
|
createdAt?: Timestamp;
|
|
2251
2429
|
/**
|
|
@@ -2273,7 +2451,7 @@ declare namespace Nimble {
|
|
|
2273
2451
|
*/
|
|
2274
2452
|
type?: StudioComponentType;
|
|
2275
2453
|
/**
|
|
2276
|
-
* The
|
|
2454
|
+
* The ISO timestamp in seconds for when the resource was updated.
|
|
2277
2455
|
*/
|
|
2278
2456
|
updatedAt?: Timestamp;
|
|
2279
2457
|
/**
|
|
@@ -2320,14 +2498,14 @@ declare namespace Nimble {
|
|
|
2320
2498
|
export type StudioName = string;
|
|
2321
2499
|
export type StudioPersona = "ADMINISTRATOR"|string;
|
|
2322
2500
|
export type StudioState = "CREATE_IN_PROGRESS"|"READY"|"UPDATE_IN_PROGRESS"|"DELETE_IN_PROGRESS"|"DELETED"|"DELETE_FAILED"|"CREATE_FAILED"|"UPDATE_FAILED"|string;
|
|
2323
|
-
export type StudioStatusCode = "STUDIO_CREATED"|"STUDIO_DELETED"|"STUDIO_UPDATED"|"STUDIO_CREATE_IN_PROGRESS"|"STUDIO_UPDATE_IN_PROGRESS"|"STUDIO_DELETE_IN_PROGRESS"|"STUDIO_WITH_LAUNCH_PROFILES_NOT_DELETED"|"STUDIO_WITH_STUDIO_COMPONENTS_NOT_DELETED"|"STUDIO_WITH_STREAMING_IMAGES_NOT_DELETED"|"AWS_SSO_NOT_ENABLED"|"AWS_SSO_ACCESS_DENIED"|"ROLE_NOT_OWNED_BY_STUDIO_OWNER"|"ROLE_COULD_NOT_BE_ASSUMED"|"INTERNAL_ERROR"|"ENCRYPTION_KEY_NOT_FOUND"|"ENCRYPTION_KEY_ACCESS_DENIED"|"AWS_SSO_CONFIGURATION_REPAIRED"|"AWS_SSO_CONFIGURATION_REPAIR_IN_PROGRESS"|string;
|
|
2501
|
+
export type StudioStatusCode = "STUDIO_CREATED"|"STUDIO_DELETED"|"STUDIO_UPDATED"|"STUDIO_CREATE_IN_PROGRESS"|"STUDIO_UPDATE_IN_PROGRESS"|"STUDIO_DELETE_IN_PROGRESS"|"STUDIO_WITH_LAUNCH_PROFILES_NOT_DELETED"|"STUDIO_WITH_STUDIO_COMPONENTS_NOT_DELETED"|"STUDIO_WITH_STREAMING_IMAGES_NOT_DELETED"|"AWS_SSO_NOT_ENABLED"|"AWS_SSO_ACCESS_DENIED"|"ROLE_NOT_OWNED_BY_STUDIO_OWNER"|"ROLE_COULD_NOT_BE_ASSUMED"|"INTERNAL_ERROR"|"ENCRYPTION_KEY_NOT_FOUND"|"ENCRYPTION_KEY_ACCESS_DENIED"|"AWS_SSO_CONFIGURATION_REPAIRED"|"AWS_SSO_CONFIGURATION_REPAIR_IN_PROGRESS"|"AWS_STS_REGION_DISABLED"|string;
|
|
2324
2502
|
export interface TagResourceRequest {
|
|
2325
2503
|
/**
|
|
2326
|
-
*
|
|
2504
|
+
* The Amazon Resource Name (ARN) of the resource you want to add tags to.
|
|
2327
2505
|
*/
|
|
2328
2506
|
resourceArn: String;
|
|
2329
2507
|
/**
|
|
2330
|
-
* A collection of labels, in the form of key
|
|
2508
|
+
* A collection of labels, in the form of key-value pairs, that apply to this resource.
|
|
2331
2509
|
*/
|
|
2332
2510
|
tags?: Tags;
|
|
2333
2511
|
}
|
|
@@ -2349,11 +2527,11 @@ declare namespace Nimble {
|
|
|
2349
2527
|
}
|
|
2350
2528
|
export interface UpdateLaunchProfileMemberRequest {
|
|
2351
2529
|
/**
|
|
2352
|
-
* Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If you don’t specify a client token, the
|
|
2530
|
+
* Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If you don’t specify a client token, the Amazon Web Services SDK automatically generates a client token and uses it for the request to ensure idempotency.
|
|
2353
2531
|
*/
|
|
2354
2532
|
clientToken?: ClientToken;
|
|
2355
2533
|
/**
|
|
2356
|
-
* The
|
|
2534
|
+
* The ID of the launch profile used to control access from the streaming session.
|
|
2357
2535
|
*/
|
|
2358
2536
|
launchProfileId: String;
|
|
2359
2537
|
/**
|
|
@@ -2377,7 +2555,7 @@ declare namespace Nimble {
|
|
|
2377
2555
|
}
|
|
2378
2556
|
export interface UpdateLaunchProfileRequest {
|
|
2379
2557
|
/**
|
|
2380
|
-
* Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If you don’t specify a client token, the
|
|
2558
|
+
* Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If you don’t specify a client token, the Amazon Web Services SDK automatically generates a client token and uses it for the request to ensure idempotency.
|
|
2381
2559
|
*/
|
|
2382
2560
|
clientToken?: ClientToken;
|
|
2383
2561
|
/**
|
|
@@ -2385,7 +2563,7 @@ declare namespace Nimble {
|
|
|
2385
2563
|
*/
|
|
2386
2564
|
description?: LaunchProfileDescription;
|
|
2387
2565
|
/**
|
|
2388
|
-
* The
|
|
2566
|
+
* The ID of the launch profile used to control access from the streaming session.
|
|
2389
2567
|
*/
|
|
2390
2568
|
launchProfileId: String;
|
|
2391
2569
|
/**
|
|
@@ -2417,7 +2595,7 @@ declare namespace Nimble {
|
|
|
2417
2595
|
}
|
|
2418
2596
|
export interface UpdateStreamingImageRequest {
|
|
2419
2597
|
/**
|
|
2420
|
-
* Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If you don’t specify a client token, the
|
|
2598
|
+
* Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If you don’t specify a client token, the Amazon Web Services SDK automatically generates a client token and uses it for the request to ensure idempotency.
|
|
2421
2599
|
*/
|
|
2422
2600
|
clientToken?: ClientToken;
|
|
2423
2601
|
/**
|
|
@@ -2442,7 +2620,7 @@ declare namespace Nimble {
|
|
|
2442
2620
|
}
|
|
2443
2621
|
export interface UpdateStudioComponentRequest {
|
|
2444
2622
|
/**
|
|
2445
|
-
* Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If you don’t specify a client token, the
|
|
2623
|
+
* Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If you don’t specify a client token, the Amazon Web Services SDK automatically generates a client token and uses it for the request to ensure idempotency.
|
|
2446
2624
|
*/
|
|
2447
2625
|
clientToken?: ClientToken;
|
|
2448
2626
|
/**
|
|
@@ -2466,7 +2644,7 @@ declare namespace Nimble {
|
|
|
2466
2644
|
*/
|
|
2467
2645
|
name?: StudioComponentName;
|
|
2468
2646
|
/**
|
|
2469
|
-
* An IAM role attached to a Studio Component that gives the studio component access to
|
|
2647
|
+
* An IAM role attached to a Studio Component that gives the studio component access to Amazon Web Services resources at anytime while the instance is running.
|
|
2470
2648
|
*/
|
|
2471
2649
|
runtimeRoleArn?: RoleArn;
|
|
2472
2650
|
/**
|
|
@@ -2474,7 +2652,7 @@ declare namespace Nimble {
|
|
|
2474
2652
|
*/
|
|
2475
2653
|
scriptParameters?: StudioComponentScriptParameterKeyValueList;
|
|
2476
2654
|
/**
|
|
2477
|
-
* An IAM role attached to Studio Component when the system initialization script runs which give the studio component access to
|
|
2655
|
+
* An IAM role attached to Studio Component when the system initialization script runs which give the studio component access to Amazon Web Services resources when the system initialization script runs.
|
|
2478
2656
|
*/
|
|
2479
2657
|
secureInitializationRoleArn?: RoleArn;
|
|
2480
2658
|
/**
|
|
@@ -2506,7 +2684,7 @@ declare namespace Nimble {
|
|
|
2506
2684
|
*/
|
|
2507
2685
|
adminRoleArn?: RoleArn;
|
|
2508
2686
|
/**
|
|
2509
|
-
* Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If you don’t specify a client token, the
|
|
2687
|
+
* Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If you don’t specify a client token, the Amazon Web Services SDK automatically generates a client token and uses it for the request to ensure idempotency.
|
|
2510
2688
|
*/
|
|
2511
2689
|
clientToken?: ClientToken;
|
|
2512
2690
|
/**
|
|
@@ -2547,6 +2725,24 @@ declare namespace Nimble {
|
|
|
2547
2725
|
type: LaunchProfileValidationType;
|
|
2548
2726
|
}
|
|
2549
2727
|
export type ValidationResults = ValidationResult[];
|
|
2728
|
+
export interface VolumeConfiguration {
|
|
2729
|
+
/**
|
|
2730
|
+
* The number of I/O operations per second for the root volume that is attached to streaming session.
|
|
2731
|
+
*/
|
|
2732
|
+
iops?: VolumeIops;
|
|
2733
|
+
/**
|
|
2734
|
+
* The size of the root volume that is attached to the streaming session. The root volume size is measured in GiBs.
|
|
2735
|
+
*/
|
|
2736
|
+
size?: VolumeSizeInGiB;
|
|
2737
|
+
/**
|
|
2738
|
+
* The throughput to provision for the root volume that is attached to the streaming session. The throughput is measured in MiB/s.
|
|
2739
|
+
*/
|
|
2740
|
+
throughput?: VolumeThroughputInMiBs;
|
|
2741
|
+
}
|
|
2742
|
+
export type VolumeIops = number;
|
|
2743
|
+
export type VolumeRetentionMode = "RETAIN"|"DELETE"|string;
|
|
2744
|
+
export type VolumeSizeInGiB = number;
|
|
2745
|
+
export type VolumeThroughputInMiBs = number;
|
|
2550
2746
|
export type WindowsMountDrive = string;
|
|
2551
2747
|
/**
|
|
2552
2748
|
* A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
|