aws-sdk-appstream 1.84.0 → 1.86.0
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-appstream/client.rb +70 -46
- data/lib/aws-sdk-appstream/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-appstream.rb +1 -1
- data/sig/client.rbs +1216 -0
- data/sig/errors.rbs +58 -0
- data/sig/resource.rbs +80 -0
- data/sig/types.rbs +1417 -0
- data/sig/waiters.rbs +35 -0
- metadata +13 -8
data/sig/types.rbs
ADDED
@@ -0,0 +1,1417 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws::AppStream
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AccessEndpoint
|
12
|
+
attr_accessor endpoint_type: ("STREAMING")
|
13
|
+
attr_accessor vpce_id: ::String
|
14
|
+
SENSITIVE: []
|
15
|
+
end
|
16
|
+
|
17
|
+
class AppBlock
|
18
|
+
attr_accessor name: ::String
|
19
|
+
attr_accessor arn: ::String
|
20
|
+
attr_accessor description: ::String
|
21
|
+
attr_accessor display_name: ::String
|
22
|
+
attr_accessor source_s3_location: Types::S3Location
|
23
|
+
attr_accessor setup_script_details: Types::ScriptDetails
|
24
|
+
attr_accessor created_time: ::Time
|
25
|
+
attr_accessor post_setup_script_details: Types::ScriptDetails
|
26
|
+
attr_accessor packaging_type: ("CUSTOM" | "APPSTREAM2")
|
27
|
+
attr_accessor state: ("INACTIVE" | "ACTIVE")
|
28
|
+
attr_accessor app_block_errors: ::Array[Types::ErrorDetails]
|
29
|
+
SENSITIVE: []
|
30
|
+
end
|
31
|
+
|
32
|
+
class AppBlockBuilder
|
33
|
+
attr_accessor arn: ::String
|
34
|
+
attr_accessor name: ::String
|
35
|
+
attr_accessor display_name: ::String
|
36
|
+
attr_accessor description: ::String
|
37
|
+
attr_accessor platform: ("WINDOWS_SERVER_2019")
|
38
|
+
attr_accessor instance_type: ::String
|
39
|
+
attr_accessor enable_default_internet_access: bool
|
40
|
+
attr_accessor iam_role_arn: ::String
|
41
|
+
attr_accessor vpc_config: Types::VpcConfig
|
42
|
+
attr_accessor state: ("STARTING" | "RUNNING" | "STOPPING" | "STOPPED")
|
43
|
+
attr_accessor created_time: ::Time
|
44
|
+
attr_accessor app_block_builder_errors: ::Array[Types::ResourceError]
|
45
|
+
attr_accessor state_change_reason: Types::AppBlockBuilderStateChangeReason
|
46
|
+
attr_accessor access_endpoints: ::Array[Types::AccessEndpoint]
|
47
|
+
SENSITIVE: []
|
48
|
+
end
|
49
|
+
|
50
|
+
class AppBlockBuilderAppBlockAssociation
|
51
|
+
attr_accessor app_block_arn: ::String
|
52
|
+
attr_accessor app_block_builder_name: ::String
|
53
|
+
SENSITIVE: []
|
54
|
+
end
|
55
|
+
|
56
|
+
class AppBlockBuilderStateChangeReason
|
57
|
+
attr_accessor code: ("INTERNAL_ERROR")
|
58
|
+
attr_accessor message: ::String
|
59
|
+
SENSITIVE: []
|
60
|
+
end
|
61
|
+
|
62
|
+
class Application
|
63
|
+
attr_accessor name: ::String
|
64
|
+
attr_accessor display_name: ::String
|
65
|
+
attr_accessor icon_url: ::String
|
66
|
+
attr_accessor launch_path: ::String
|
67
|
+
attr_accessor launch_parameters: ::String
|
68
|
+
attr_accessor enabled: bool
|
69
|
+
attr_accessor metadata: ::Hash[::String, ::String]
|
70
|
+
attr_accessor working_directory: ::String
|
71
|
+
attr_accessor description: ::String
|
72
|
+
attr_accessor arn: ::String
|
73
|
+
attr_accessor app_block_arn: ::String
|
74
|
+
attr_accessor icon_s3_location: Types::S3Location
|
75
|
+
attr_accessor platforms: ::Array[("WINDOWS" | "WINDOWS_SERVER_2016" | "WINDOWS_SERVER_2019" | "WINDOWS_SERVER_2022" | "AMAZON_LINUX2")]
|
76
|
+
attr_accessor instance_families: ::Array[::String]
|
77
|
+
attr_accessor created_time: ::Time
|
78
|
+
SENSITIVE: []
|
79
|
+
end
|
80
|
+
|
81
|
+
class ApplicationFleetAssociation
|
82
|
+
attr_accessor fleet_name: ::String
|
83
|
+
attr_accessor application_arn: ::String
|
84
|
+
SENSITIVE: []
|
85
|
+
end
|
86
|
+
|
87
|
+
class ApplicationSettings
|
88
|
+
attr_accessor enabled: bool
|
89
|
+
attr_accessor settings_group: ::String
|
90
|
+
SENSITIVE: []
|
91
|
+
end
|
92
|
+
|
93
|
+
class ApplicationSettingsResponse
|
94
|
+
attr_accessor enabled: bool
|
95
|
+
attr_accessor settings_group: ::String
|
96
|
+
attr_accessor s3_bucket_name: ::String
|
97
|
+
SENSITIVE: []
|
98
|
+
end
|
99
|
+
|
100
|
+
class AssociateAppBlockBuilderAppBlockRequest
|
101
|
+
attr_accessor app_block_arn: ::String
|
102
|
+
attr_accessor app_block_builder_name: ::String
|
103
|
+
SENSITIVE: []
|
104
|
+
end
|
105
|
+
|
106
|
+
class AssociateAppBlockBuilderAppBlockResult
|
107
|
+
attr_accessor app_block_builder_app_block_association: Types::AppBlockBuilderAppBlockAssociation
|
108
|
+
SENSITIVE: []
|
109
|
+
end
|
110
|
+
|
111
|
+
class AssociateApplicationFleetRequest
|
112
|
+
attr_accessor fleet_name: ::String
|
113
|
+
attr_accessor application_arn: ::String
|
114
|
+
SENSITIVE: []
|
115
|
+
end
|
116
|
+
|
117
|
+
class AssociateApplicationFleetResult
|
118
|
+
attr_accessor application_fleet_association: Types::ApplicationFleetAssociation
|
119
|
+
SENSITIVE: []
|
120
|
+
end
|
121
|
+
|
122
|
+
class AssociateApplicationToEntitlementRequest
|
123
|
+
attr_accessor stack_name: ::String
|
124
|
+
attr_accessor entitlement_name: ::String
|
125
|
+
attr_accessor application_identifier: ::String
|
126
|
+
SENSITIVE: []
|
127
|
+
end
|
128
|
+
|
129
|
+
class AssociateApplicationToEntitlementResult < Aws::EmptyStructure
|
130
|
+
end
|
131
|
+
|
132
|
+
class AssociateFleetRequest
|
133
|
+
attr_accessor fleet_name: ::String
|
134
|
+
attr_accessor stack_name: ::String
|
135
|
+
SENSITIVE: []
|
136
|
+
end
|
137
|
+
|
138
|
+
class AssociateFleetResult < Aws::EmptyStructure
|
139
|
+
end
|
140
|
+
|
141
|
+
class BatchAssociateUserStackRequest
|
142
|
+
attr_accessor user_stack_associations: ::Array[Types::UserStackAssociation]
|
143
|
+
SENSITIVE: []
|
144
|
+
end
|
145
|
+
|
146
|
+
class BatchAssociateUserStackResult
|
147
|
+
attr_accessor errors: ::Array[Types::UserStackAssociationError]
|
148
|
+
SENSITIVE: []
|
149
|
+
end
|
150
|
+
|
151
|
+
class BatchDisassociateUserStackRequest
|
152
|
+
attr_accessor user_stack_associations: ::Array[Types::UserStackAssociation]
|
153
|
+
SENSITIVE: []
|
154
|
+
end
|
155
|
+
|
156
|
+
class BatchDisassociateUserStackResult
|
157
|
+
attr_accessor errors: ::Array[Types::UserStackAssociationError]
|
158
|
+
SENSITIVE: []
|
159
|
+
end
|
160
|
+
|
161
|
+
class CertificateBasedAuthProperties
|
162
|
+
attr_accessor status: ("DISABLED" | "ENABLED" | "ENABLED_NO_DIRECTORY_LOGIN_FALLBACK")
|
163
|
+
attr_accessor certificate_authority_arn: ::String
|
164
|
+
SENSITIVE: []
|
165
|
+
end
|
166
|
+
|
167
|
+
class ComputeCapacity
|
168
|
+
attr_accessor desired_instances: ::Integer
|
169
|
+
attr_accessor desired_sessions: ::Integer
|
170
|
+
SENSITIVE: []
|
171
|
+
end
|
172
|
+
|
173
|
+
class ComputeCapacityStatus
|
174
|
+
attr_accessor desired: ::Integer
|
175
|
+
attr_accessor running: ::Integer
|
176
|
+
attr_accessor in_use: ::Integer
|
177
|
+
attr_accessor available: ::Integer
|
178
|
+
attr_accessor desired_user_sessions: ::Integer
|
179
|
+
attr_accessor available_user_sessions: ::Integer
|
180
|
+
attr_accessor active_user_sessions: ::Integer
|
181
|
+
attr_accessor actual_user_sessions: ::Integer
|
182
|
+
SENSITIVE: []
|
183
|
+
end
|
184
|
+
|
185
|
+
class ConcurrentModificationException
|
186
|
+
attr_accessor message: ::String
|
187
|
+
SENSITIVE: []
|
188
|
+
end
|
189
|
+
|
190
|
+
class CopyImageRequest
|
191
|
+
attr_accessor source_image_name: ::String
|
192
|
+
attr_accessor destination_image_name: ::String
|
193
|
+
attr_accessor destination_region: ::String
|
194
|
+
attr_accessor destination_image_description: ::String
|
195
|
+
SENSITIVE: []
|
196
|
+
end
|
197
|
+
|
198
|
+
class CopyImageResponse
|
199
|
+
attr_accessor destination_image_name: ::String
|
200
|
+
SENSITIVE: []
|
201
|
+
end
|
202
|
+
|
203
|
+
class CreateAppBlockBuilderRequest
|
204
|
+
attr_accessor name: ::String
|
205
|
+
attr_accessor description: ::String
|
206
|
+
attr_accessor display_name: ::String
|
207
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
208
|
+
attr_accessor platform: ("WINDOWS_SERVER_2019")
|
209
|
+
attr_accessor instance_type: ::String
|
210
|
+
attr_accessor vpc_config: Types::VpcConfig
|
211
|
+
attr_accessor enable_default_internet_access: bool
|
212
|
+
attr_accessor iam_role_arn: ::String
|
213
|
+
attr_accessor access_endpoints: ::Array[Types::AccessEndpoint]
|
214
|
+
SENSITIVE: []
|
215
|
+
end
|
216
|
+
|
217
|
+
class CreateAppBlockBuilderResult
|
218
|
+
attr_accessor app_block_builder: Types::AppBlockBuilder
|
219
|
+
SENSITIVE: []
|
220
|
+
end
|
221
|
+
|
222
|
+
class CreateAppBlockBuilderStreamingURLRequest
|
223
|
+
attr_accessor app_block_builder_name: ::String
|
224
|
+
attr_accessor validity: ::Integer
|
225
|
+
SENSITIVE: []
|
226
|
+
end
|
227
|
+
|
228
|
+
class CreateAppBlockBuilderStreamingURLResult
|
229
|
+
attr_accessor streaming_url: ::String
|
230
|
+
attr_accessor expires: ::Time
|
231
|
+
SENSITIVE: []
|
232
|
+
end
|
233
|
+
|
234
|
+
class CreateAppBlockRequest
|
235
|
+
attr_accessor name: ::String
|
236
|
+
attr_accessor description: ::String
|
237
|
+
attr_accessor display_name: ::String
|
238
|
+
attr_accessor source_s3_location: Types::S3Location
|
239
|
+
attr_accessor setup_script_details: Types::ScriptDetails
|
240
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
241
|
+
attr_accessor post_setup_script_details: Types::ScriptDetails
|
242
|
+
attr_accessor packaging_type: ("CUSTOM" | "APPSTREAM2")
|
243
|
+
SENSITIVE: []
|
244
|
+
end
|
245
|
+
|
246
|
+
class CreateAppBlockResult
|
247
|
+
attr_accessor app_block: Types::AppBlock
|
248
|
+
SENSITIVE: []
|
249
|
+
end
|
250
|
+
|
251
|
+
class CreateApplicationRequest
|
252
|
+
attr_accessor name: ::String
|
253
|
+
attr_accessor display_name: ::String
|
254
|
+
attr_accessor description: ::String
|
255
|
+
attr_accessor icon_s3_location: Types::S3Location
|
256
|
+
attr_accessor launch_path: ::String
|
257
|
+
attr_accessor working_directory: ::String
|
258
|
+
attr_accessor launch_parameters: ::String
|
259
|
+
attr_accessor platforms: ::Array[("WINDOWS" | "WINDOWS_SERVER_2016" | "WINDOWS_SERVER_2019" | "WINDOWS_SERVER_2022" | "AMAZON_LINUX2")]
|
260
|
+
attr_accessor instance_families: ::Array[::String]
|
261
|
+
attr_accessor app_block_arn: ::String
|
262
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
263
|
+
SENSITIVE: []
|
264
|
+
end
|
265
|
+
|
266
|
+
class CreateApplicationResult
|
267
|
+
attr_accessor application: Types::Application
|
268
|
+
SENSITIVE: []
|
269
|
+
end
|
270
|
+
|
271
|
+
class CreateDirectoryConfigRequest
|
272
|
+
attr_accessor directory_name: ::String
|
273
|
+
attr_accessor organizational_unit_distinguished_names: ::Array[::String]
|
274
|
+
attr_accessor service_account_credentials: Types::ServiceAccountCredentials
|
275
|
+
attr_accessor certificate_based_auth_properties: Types::CertificateBasedAuthProperties
|
276
|
+
SENSITIVE: []
|
277
|
+
end
|
278
|
+
|
279
|
+
class CreateDirectoryConfigResult
|
280
|
+
attr_accessor directory_config: Types::DirectoryConfig
|
281
|
+
SENSITIVE: []
|
282
|
+
end
|
283
|
+
|
284
|
+
class CreateEntitlementRequest
|
285
|
+
attr_accessor name: ::String
|
286
|
+
attr_accessor stack_name: ::String
|
287
|
+
attr_accessor description: ::String
|
288
|
+
attr_accessor app_visibility: ("ALL" | "ASSOCIATED")
|
289
|
+
attr_accessor attributes: ::Array[Types::EntitlementAttribute]
|
290
|
+
SENSITIVE: []
|
291
|
+
end
|
292
|
+
|
293
|
+
class CreateEntitlementResult
|
294
|
+
attr_accessor entitlement: Types::Entitlement
|
295
|
+
SENSITIVE: []
|
296
|
+
end
|
297
|
+
|
298
|
+
class CreateFleetRequest
|
299
|
+
attr_accessor name: ::String
|
300
|
+
attr_accessor image_name: ::String
|
301
|
+
attr_accessor image_arn: ::String
|
302
|
+
attr_accessor instance_type: ::String
|
303
|
+
attr_accessor fleet_type: ("ALWAYS_ON" | "ON_DEMAND" | "ELASTIC")
|
304
|
+
attr_accessor compute_capacity: Types::ComputeCapacity
|
305
|
+
attr_accessor vpc_config: Types::VpcConfig
|
306
|
+
attr_accessor max_user_duration_in_seconds: ::Integer
|
307
|
+
attr_accessor disconnect_timeout_in_seconds: ::Integer
|
308
|
+
attr_accessor description: ::String
|
309
|
+
attr_accessor display_name: ::String
|
310
|
+
attr_accessor enable_default_internet_access: bool
|
311
|
+
attr_accessor domain_join_info: Types::DomainJoinInfo
|
312
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
313
|
+
attr_accessor idle_disconnect_timeout_in_seconds: ::Integer
|
314
|
+
attr_accessor iam_role_arn: ::String
|
315
|
+
attr_accessor stream_view: ("APP" | "DESKTOP")
|
316
|
+
attr_accessor platform: ("WINDOWS" | "WINDOWS_SERVER_2016" | "WINDOWS_SERVER_2019" | "WINDOWS_SERVER_2022" | "AMAZON_LINUX2")
|
317
|
+
attr_accessor max_concurrent_sessions: ::Integer
|
318
|
+
attr_accessor usb_device_filter_strings: ::Array[::String]
|
319
|
+
attr_accessor session_script_s3_location: Types::S3Location
|
320
|
+
attr_accessor max_sessions_per_instance: ::Integer
|
321
|
+
SENSITIVE: []
|
322
|
+
end
|
323
|
+
|
324
|
+
class CreateFleetResult
|
325
|
+
attr_accessor fleet: Types::Fleet
|
326
|
+
SENSITIVE: []
|
327
|
+
end
|
328
|
+
|
329
|
+
class CreateImageBuilderRequest
|
330
|
+
attr_accessor name: ::String
|
331
|
+
attr_accessor image_name: ::String
|
332
|
+
attr_accessor image_arn: ::String
|
333
|
+
attr_accessor instance_type: ::String
|
334
|
+
attr_accessor description: ::String
|
335
|
+
attr_accessor display_name: ::String
|
336
|
+
attr_accessor vpc_config: Types::VpcConfig
|
337
|
+
attr_accessor iam_role_arn: ::String
|
338
|
+
attr_accessor enable_default_internet_access: bool
|
339
|
+
attr_accessor domain_join_info: Types::DomainJoinInfo
|
340
|
+
attr_accessor appstream_agent_version: ::String
|
341
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
342
|
+
attr_accessor access_endpoints: ::Array[Types::AccessEndpoint]
|
343
|
+
SENSITIVE: []
|
344
|
+
end
|
345
|
+
|
346
|
+
class CreateImageBuilderResult
|
347
|
+
attr_accessor image_builder: Types::ImageBuilder
|
348
|
+
SENSITIVE: []
|
349
|
+
end
|
350
|
+
|
351
|
+
class CreateImageBuilderStreamingURLRequest
|
352
|
+
attr_accessor name: ::String
|
353
|
+
attr_accessor validity: ::Integer
|
354
|
+
SENSITIVE: []
|
355
|
+
end
|
356
|
+
|
357
|
+
class CreateImageBuilderStreamingURLResult
|
358
|
+
attr_accessor streaming_url: ::String
|
359
|
+
attr_accessor expires: ::Time
|
360
|
+
SENSITIVE: []
|
361
|
+
end
|
362
|
+
|
363
|
+
class CreateStackRequest
|
364
|
+
attr_accessor name: ::String
|
365
|
+
attr_accessor description: ::String
|
366
|
+
attr_accessor display_name: ::String
|
367
|
+
attr_accessor storage_connectors: ::Array[Types::StorageConnector]
|
368
|
+
attr_accessor redirect_url: ::String
|
369
|
+
attr_accessor feedback_url: ::String
|
370
|
+
attr_accessor user_settings: ::Array[Types::UserSetting]
|
371
|
+
attr_accessor application_settings: Types::ApplicationSettings
|
372
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
373
|
+
attr_accessor access_endpoints: ::Array[Types::AccessEndpoint]
|
374
|
+
attr_accessor embed_host_domains: ::Array[::String]
|
375
|
+
attr_accessor streaming_experience_settings: Types::StreamingExperienceSettings
|
376
|
+
SENSITIVE: []
|
377
|
+
end
|
378
|
+
|
379
|
+
class CreateStackResult
|
380
|
+
attr_accessor stack: Types::Stack
|
381
|
+
SENSITIVE: []
|
382
|
+
end
|
383
|
+
|
384
|
+
class CreateStreamingURLRequest
|
385
|
+
attr_accessor stack_name: ::String
|
386
|
+
attr_accessor fleet_name: ::String
|
387
|
+
attr_accessor user_id: ::String
|
388
|
+
attr_accessor application_id: ::String
|
389
|
+
attr_accessor validity: ::Integer
|
390
|
+
attr_accessor session_context: ::String
|
391
|
+
SENSITIVE: []
|
392
|
+
end
|
393
|
+
|
394
|
+
class CreateStreamingURLResult
|
395
|
+
attr_accessor streaming_url: ::String
|
396
|
+
attr_accessor expires: ::Time
|
397
|
+
SENSITIVE: []
|
398
|
+
end
|
399
|
+
|
400
|
+
class CreateUpdatedImageRequest
|
401
|
+
attr_accessor existing_image_name: ::String
|
402
|
+
attr_accessor new_image_name: ::String
|
403
|
+
attr_accessor new_image_description: ::String
|
404
|
+
attr_accessor new_image_display_name: ::String
|
405
|
+
attr_accessor new_image_tags: ::Hash[::String, ::String]
|
406
|
+
attr_accessor dry_run: bool
|
407
|
+
SENSITIVE: []
|
408
|
+
end
|
409
|
+
|
410
|
+
class CreateUpdatedImageResult
|
411
|
+
attr_accessor image: Types::Image
|
412
|
+
attr_accessor can_update_image: bool
|
413
|
+
SENSITIVE: []
|
414
|
+
end
|
415
|
+
|
416
|
+
class CreateUsageReportSubscriptionRequest < Aws::EmptyStructure
|
417
|
+
end
|
418
|
+
|
419
|
+
class CreateUsageReportSubscriptionResult
|
420
|
+
attr_accessor s3_bucket_name: ::String
|
421
|
+
attr_accessor schedule: ("DAILY")
|
422
|
+
SENSITIVE: []
|
423
|
+
end
|
424
|
+
|
425
|
+
class CreateUserRequest
|
426
|
+
attr_accessor user_name: ::String
|
427
|
+
attr_accessor message_action: ("SUPPRESS" | "RESEND")
|
428
|
+
attr_accessor first_name: ::String
|
429
|
+
attr_accessor last_name: ::String
|
430
|
+
attr_accessor authentication_type: ("API" | "SAML" | "USERPOOL" | "AWS_AD")
|
431
|
+
SENSITIVE: [:user_name, :first_name, :last_name]
|
432
|
+
end
|
433
|
+
|
434
|
+
class CreateUserResult < Aws::EmptyStructure
|
435
|
+
end
|
436
|
+
|
437
|
+
class DeleteAppBlockBuilderRequest
|
438
|
+
attr_accessor name: ::String
|
439
|
+
SENSITIVE: []
|
440
|
+
end
|
441
|
+
|
442
|
+
class DeleteAppBlockBuilderResult < Aws::EmptyStructure
|
443
|
+
end
|
444
|
+
|
445
|
+
class DeleteAppBlockRequest
|
446
|
+
attr_accessor name: ::String
|
447
|
+
SENSITIVE: []
|
448
|
+
end
|
449
|
+
|
450
|
+
class DeleteAppBlockResult < Aws::EmptyStructure
|
451
|
+
end
|
452
|
+
|
453
|
+
class DeleteApplicationRequest
|
454
|
+
attr_accessor name: ::String
|
455
|
+
SENSITIVE: []
|
456
|
+
end
|
457
|
+
|
458
|
+
class DeleteApplicationResult < Aws::EmptyStructure
|
459
|
+
end
|
460
|
+
|
461
|
+
class DeleteDirectoryConfigRequest
|
462
|
+
attr_accessor directory_name: ::String
|
463
|
+
SENSITIVE: []
|
464
|
+
end
|
465
|
+
|
466
|
+
class DeleteDirectoryConfigResult < Aws::EmptyStructure
|
467
|
+
end
|
468
|
+
|
469
|
+
class DeleteEntitlementRequest
|
470
|
+
attr_accessor name: ::String
|
471
|
+
attr_accessor stack_name: ::String
|
472
|
+
SENSITIVE: []
|
473
|
+
end
|
474
|
+
|
475
|
+
class DeleteEntitlementResult < Aws::EmptyStructure
|
476
|
+
end
|
477
|
+
|
478
|
+
class DeleteFleetRequest
|
479
|
+
attr_accessor name: ::String
|
480
|
+
SENSITIVE: []
|
481
|
+
end
|
482
|
+
|
483
|
+
class DeleteFleetResult < Aws::EmptyStructure
|
484
|
+
end
|
485
|
+
|
486
|
+
class DeleteImageBuilderRequest
|
487
|
+
attr_accessor name: ::String
|
488
|
+
SENSITIVE: []
|
489
|
+
end
|
490
|
+
|
491
|
+
class DeleteImageBuilderResult
|
492
|
+
attr_accessor image_builder: Types::ImageBuilder
|
493
|
+
SENSITIVE: []
|
494
|
+
end
|
495
|
+
|
496
|
+
class DeleteImagePermissionsRequest
|
497
|
+
attr_accessor name: ::String
|
498
|
+
attr_accessor shared_account_id: ::String
|
499
|
+
SENSITIVE: []
|
500
|
+
end
|
501
|
+
|
502
|
+
class DeleteImagePermissionsResult < Aws::EmptyStructure
|
503
|
+
end
|
504
|
+
|
505
|
+
class DeleteImageRequest
|
506
|
+
attr_accessor name: ::String
|
507
|
+
SENSITIVE: []
|
508
|
+
end
|
509
|
+
|
510
|
+
class DeleteImageResult
|
511
|
+
attr_accessor image: Types::Image
|
512
|
+
SENSITIVE: []
|
513
|
+
end
|
514
|
+
|
515
|
+
class DeleteStackRequest
|
516
|
+
attr_accessor name: ::String
|
517
|
+
SENSITIVE: []
|
518
|
+
end
|
519
|
+
|
520
|
+
class DeleteStackResult < Aws::EmptyStructure
|
521
|
+
end
|
522
|
+
|
523
|
+
class DeleteUsageReportSubscriptionRequest < Aws::EmptyStructure
|
524
|
+
end
|
525
|
+
|
526
|
+
class DeleteUsageReportSubscriptionResult < Aws::EmptyStructure
|
527
|
+
end
|
528
|
+
|
529
|
+
class DeleteUserRequest
|
530
|
+
attr_accessor user_name: ::String
|
531
|
+
attr_accessor authentication_type: ("API" | "SAML" | "USERPOOL" | "AWS_AD")
|
532
|
+
SENSITIVE: [:user_name]
|
533
|
+
end
|
534
|
+
|
535
|
+
class DeleteUserResult < Aws::EmptyStructure
|
536
|
+
end
|
537
|
+
|
538
|
+
class DescribeAppBlockBuilderAppBlockAssociationsRequest
|
539
|
+
attr_accessor app_block_arn: ::String
|
540
|
+
attr_accessor app_block_builder_name: ::String
|
541
|
+
attr_accessor max_results: ::Integer
|
542
|
+
attr_accessor next_token: ::String
|
543
|
+
SENSITIVE: []
|
544
|
+
end
|
545
|
+
|
546
|
+
class DescribeAppBlockBuilderAppBlockAssociationsResult
|
547
|
+
attr_accessor app_block_builder_app_block_associations: ::Array[Types::AppBlockBuilderAppBlockAssociation]
|
548
|
+
attr_accessor next_token: ::String
|
549
|
+
SENSITIVE: []
|
550
|
+
end
|
551
|
+
|
552
|
+
class DescribeAppBlockBuildersRequest
|
553
|
+
attr_accessor names: ::Array[::String]
|
554
|
+
attr_accessor next_token: ::String
|
555
|
+
attr_accessor max_results: ::Integer
|
556
|
+
SENSITIVE: []
|
557
|
+
end
|
558
|
+
|
559
|
+
class DescribeAppBlockBuildersResult
|
560
|
+
attr_accessor app_block_builders: ::Array[Types::AppBlockBuilder]
|
561
|
+
attr_accessor next_token: ::String
|
562
|
+
SENSITIVE: []
|
563
|
+
end
|
564
|
+
|
565
|
+
class DescribeAppBlocksRequest
|
566
|
+
attr_accessor arns: ::Array[::String]
|
567
|
+
attr_accessor next_token: ::String
|
568
|
+
attr_accessor max_results: ::Integer
|
569
|
+
SENSITIVE: []
|
570
|
+
end
|
571
|
+
|
572
|
+
class DescribeAppBlocksResult
|
573
|
+
attr_accessor app_blocks: ::Array[Types::AppBlock]
|
574
|
+
attr_accessor next_token: ::String
|
575
|
+
SENSITIVE: []
|
576
|
+
end
|
577
|
+
|
578
|
+
class DescribeApplicationFleetAssociationsRequest
|
579
|
+
attr_accessor fleet_name: ::String
|
580
|
+
attr_accessor application_arn: ::String
|
581
|
+
attr_accessor max_results: ::Integer
|
582
|
+
attr_accessor next_token: ::String
|
583
|
+
SENSITIVE: []
|
584
|
+
end
|
585
|
+
|
586
|
+
class DescribeApplicationFleetAssociationsResult
|
587
|
+
attr_accessor application_fleet_associations: ::Array[Types::ApplicationFleetAssociation]
|
588
|
+
attr_accessor next_token: ::String
|
589
|
+
SENSITIVE: []
|
590
|
+
end
|
591
|
+
|
592
|
+
class DescribeApplicationsRequest
|
593
|
+
attr_accessor arns: ::Array[::String]
|
594
|
+
attr_accessor next_token: ::String
|
595
|
+
attr_accessor max_results: ::Integer
|
596
|
+
SENSITIVE: []
|
597
|
+
end
|
598
|
+
|
599
|
+
class DescribeApplicationsResult
|
600
|
+
attr_accessor applications: ::Array[Types::Application]
|
601
|
+
attr_accessor next_token: ::String
|
602
|
+
SENSITIVE: []
|
603
|
+
end
|
604
|
+
|
605
|
+
class DescribeDirectoryConfigsRequest
|
606
|
+
attr_accessor directory_names: ::Array[::String]
|
607
|
+
attr_accessor max_results: ::Integer
|
608
|
+
attr_accessor next_token: ::String
|
609
|
+
SENSITIVE: []
|
610
|
+
end
|
611
|
+
|
612
|
+
class DescribeDirectoryConfigsResult
|
613
|
+
attr_accessor directory_configs: ::Array[Types::DirectoryConfig]
|
614
|
+
attr_accessor next_token: ::String
|
615
|
+
SENSITIVE: []
|
616
|
+
end
|
617
|
+
|
618
|
+
class DescribeEntitlementsRequest
|
619
|
+
attr_accessor name: ::String
|
620
|
+
attr_accessor stack_name: ::String
|
621
|
+
attr_accessor next_token: ::String
|
622
|
+
attr_accessor max_results: ::Integer
|
623
|
+
SENSITIVE: []
|
624
|
+
end
|
625
|
+
|
626
|
+
class DescribeEntitlementsResult
|
627
|
+
attr_accessor entitlements: ::Array[Types::Entitlement]
|
628
|
+
attr_accessor next_token: ::String
|
629
|
+
SENSITIVE: []
|
630
|
+
end
|
631
|
+
|
632
|
+
class DescribeFleetsRequest
|
633
|
+
attr_accessor names: ::Array[::String]
|
634
|
+
attr_accessor next_token: ::String
|
635
|
+
SENSITIVE: []
|
636
|
+
end
|
637
|
+
|
638
|
+
class DescribeFleetsResult
|
639
|
+
attr_accessor fleets: ::Array[Types::Fleet]
|
640
|
+
attr_accessor next_token: ::String
|
641
|
+
SENSITIVE: []
|
642
|
+
end
|
643
|
+
|
644
|
+
class DescribeImageBuildersRequest
|
645
|
+
attr_accessor names: ::Array[::String]
|
646
|
+
attr_accessor max_results: ::Integer
|
647
|
+
attr_accessor next_token: ::String
|
648
|
+
SENSITIVE: []
|
649
|
+
end
|
650
|
+
|
651
|
+
class DescribeImageBuildersResult
|
652
|
+
attr_accessor image_builders: ::Array[Types::ImageBuilder]
|
653
|
+
attr_accessor next_token: ::String
|
654
|
+
SENSITIVE: []
|
655
|
+
end
|
656
|
+
|
657
|
+
class DescribeImagePermissionsRequest
|
658
|
+
attr_accessor name: ::String
|
659
|
+
attr_accessor max_results: ::Integer
|
660
|
+
attr_accessor shared_aws_account_ids: ::Array[::String]
|
661
|
+
attr_accessor next_token: ::String
|
662
|
+
SENSITIVE: []
|
663
|
+
end
|
664
|
+
|
665
|
+
class DescribeImagePermissionsResult
|
666
|
+
attr_accessor name: ::String
|
667
|
+
attr_accessor shared_image_permissions_list: ::Array[Types::SharedImagePermissions]
|
668
|
+
attr_accessor next_token: ::String
|
669
|
+
SENSITIVE: []
|
670
|
+
end
|
671
|
+
|
672
|
+
class DescribeImagesRequest
|
673
|
+
attr_accessor names: ::Array[::String]
|
674
|
+
attr_accessor arns: ::Array[::String]
|
675
|
+
attr_accessor type: ("PUBLIC" | "PRIVATE" | "SHARED")
|
676
|
+
attr_accessor next_token: ::String
|
677
|
+
attr_accessor max_results: ::Integer
|
678
|
+
SENSITIVE: []
|
679
|
+
end
|
680
|
+
|
681
|
+
class DescribeImagesResult
|
682
|
+
attr_accessor images: ::Array[Types::Image]
|
683
|
+
attr_accessor next_token: ::String
|
684
|
+
SENSITIVE: []
|
685
|
+
end
|
686
|
+
|
687
|
+
class DescribeSessionsRequest
|
688
|
+
attr_accessor stack_name: ::String
|
689
|
+
attr_accessor fleet_name: ::String
|
690
|
+
attr_accessor user_id: ::String
|
691
|
+
attr_accessor next_token: ::String
|
692
|
+
attr_accessor limit: ::Integer
|
693
|
+
attr_accessor authentication_type: ("API" | "SAML" | "USERPOOL" | "AWS_AD")
|
694
|
+
attr_accessor instance_id: ::String
|
695
|
+
SENSITIVE: []
|
696
|
+
end
|
697
|
+
|
698
|
+
class DescribeSessionsResult
|
699
|
+
attr_accessor sessions: ::Array[Types::Session]
|
700
|
+
attr_accessor next_token: ::String
|
701
|
+
SENSITIVE: []
|
702
|
+
end
|
703
|
+
|
704
|
+
class DescribeStacksRequest
|
705
|
+
attr_accessor names: ::Array[::String]
|
706
|
+
attr_accessor next_token: ::String
|
707
|
+
SENSITIVE: []
|
708
|
+
end
|
709
|
+
|
710
|
+
class DescribeStacksResult
|
711
|
+
attr_accessor stacks: ::Array[Types::Stack]
|
712
|
+
attr_accessor next_token: ::String
|
713
|
+
SENSITIVE: []
|
714
|
+
end
|
715
|
+
|
716
|
+
class DescribeUsageReportSubscriptionsRequest
|
717
|
+
attr_accessor max_results: ::Integer
|
718
|
+
attr_accessor next_token: ::String
|
719
|
+
SENSITIVE: []
|
720
|
+
end
|
721
|
+
|
722
|
+
class DescribeUsageReportSubscriptionsResult
|
723
|
+
attr_accessor usage_report_subscriptions: ::Array[Types::UsageReportSubscription]
|
724
|
+
attr_accessor next_token: ::String
|
725
|
+
SENSITIVE: []
|
726
|
+
end
|
727
|
+
|
728
|
+
class DescribeUserStackAssociationsRequest
|
729
|
+
attr_accessor stack_name: ::String
|
730
|
+
attr_accessor user_name: ::String
|
731
|
+
attr_accessor authentication_type: ("API" | "SAML" | "USERPOOL" | "AWS_AD")
|
732
|
+
attr_accessor max_results: ::Integer
|
733
|
+
attr_accessor next_token: ::String
|
734
|
+
SENSITIVE: [:user_name]
|
735
|
+
end
|
736
|
+
|
737
|
+
class DescribeUserStackAssociationsResult
|
738
|
+
attr_accessor user_stack_associations: ::Array[Types::UserStackAssociation]
|
739
|
+
attr_accessor next_token: ::String
|
740
|
+
SENSITIVE: []
|
741
|
+
end
|
742
|
+
|
743
|
+
class DescribeUsersRequest
|
744
|
+
attr_accessor authentication_type: ("API" | "SAML" | "USERPOOL" | "AWS_AD")
|
745
|
+
attr_accessor max_results: ::Integer
|
746
|
+
attr_accessor next_token: ::String
|
747
|
+
SENSITIVE: []
|
748
|
+
end
|
749
|
+
|
750
|
+
class DescribeUsersResult
|
751
|
+
attr_accessor users: ::Array[Types::User]
|
752
|
+
attr_accessor next_token: ::String
|
753
|
+
SENSITIVE: []
|
754
|
+
end
|
755
|
+
|
756
|
+
class DirectoryConfig
|
757
|
+
attr_accessor directory_name: ::String
|
758
|
+
attr_accessor organizational_unit_distinguished_names: ::Array[::String]
|
759
|
+
attr_accessor service_account_credentials: Types::ServiceAccountCredentials
|
760
|
+
attr_accessor created_time: ::Time
|
761
|
+
attr_accessor certificate_based_auth_properties: Types::CertificateBasedAuthProperties
|
762
|
+
SENSITIVE: []
|
763
|
+
end
|
764
|
+
|
765
|
+
class DisableUserRequest
|
766
|
+
attr_accessor user_name: ::String
|
767
|
+
attr_accessor authentication_type: ("API" | "SAML" | "USERPOOL" | "AWS_AD")
|
768
|
+
SENSITIVE: [:user_name]
|
769
|
+
end
|
770
|
+
|
771
|
+
class DisableUserResult < Aws::EmptyStructure
|
772
|
+
end
|
773
|
+
|
774
|
+
class DisassociateAppBlockBuilderAppBlockRequest
|
775
|
+
attr_accessor app_block_arn: ::String
|
776
|
+
attr_accessor app_block_builder_name: ::String
|
777
|
+
SENSITIVE: []
|
778
|
+
end
|
779
|
+
|
780
|
+
class DisassociateAppBlockBuilderAppBlockResult < Aws::EmptyStructure
|
781
|
+
end
|
782
|
+
|
783
|
+
class DisassociateApplicationFleetRequest
|
784
|
+
attr_accessor fleet_name: ::String
|
785
|
+
attr_accessor application_arn: ::String
|
786
|
+
SENSITIVE: []
|
787
|
+
end
|
788
|
+
|
789
|
+
class DisassociateApplicationFleetResult < Aws::EmptyStructure
|
790
|
+
end
|
791
|
+
|
792
|
+
class DisassociateApplicationFromEntitlementRequest
|
793
|
+
attr_accessor stack_name: ::String
|
794
|
+
attr_accessor entitlement_name: ::String
|
795
|
+
attr_accessor application_identifier: ::String
|
796
|
+
SENSITIVE: []
|
797
|
+
end
|
798
|
+
|
799
|
+
class DisassociateApplicationFromEntitlementResult < Aws::EmptyStructure
|
800
|
+
end
|
801
|
+
|
802
|
+
class DisassociateFleetRequest
|
803
|
+
attr_accessor fleet_name: ::String
|
804
|
+
attr_accessor stack_name: ::String
|
805
|
+
SENSITIVE: []
|
806
|
+
end
|
807
|
+
|
808
|
+
class DisassociateFleetResult < Aws::EmptyStructure
|
809
|
+
end
|
810
|
+
|
811
|
+
class DomainJoinInfo
|
812
|
+
attr_accessor directory_name: ::String
|
813
|
+
attr_accessor organizational_unit_distinguished_name: ::String
|
814
|
+
SENSITIVE: []
|
815
|
+
end
|
816
|
+
|
817
|
+
class EnableUserRequest
|
818
|
+
attr_accessor user_name: ::String
|
819
|
+
attr_accessor authentication_type: ("API" | "SAML" | "USERPOOL" | "AWS_AD")
|
820
|
+
SENSITIVE: [:user_name]
|
821
|
+
end
|
822
|
+
|
823
|
+
class EnableUserResult < Aws::EmptyStructure
|
824
|
+
end
|
825
|
+
|
826
|
+
class EntitledApplication
|
827
|
+
attr_accessor application_identifier: ::String
|
828
|
+
SENSITIVE: []
|
829
|
+
end
|
830
|
+
|
831
|
+
class Entitlement
|
832
|
+
attr_accessor name: ::String
|
833
|
+
attr_accessor stack_name: ::String
|
834
|
+
attr_accessor description: ::String
|
835
|
+
attr_accessor app_visibility: ("ALL" | "ASSOCIATED")
|
836
|
+
attr_accessor attributes: ::Array[Types::EntitlementAttribute]
|
837
|
+
attr_accessor created_time: ::Time
|
838
|
+
attr_accessor last_modified_time: ::Time
|
839
|
+
SENSITIVE: []
|
840
|
+
end
|
841
|
+
|
842
|
+
class EntitlementAlreadyExistsException
|
843
|
+
attr_accessor message: ::String
|
844
|
+
SENSITIVE: []
|
845
|
+
end
|
846
|
+
|
847
|
+
class EntitlementAttribute
|
848
|
+
attr_accessor name: ::String
|
849
|
+
attr_accessor value: ::String
|
850
|
+
SENSITIVE: []
|
851
|
+
end
|
852
|
+
|
853
|
+
class EntitlementNotFoundException
|
854
|
+
attr_accessor message: ::String
|
855
|
+
SENSITIVE: []
|
856
|
+
end
|
857
|
+
|
858
|
+
class ErrorDetails
|
859
|
+
attr_accessor error_code: ::String
|
860
|
+
attr_accessor error_message: ::String
|
861
|
+
SENSITIVE: []
|
862
|
+
end
|
863
|
+
|
864
|
+
class ExpireSessionRequest
|
865
|
+
attr_accessor session_id: ::String
|
866
|
+
SENSITIVE: []
|
867
|
+
end
|
868
|
+
|
869
|
+
class ExpireSessionResult < Aws::EmptyStructure
|
870
|
+
end
|
871
|
+
|
872
|
+
class Fleet
|
873
|
+
attr_accessor arn: ::String
|
874
|
+
attr_accessor name: ::String
|
875
|
+
attr_accessor display_name: ::String
|
876
|
+
attr_accessor description: ::String
|
877
|
+
attr_accessor image_name: ::String
|
878
|
+
attr_accessor image_arn: ::String
|
879
|
+
attr_accessor instance_type: ::String
|
880
|
+
attr_accessor fleet_type: ("ALWAYS_ON" | "ON_DEMAND" | "ELASTIC")
|
881
|
+
attr_accessor compute_capacity_status: Types::ComputeCapacityStatus
|
882
|
+
attr_accessor max_user_duration_in_seconds: ::Integer
|
883
|
+
attr_accessor disconnect_timeout_in_seconds: ::Integer
|
884
|
+
attr_accessor state: ("STARTING" | "RUNNING" | "STOPPING" | "STOPPED")
|
885
|
+
attr_accessor vpc_config: Types::VpcConfig
|
886
|
+
attr_accessor created_time: ::Time
|
887
|
+
attr_accessor fleet_errors: ::Array[Types::FleetError]
|
888
|
+
attr_accessor enable_default_internet_access: bool
|
889
|
+
attr_accessor domain_join_info: Types::DomainJoinInfo
|
890
|
+
attr_accessor idle_disconnect_timeout_in_seconds: ::Integer
|
891
|
+
attr_accessor iam_role_arn: ::String
|
892
|
+
attr_accessor stream_view: ("APP" | "DESKTOP")
|
893
|
+
attr_accessor platform: ("WINDOWS" | "WINDOWS_SERVER_2016" | "WINDOWS_SERVER_2019" | "WINDOWS_SERVER_2022" | "AMAZON_LINUX2")
|
894
|
+
attr_accessor max_concurrent_sessions: ::Integer
|
895
|
+
attr_accessor usb_device_filter_strings: ::Array[::String]
|
896
|
+
attr_accessor session_script_s3_location: Types::S3Location
|
897
|
+
attr_accessor max_sessions_per_instance: ::Integer
|
898
|
+
SENSITIVE: []
|
899
|
+
end
|
900
|
+
|
901
|
+
class FleetError
|
902
|
+
attr_accessor error_code: ("IAM_SERVICE_ROLE_MISSING_ENI_DESCRIBE_ACTION" | "IAM_SERVICE_ROLE_MISSING_ENI_CREATE_ACTION" | "IAM_SERVICE_ROLE_MISSING_ENI_DELETE_ACTION" | "NETWORK_INTERFACE_LIMIT_EXCEEDED" | "INTERNAL_SERVICE_ERROR" | "IAM_SERVICE_ROLE_IS_MISSING" | "MACHINE_ROLE_IS_MISSING" | "STS_DISABLED_IN_REGION" | "SUBNET_HAS_INSUFFICIENT_IP_ADDRESSES" | "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SUBNET_ACTION" | "SUBNET_NOT_FOUND" | "IMAGE_NOT_FOUND" | "INVALID_SUBNET_CONFIGURATION" | "SECURITY_GROUPS_NOT_FOUND" | "IGW_NOT_ATTACHED" | "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SECURITY_GROUPS_ACTION" | "FLEET_STOPPED" | "FLEET_INSTANCE_PROVISIONING_FAILURE" | "DOMAIN_JOIN_ERROR_FILE_NOT_FOUND" | "DOMAIN_JOIN_ERROR_ACCESS_DENIED" | "DOMAIN_JOIN_ERROR_LOGON_FAILURE" | "DOMAIN_JOIN_ERROR_INVALID_PARAMETER" | "DOMAIN_JOIN_ERROR_MORE_DATA" | "DOMAIN_JOIN_ERROR_NO_SUCH_DOMAIN" | "DOMAIN_JOIN_ERROR_NOT_SUPPORTED" | "DOMAIN_JOIN_NERR_INVALID_WORKGROUP_NAME" | "DOMAIN_JOIN_NERR_WORKSTATION_NOT_STARTED" | "DOMAIN_JOIN_ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED" | "DOMAIN_JOIN_NERR_PASSWORD_EXPIRED" | "DOMAIN_JOIN_INTERNAL_SERVICE_ERROR")
|
903
|
+
attr_accessor error_message: ::String
|
904
|
+
SENSITIVE: []
|
905
|
+
end
|
906
|
+
|
907
|
+
class Image
|
908
|
+
attr_accessor name: ::String
|
909
|
+
attr_accessor arn: ::String
|
910
|
+
attr_accessor base_image_arn: ::String
|
911
|
+
attr_accessor display_name: ::String
|
912
|
+
attr_accessor state: ("PENDING" | "AVAILABLE" | "FAILED" | "COPYING" | "DELETING" | "CREATING" | "IMPORTING")
|
913
|
+
attr_accessor visibility: ("PUBLIC" | "PRIVATE" | "SHARED")
|
914
|
+
attr_accessor image_builder_supported: bool
|
915
|
+
attr_accessor image_builder_name: ::String
|
916
|
+
attr_accessor platform: ("WINDOWS" | "WINDOWS_SERVER_2016" | "WINDOWS_SERVER_2019" | "WINDOWS_SERVER_2022" | "AMAZON_LINUX2")
|
917
|
+
attr_accessor description: ::String
|
918
|
+
attr_accessor state_change_reason: Types::ImageStateChangeReason
|
919
|
+
attr_accessor applications: ::Array[Types::Application]
|
920
|
+
attr_accessor created_time: ::Time
|
921
|
+
attr_accessor public_base_image_released_date: ::Time
|
922
|
+
attr_accessor appstream_agent_version: ::String
|
923
|
+
attr_accessor image_permissions: Types::ImagePermissions
|
924
|
+
attr_accessor image_errors: ::Array[Types::ResourceError]
|
925
|
+
SENSITIVE: []
|
926
|
+
end
|
927
|
+
|
928
|
+
class ImageBuilder
|
929
|
+
attr_accessor name: ::String
|
930
|
+
attr_accessor arn: ::String
|
931
|
+
attr_accessor image_arn: ::String
|
932
|
+
attr_accessor description: ::String
|
933
|
+
attr_accessor display_name: ::String
|
934
|
+
attr_accessor vpc_config: Types::VpcConfig
|
935
|
+
attr_accessor instance_type: ::String
|
936
|
+
attr_accessor platform: ("WINDOWS" | "WINDOWS_SERVER_2016" | "WINDOWS_SERVER_2019" | "WINDOWS_SERVER_2022" | "AMAZON_LINUX2")
|
937
|
+
attr_accessor iam_role_arn: ::String
|
938
|
+
attr_accessor state: ("PENDING" | "UPDATING_AGENT" | "RUNNING" | "STOPPING" | "STOPPED" | "REBOOTING" | "SNAPSHOTTING" | "DELETING" | "FAILED" | "UPDATING" | "PENDING_QUALIFICATION")
|
939
|
+
attr_accessor state_change_reason: Types::ImageBuilderStateChangeReason
|
940
|
+
attr_accessor created_time: ::Time
|
941
|
+
attr_accessor enable_default_internet_access: bool
|
942
|
+
attr_accessor domain_join_info: Types::DomainJoinInfo
|
943
|
+
attr_accessor network_access_configuration: Types::NetworkAccessConfiguration
|
944
|
+
attr_accessor image_builder_errors: ::Array[Types::ResourceError]
|
945
|
+
attr_accessor appstream_agent_version: ::String
|
946
|
+
attr_accessor access_endpoints: ::Array[Types::AccessEndpoint]
|
947
|
+
SENSITIVE: []
|
948
|
+
end
|
949
|
+
|
950
|
+
class ImageBuilderStateChangeReason
|
951
|
+
attr_accessor code: ("INTERNAL_ERROR" | "IMAGE_UNAVAILABLE")
|
952
|
+
attr_accessor message: ::String
|
953
|
+
SENSITIVE: []
|
954
|
+
end
|
955
|
+
|
956
|
+
class ImagePermissions
|
957
|
+
attr_accessor allow_fleet: bool
|
958
|
+
attr_accessor allow_image_builder: bool
|
959
|
+
SENSITIVE: []
|
960
|
+
end
|
961
|
+
|
962
|
+
class ImageStateChangeReason
|
963
|
+
attr_accessor code: ("INTERNAL_ERROR" | "IMAGE_BUILDER_NOT_AVAILABLE" | "IMAGE_COPY_FAILURE")
|
964
|
+
attr_accessor message: ::String
|
965
|
+
SENSITIVE: []
|
966
|
+
end
|
967
|
+
|
968
|
+
class IncompatibleImageException
|
969
|
+
attr_accessor message: ::String
|
970
|
+
SENSITIVE: []
|
971
|
+
end
|
972
|
+
|
973
|
+
class InvalidAccountStatusException
|
974
|
+
attr_accessor message: ::String
|
975
|
+
SENSITIVE: []
|
976
|
+
end
|
977
|
+
|
978
|
+
class InvalidParameterCombinationException
|
979
|
+
attr_accessor message: ::String
|
980
|
+
SENSITIVE: []
|
981
|
+
end
|
982
|
+
|
983
|
+
class InvalidRoleException
|
984
|
+
attr_accessor message: ::String
|
985
|
+
SENSITIVE: []
|
986
|
+
end
|
987
|
+
|
988
|
+
class LastReportGenerationExecutionError
|
989
|
+
attr_accessor error_code: ("RESOURCE_NOT_FOUND" | "ACCESS_DENIED" | "INTERNAL_SERVICE_ERROR")
|
990
|
+
attr_accessor error_message: ::String
|
991
|
+
SENSITIVE: []
|
992
|
+
end
|
993
|
+
|
994
|
+
class LimitExceededException
|
995
|
+
attr_accessor message: ::String
|
996
|
+
SENSITIVE: []
|
997
|
+
end
|
998
|
+
|
999
|
+
class ListAssociatedFleetsRequest
|
1000
|
+
attr_accessor stack_name: ::String
|
1001
|
+
attr_accessor next_token: ::String
|
1002
|
+
SENSITIVE: []
|
1003
|
+
end
|
1004
|
+
|
1005
|
+
class ListAssociatedFleetsResult
|
1006
|
+
attr_accessor names: ::Array[::String]
|
1007
|
+
attr_accessor next_token: ::String
|
1008
|
+
SENSITIVE: []
|
1009
|
+
end
|
1010
|
+
|
1011
|
+
class ListAssociatedStacksRequest
|
1012
|
+
attr_accessor fleet_name: ::String
|
1013
|
+
attr_accessor next_token: ::String
|
1014
|
+
SENSITIVE: []
|
1015
|
+
end
|
1016
|
+
|
1017
|
+
class ListAssociatedStacksResult
|
1018
|
+
attr_accessor names: ::Array[::String]
|
1019
|
+
attr_accessor next_token: ::String
|
1020
|
+
SENSITIVE: []
|
1021
|
+
end
|
1022
|
+
|
1023
|
+
class ListEntitledApplicationsRequest
|
1024
|
+
attr_accessor stack_name: ::String
|
1025
|
+
attr_accessor entitlement_name: ::String
|
1026
|
+
attr_accessor next_token: ::String
|
1027
|
+
attr_accessor max_results: ::Integer
|
1028
|
+
SENSITIVE: []
|
1029
|
+
end
|
1030
|
+
|
1031
|
+
class ListEntitledApplicationsResult
|
1032
|
+
attr_accessor entitled_applications: ::Array[Types::EntitledApplication]
|
1033
|
+
attr_accessor next_token: ::String
|
1034
|
+
SENSITIVE: []
|
1035
|
+
end
|
1036
|
+
|
1037
|
+
class ListTagsForResourceRequest
|
1038
|
+
attr_accessor resource_arn: ::String
|
1039
|
+
SENSITIVE: []
|
1040
|
+
end
|
1041
|
+
|
1042
|
+
class ListTagsForResourceResponse
|
1043
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
1044
|
+
SENSITIVE: []
|
1045
|
+
end
|
1046
|
+
|
1047
|
+
class NetworkAccessConfiguration
|
1048
|
+
attr_accessor eni_private_ip_address: ::String
|
1049
|
+
attr_accessor eni_id: ::String
|
1050
|
+
SENSITIVE: []
|
1051
|
+
end
|
1052
|
+
|
1053
|
+
class OperationNotPermittedException
|
1054
|
+
attr_accessor message: ::String
|
1055
|
+
SENSITIVE: []
|
1056
|
+
end
|
1057
|
+
|
1058
|
+
class RequestLimitExceededException
|
1059
|
+
attr_accessor message: ::String
|
1060
|
+
SENSITIVE: []
|
1061
|
+
end
|
1062
|
+
|
1063
|
+
class ResourceAlreadyExistsException
|
1064
|
+
attr_accessor message: ::String
|
1065
|
+
SENSITIVE: []
|
1066
|
+
end
|
1067
|
+
|
1068
|
+
class ResourceError
|
1069
|
+
attr_accessor error_code: ("IAM_SERVICE_ROLE_MISSING_ENI_DESCRIBE_ACTION" | "IAM_SERVICE_ROLE_MISSING_ENI_CREATE_ACTION" | "IAM_SERVICE_ROLE_MISSING_ENI_DELETE_ACTION" | "NETWORK_INTERFACE_LIMIT_EXCEEDED" | "INTERNAL_SERVICE_ERROR" | "IAM_SERVICE_ROLE_IS_MISSING" | "MACHINE_ROLE_IS_MISSING" | "STS_DISABLED_IN_REGION" | "SUBNET_HAS_INSUFFICIENT_IP_ADDRESSES" | "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SUBNET_ACTION" | "SUBNET_NOT_FOUND" | "IMAGE_NOT_FOUND" | "INVALID_SUBNET_CONFIGURATION" | "SECURITY_GROUPS_NOT_FOUND" | "IGW_NOT_ATTACHED" | "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SECURITY_GROUPS_ACTION" | "FLEET_STOPPED" | "FLEET_INSTANCE_PROVISIONING_FAILURE" | "DOMAIN_JOIN_ERROR_FILE_NOT_FOUND" | "DOMAIN_JOIN_ERROR_ACCESS_DENIED" | "DOMAIN_JOIN_ERROR_LOGON_FAILURE" | "DOMAIN_JOIN_ERROR_INVALID_PARAMETER" | "DOMAIN_JOIN_ERROR_MORE_DATA" | "DOMAIN_JOIN_ERROR_NO_SUCH_DOMAIN" | "DOMAIN_JOIN_ERROR_NOT_SUPPORTED" | "DOMAIN_JOIN_NERR_INVALID_WORKGROUP_NAME" | "DOMAIN_JOIN_NERR_WORKSTATION_NOT_STARTED" | "DOMAIN_JOIN_ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED" | "DOMAIN_JOIN_NERR_PASSWORD_EXPIRED" | "DOMAIN_JOIN_INTERNAL_SERVICE_ERROR")
|
1070
|
+
attr_accessor error_message: ::String
|
1071
|
+
attr_accessor error_timestamp: ::Time
|
1072
|
+
SENSITIVE: []
|
1073
|
+
end
|
1074
|
+
|
1075
|
+
class ResourceInUseException
|
1076
|
+
attr_accessor message: ::String
|
1077
|
+
SENSITIVE: []
|
1078
|
+
end
|
1079
|
+
|
1080
|
+
class ResourceNotAvailableException
|
1081
|
+
attr_accessor message: ::String
|
1082
|
+
SENSITIVE: []
|
1083
|
+
end
|
1084
|
+
|
1085
|
+
class ResourceNotFoundException
|
1086
|
+
attr_accessor message: ::String
|
1087
|
+
SENSITIVE: []
|
1088
|
+
end
|
1089
|
+
|
1090
|
+
class S3Location
|
1091
|
+
attr_accessor s3_bucket: ::String
|
1092
|
+
attr_accessor s3_key: ::String
|
1093
|
+
SENSITIVE: []
|
1094
|
+
end
|
1095
|
+
|
1096
|
+
class ScriptDetails
|
1097
|
+
attr_accessor script_s3_location: Types::S3Location
|
1098
|
+
attr_accessor executable_path: ::String
|
1099
|
+
attr_accessor executable_parameters: ::String
|
1100
|
+
attr_accessor timeout_in_seconds: ::Integer
|
1101
|
+
SENSITIVE: []
|
1102
|
+
end
|
1103
|
+
|
1104
|
+
class ServiceAccountCredentials
|
1105
|
+
attr_accessor account_name: ::String
|
1106
|
+
attr_accessor account_password: ::String
|
1107
|
+
SENSITIVE: [:account_name, :account_password]
|
1108
|
+
end
|
1109
|
+
|
1110
|
+
class Session
|
1111
|
+
attr_accessor id: ::String
|
1112
|
+
attr_accessor user_id: ::String
|
1113
|
+
attr_accessor stack_name: ::String
|
1114
|
+
attr_accessor fleet_name: ::String
|
1115
|
+
attr_accessor state: ("ACTIVE" | "PENDING" | "EXPIRED")
|
1116
|
+
attr_accessor connection_state: ("CONNECTED" | "NOT_CONNECTED")
|
1117
|
+
attr_accessor start_time: ::Time
|
1118
|
+
attr_accessor max_expiration_time: ::Time
|
1119
|
+
attr_accessor authentication_type: ("API" | "SAML" | "USERPOOL" | "AWS_AD")
|
1120
|
+
attr_accessor network_access_configuration: Types::NetworkAccessConfiguration
|
1121
|
+
attr_accessor instance_id: ::String
|
1122
|
+
SENSITIVE: []
|
1123
|
+
end
|
1124
|
+
|
1125
|
+
class SharedImagePermissions
|
1126
|
+
attr_accessor shared_account_id: ::String
|
1127
|
+
attr_accessor image_permissions: Types::ImagePermissions
|
1128
|
+
SENSITIVE: []
|
1129
|
+
end
|
1130
|
+
|
1131
|
+
class Stack
|
1132
|
+
attr_accessor arn: ::String
|
1133
|
+
attr_accessor name: ::String
|
1134
|
+
attr_accessor description: ::String
|
1135
|
+
attr_accessor display_name: ::String
|
1136
|
+
attr_accessor created_time: ::Time
|
1137
|
+
attr_accessor storage_connectors: ::Array[Types::StorageConnector]
|
1138
|
+
attr_accessor redirect_url: ::String
|
1139
|
+
attr_accessor feedback_url: ::String
|
1140
|
+
attr_accessor stack_errors: ::Array[Types::StackError]
|
1141
|
+
attr_accessor user_settings: ::Array[Types::UserSetting]
|
1142
|
+
attr_accessor application_settings: Types::ApplicationSettingsResponse
|
1143
|
+
attr_accessor access_endpoints: ::Array[Types::AccessEndpoint]
|
1144
|
+
attr_accessor embed_host_domains: ::Array[::String]
|
1145
|
+
attr_accessor streaming_experience_settings: Types::StreamingExperienceSettings
|
1146
|
+
SENSITIVE: []
|
1147
|
+
end
|
1148
|
+
|
1149
|
+
class StackError
|
1150
|
+
attr_accessor error_code: ("STORAGE_CONNECTOR_ERROR" | "INTERNAL_SERVICE_ERROR")
|
1151
|
+
attr_accessor error_message: ::String
|
1152
|
+
SENSITIVE: []
|
1153
|
+
end
|
1154
|
+
|
1155
|
+
class StartAppBlockBuilderRequest
|
1156
|
+
attr_accessor name: ::String
|
1157
|
+
SENSITIVE: []
|
1158
|
+
end
|
1159
|
+
|
1160
|
+
class StartAppBlockBuilderResult
|
1161
|
+
attr_accessor app_block_builder: Types::AppBlockBuilder
|
1162
|
+
SENSITIVE: []
|
1163
|
+
end
|
1164
|
+
|
1165
|
+
class StartFleetRequest
|
1166
|
+
attr_accessor name: ::String
|
1167
|
+
SENSITIVE: []
|
1168
|
+
end
|
1169
|
+
|
1170
|
+
class StartFleetResult < Aws::EmptyStructure
|
1171
|
+
end
|
1172
|
+
|
1173
|
+
class StartImageBuilderRequest
|
1174
|
+
attr_accessor name: ::String
|
1175
|
+
attr_accessor appstream_agent_version: ::String
|
1176
|
+
SENSITIVE: []
|
1177
|
+
end
|
1178
|
+
|
1179
|
+
class StartImageBuilderResult
|
1180
|
+
attr_accessor image_builder: Types::ImageBuilder
|
1181
|
+
SENSITIVE: []
|
1182
|
+
end
|
1183
|
+
|
1184
|
+
class StopAppBlockBuilderRequest
|
1185
|
+
attr_accessor name: ::String
|
1186
|
+
SENSITIVE: []
|
1187
|
+
end
|
1188
|
+
|
1189
|
+
class StopAppBlockBuilderResult
|
1190
|
+
attr_accessor app_block_builder: Types::AppBlockBuilder
|
1191
|
+
SENSITIVE: []
|
1192
|
+
end
|
1193
|
+
|
1194
|
+
class StopFleetRequest
|
1195
|
+
attr_accessor name: ::String
|
1196
|
+
SENSITIVE: []
|
1197
|
+
end
|
1198
|
+
|
1199
|
+
class StopFleetResult < Aws::EmptyStructure
|
1200
|
+
end
|
1201
|
+
|
1202
|
+
class StopImageBuilderRequest
|
1203
|
+
attr_accessor name: ::String
|
1204
|
+
SENSITIVE: []
|
1205
|
+
end
|
1206
|
+
|
1207
|
+
class StopImageBuilderResult
|
1208
|
+
attr_accessor image_builder: Types::ImageBuilder
|
1209
|
+
SENSITIVE: []
|
1210
|
+
end
|
1211
|
+
|
1212
|
+
class StorageConnector
|
1213
|
+
attr_accessor connector_type: ("HOMEFOLDERS" | "GOOGLE_DRIVE" | "ONE_DRIVE")
|
1214
|
+
attr_accessor resource_identifier: ::String
|
1215
|
+
attr_accessor domains: ::Array[::String]
|
1216
|
+
SENSITIVE: []
|
1217
|
+
end
|
1218
|
+
|
1219
|
+
class StreamingExperienceSettings
|
1220
|
+
attr_accessor preferred_protocol: ("TCP" | "UDP")
|
1221
|
+
SENSITIVE: []
|
1222
|
+
end
|
1223
|
+
|
1224
|
+
class TagResourceRequest
|
1225
|
+
attr_accessor resource_arn: ::String
|
1226
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
1227
|
+
SENSITIVE: []
|
1228
|
+
end
|
1229
|
+
|
1230
|
+
class TagResourceResponse < Aws::EmptyStructure
|
1231
|
+
end
|
1232
|
+
|
1233
|
+
class UntagResourceRequest
|
1234
|
+
attr_accessor resource_arn: ::String
|
1235
|
+
attr_accessor tag_keys: ::Array[::String]
|
1236
|
+
SENSITIVE: []
|
1237
|
+
end
|
1238
|
+
|
1239
|
+
class UntagResourceResponse < Aws::EmptyStructure
|
1240
|
+
end
|
1241
|
+
|
1242
|
+
class UpdateAppBlockBuilderRequest
|
1243
|
+
attr_accessor name: ::String
|
1244
|
+
attr_accessor description: ::String
|
1245
|
+
attr_accessor display_name: ::String
|
1246
|
+
attr_accessor platform: ("WINDOWS" | "WINDOWS_SERVER_2016" | "WINDOWS_SERVER_2019" | "WINDOWS_SERVER_2022" | "AMAZON_LINUX2")
|
1247
|
+
attr_accessor instance_type: ::String
|
1248
|
+
attr_accessor vpc_config: Types::VpcConfig
|
1249
|
+
attr_accessor enable_default_internet_access: bool
|
1250
|
+
attr_accessor iam_role_arn: ::String
|
1251
|
+
attr_accessor access_endpoints: ::Array[Types::AccessEndpoint]
|
1252
|
+
attr_accessor attributes_to_delete: ::Array[("IAM_ROLE_ARN" | "ACCESS_ENDPOINTS" | "VPC_CONFIGURATION_SECURITY_GROUP_IDS")]
|
1253
|
+
SENSITIVE: []
|
1254
|
+
end
|
1255
|
+
|
1256
|
+
class UpdateAppBlockBuilderResult
|
1257
|
+
attr_accessor app_block_builder: Types::AppBlockBuilder
|
1258
|
+
SENSITIVE: []
|
1259
|
+
end
|
1260
|
+
|
1261
|
+
class UpdateApplicationRequest
|
1262
|
+
attr_accessor name: ::String
|
1263
|
+
attr_accessor display_name: ::String
|
1264
|
+
attr_accessor description: ::String
|
1265
|
+
attr_accessor icon_s3_location: Types::S3Location
|
1266
|
+
attr_accessor launch_path: ::String
|
1267
|
+
attr_accessor working_directory: ::String
|
1268
|
+
attr_accessor launch_parameters: ::String
|
1269
|
+
attr_accessor app_block_arn: ::String
|
1270
|
+
attr_accessor attributes_to_delete: ::Array[("LAUNCH_PARAMETERS" | "WORKING_DIRECTORY")]
|
1271
|
+
SENSITIVE: []
|
1272
|
+
end
|
1273
|
+
|
1274
|
+
class UpdateApplicationResult
|
1275
|
+
attr_accessor application: Types::Application
|
1276
|
+
SENSITIVE: []
|
1277
|
+
end
|
1278
|
+
|
1279
|
+
class UpdateDirectoryConfigRequest
|
1280
|
+
attr_accessor directory_name: ::String
|
1281
|
+
attr_accessor organizational_unit_distinguished_names: ::Array[::String]
|
1282
|
+
attr_accessor service_account_credentials: Types::ServiceAccountCredentials
|
1283
|
+
attr_accessor certificate_based_auth_properties: Types::CertificateBasedAuthProperties
|
1284
|
+
SENSITIVE: []
|
1285
|
+
end
|
1286
|
+
|
1287
|
+
class UpdateDirectoryConfigResult
|
1288
|
+
attr_accessor directory_config: Types::DirectoryConfig
|
1289
|
+
SENSITIVE: []
|
1290
|
+
end
|
1291
|
+
|
1292
|
+
class UpdateEntitlementRequest
|
1293
|
+
attr_accessor name: ::String
|
1294
|
+
attr_accessor stack_name: ::String
|
1295
|
+
attr_accessor description: ::String
|
1296
|
+
attr_accessor app_visibility: ("ALL" | "ASSOCIATED")
|
1297
|
+
attr_accessor attributes: ::Array[Types::EntitlementAttribute]
|
1298
|
+
SENSITIVE: []
|
1299
|
+
end
|
1300
|
+
|
1301
|
+
class UpdateEntitlementResult
|
1302
|
+
attr_accessor entitlement: Types::Entitlement
|
1303
|
+
SENSITIVE: []
|
1304
|
+
end
|
1305
|
+
|
1306
|
+
class UpdateFleetRequest
|
1307
|
+
attr_accessor image_name: ::String
|
1308
|
+
attr_accessor image_arn: ::String
|
1309
|
+
attr_accessor name: ::String
|
1310
|
+
attr_accessor instance_type: ::String
|
1311
|
+
attr_accessor compute_capacity: Types::ComputeCapacity
|
1312
|
+
attr_accessor vpc_config: Types::VpcConfig
|
1313
|
+
attr_accessor max_user_duration_in_seconds: ::Integer
|
1314
|
+
attr_accessor disconnect_timeout_in_seconds: ::Integer
|
1315
|
+
attr_accessor delete_vpc_config: bool
|
1316
|
+
attr_accessor description: ::String
|
1317
|
+
attr_accessor display_name: ::String
|
1318
|
+
attr_accessor enable_default_internet_access: bool
|
1319
|
+
attr_accessor domain_join_info: Types::DomainJoinInfo
|
1320
|
+
attr_accessor idle_disconnect_timeout_in_seconds: ::Integer
|
1321
|
+
attr_accessor attributes_to_delete: ::Array[("VPC_CONFIGURATION" | "VPC_CONFIGURATION_SECURITY_GROUP_IDS" | "DOMAIN_JOIN_INFO" | "IAM_ROLE_ARN" | "USB_DEVICE_FILTER_STRINGS" | "SESSION_SCRIPT_S3_LOCATION" | "MAX_SESSIONS_PER_INSTANCE")]
|
1322
|
+
attr_accessor iam_role_arn: ::String
|
1323
|
+
attr_accessor stream_view: ("APP" | "DESKTOP")
|
1324
|
+
attr_accessor platform: ("WINDOWS" | "WINDOWS_SERVER_2016" | "WINDOWS_SERVER_2019" | "WINDOWS_SERVER_2022" | "AMAZON_LINUX2")
|
1325
|
+
attr_accessor max_concurrent_sessions: ::Integer
|
1326
|
+
attr_accessor usb_device_filter_strings: ::Array[::String]
|
1327
|
+
attr_accessor session_script_s3_location: Types::S3Location
|
1328
|
+
attr_accessor max_sessions_per_instance: ::Integer
|
1329
|
+
SENSITIVE: []
|
1330
|
+
end
|
1331
|
+
|
1332
|
+
class UpdateFleetResult
|
1333
|
+
attr_accessor fleet: Types::Fleet
|
1334
|
+
SENSITIVE: []
|
1335
|
+
end
|
1336
|
+
|
1337
|
+
class UpdateImagePermissionsRequest
|
1338
|
+
attr_accessor name: ::String
|
1339
|
+
attr_accessor shared_account_id: ::String
|
1340
|
+
attr_accessor image_permissions: Types::ImagePermissions
|
1341
|
+
SENSITIVE: []
|
1342
|
+
end
|
1343
|
+
|
1344
|
+
class UpdateImagePermissionsResult < Aws::EmptyStructure
|
1345
|
+
end
|
1346
|
+
|
1347
|
+
class UpdateStackRequest
|
1348
|
+
attr_accessor display_name: ::String
|
1349
|
+
attr_accessor description: ::String
|
1350
|
+
attr_accessor name: ::String
|
1351
|
+
attr_accessor storage_connectors: ::Array[Types::StorageConnector]
|
1352
|
+
attr_accessor delete_storage_connectors: bool
|
1353
|
+
attr_accessor redirect_url: ::String
|
1354
|
+
attr_accessor feedback_url: ::String
|
1355
|
+
attr_accessor attributes_to_delete: ::Array[("STORAGE_CONNECTORS" | "STORAGE_CONNECTOR_HOMEFOLDERS" | "STORAGE_CONNECTOR_GOOGLE_DRIVE" | "STORAGE_CONNECTOR_ONE_DRIVE" | "REDIRECT_URL" | "FEEDBACK_URL" | "THEME_NAME" | "USER_SETTINGS" | "EMBED_HOST_DOMAINS" | "IAM_ROLE_ARN" | "ACCESS_ENDPOINTS" | "STREAMING_EXPERIENCE_SETTINGS")]
|
1356
|
+
attr_accessor user_settings: ::Array[Types::UserSetting]
|
1357
|
+
attr_accessor application_settings: Types::ApplicationSettings
|
1358
|
+
attr_accessor access_endpoints: ::Array[Types::AccessEndpoint]
|
1359
|
+
attr_accessor embed_host_domains: ::Array[::String]
|
1360
|
+
attr_accessor streaming_experience_settings: Types::StreamingExperienceSettings
|
1361
|
+
SENSITIVE: []
|
1362
|
+
end
|
1363
|
+
|
1364
|
+
class UpdateStackResult
|
1365
|
+
attr_accessor stack: Types::Stack
|
1366
|
+
SENSITIVE: []
|
1367
|
+
end
|
1368
|
+
|
1369
|
+
class UsageReportSubscription
|
1370
|
+
attr_accessor s3_bucket_name: ::String
|
1371
|
+
attr_accessor schedule: ("DAILY")
|
1372
|
+
attr_accessor last_generated_report_date: ::Time
|
1373
|
+
attr_accessor subscription_errors: ::Array[Types::LastReportGenerationExecutionError]
|
1374
|
+
SENSITIVE: []
|
1375
|
+
end
|
1376
|
+
|
1377
|
+
class User
|
1378
|
+
attr_accessor arn: ::String
|
1379
|
+
attr_accessor user_name: ::String
|
1380
|
+
attr_accessor enabled: bool
|
1381
|
+
attr_accessor status: ::String
|
1382
|
+
attr_accessor first_name: ::String
|
1383
|
+
attr_accessor last_name: ::String
|
1384
|
+
attr_accessor created_time: ::Time
|
1385
|
+
attr_accessor authentication_type: ("API" | "SAML" | "USERPOOL" | "AWS_AD")
|
1386
|
+
SENSITIVE: [:user_name, :first_name, :last_name]
|
1387
|
+
end
|
1388
|
+
|
1389
|
+
class UserSetting
|
1390
|
+
attr_accessor action: ("CLIPBOARD_COPY_FROM_LOCAL_DEVICE" | "CLIPBOARD_COPY_TO_LOCAL_DEVICE" | "FILE_UPLOAD" | "FILE_DOWNLOAD" | "PRINTING_TO_LOCAL_DEVICE" | "DOMAIN_PASSWORD_SIGNIN" | "DOMAIN_SMART_CARD_SIGNIN")
|
1391
|
+
attr_accessor permission: ("ENABLED" | "DISABLED")
|
1392
|
+
attr_accessor maximum_length: ::Integer
|
1393
|
+
SENSITIVE: []
|
1394
|
+
end
|
1395
|
+
|
1396
|
+
class UserStackAssociation
|
1397
|
+
attr_accessor stack_name: ::String
|
1398
|
+
attr_accessor user_name: ::String
|
1399
|
+
attr_accessor authentication_type: ("API" | "SAML" | "USERPOOL" | "AWS_AD")
|
1400
|
+
attr_accessor send_email_notification: bool
|
1401
|
+
SENSITIVE: [:user_name]
|
1402
|
+
end
|
1403
|
+
|
1404
|
+
class UserStackAssociationError
|
1405
|
+
attr_accessor user_stack_association: Types::UserStackAssociation
|
1406
|
+
attr_accessor error_code: ("STACK_NOT_FOUND" | "USER_NAME_NOT_FOUND" | "DIRECTORY_NOT_FOUND" | "INTERNAL_ERROR")
|
1407
|
+
attr_accessor error_message: ::String
|
1408
|
+
SENSITIVE: []
|
1409
|
+
end
|
1410
|
+
|
1411
|
+
class VpcConfig
|
1412
|
+
attr_accessor subnet_ids: ::Array[::String]
|
1413
|
+
attr_accessor security_group_ids: ::Array[::String]
|
1414
|
+
SENSITIVE: []
|
1415
|
+
end
|
1416
|
+
end
|
1417
|
+
end
|