aws-sdk-appstream 1.67.0 → 1.69.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +13 -1
- data/VERSION +1 -1
- data/lib/aws-sdk-appstream/client.rb +75 -17
- data/lib/aws-sdk-appstream/client_api.rb +9 -0
- data/lib/aws-sdk-appstream/endpoint_provider.rb +35 -96
- data/lib/aws-sdk-appstream/types.rb +92 -886
- data/lib/aws-sdk-appstream.rb +1 -1
- metadata +2 -2
@@ -18,14 +18,6 @@ module Aws::AppStream
|
|
18
18
|
# an image builder, administrators can connect to the image builder only
|
19
19
|
# through that endpoint.
|
20
20
|
#
|
21
|
-
# @note When making an API call, you may pass AccessEndpoint
|
22
|
-
# data as a hash:
|
23
|
-
#
|
24
|
-
# {
|
25
|
-
# endpoint_type: "STREAMING", # required, accepts STREAMING
|
26
|
-
# vpce_id: "String",
|
27
|
-
# }
|
28
|
-
#
|
29
21
|
# @!attribute [rw] endpoint_type
|
30
22
|
# The type of interface endpoint.
|
31
23
|
# @return [String]
|
@@ -203,14 +195,6 @@ module Aws::AppStream
|
|
203
195
|
|
204
196
|
# The persistent application settings for users of a stack.
|
205
197
|
#
|
206
|
-
# @note When making an API call, you may pass ApplicationSettings
|
207
|
-
# data as a hash:
|
208
|
-
#
|
209
|
-
# {
|
210
|
-
# enabled: false, # required
|
211
|
-
# settings_group: "SettingsGroup",
|
212
|
-
# }
|
213
|
-
#
|
214
198
|
# @!attribute [rw] enabled
|
215
199
|
# Enables or disables persistent application settings for users during
|
216
200
|
# their streaming sessions.
|
@@ -261,14 +245,6 @@ module Aws::AppStream
|
|
261
245
|
include Aws::Structure
|
262
246
|
end
|
263
247
|
|
264
|
-
# @note When making an API call, you may pass AssociateApplicationFleetRequest
|
265
|
-
# data as a hash:
|
266
|
-
#
|
267
|
-
# {
|
268
|
-
# fleet_name: "Name", # required
|
269
|
-
# application_arn: "Arn", # required
|
270
|
-
# }
|
271
|
-
#
|
272
248
|
# @!attribute [rw] fleet_name
|
273
249
|
# The name of the fleet.
|
274
250
|
# @return [String]
|
@@ -300,15 +276,6 @@ module Aws::AppStream
|
|
300
276
|
include Aws::Structure
|
301
277
|
end
|
302
278
|
|
303
|
-
# @note When making an API call, you may pass AssociateApplicationToEntitlementRequest
|
304
|
-
# data as a hash:
|
305
|
-
#
|
306
|
-
# {
|
307
|
-
# stack_name: "Name", # required
|
308
|
-
# entitlement_name: "Name", # required
|
309
|
-
# application_identifier: "String", # required
|
310
|
-
# }
|
311
|
-
#
|
312
279
|
# @!attribute [rw] stack_name
|
313
280
|
# The name of the stack.
|
314
281
|
# @return [String]
|
@@ -335,14 +302,6 @@ module Aws::AppStream
|
|
335
302
|
#
|
336
303
|
class AssociateApplicationToEntitlementResult < Aws::EmptyStructure; end
|
337
304
|
|
338
|
-
# @note When making an API call, you may pass AssociateFleetRequest
|
339
|
-
# data as a hash:
|
340
|
-
#
|
341
|
-
# {
|
342
|
-
# fleet_name: "String", # required
|
343
|
-
# stack_name: "String", # required
|
344
|
-
# }
|
345
|
-
#
|
346
305
|
# @!attribute [rw] fleet_name
|
347
306
|
# The name of the fleet.
|
348
307
|
# @return [String]
|
@@ -364,20 +323,6 @@ module Aws::AppStream
|
|
364
323
|
#
|
365
324
|
class AssociateFleetResult < Aws::EmptyStructure; end
|
366
325
|
|
367
|
-
# @note When making an API call, you may pass BatchAssociateUserStackRequest
|
368
|
-
# data as a hash:
|
369
|
-
#
|
370
|
-
# {
|
371
|
-
# user_stack_associations: [ # required
|
372
|
-
# {
|
373
|
-
# stack_name: "String", # required
|
374
|
-
# user_name: "Username", # required
|
375
|
-
# authentication_type: "API", # required, accepts API, SAML, USERPOOL
|
376
|
-
# send_email_notification: false,
|
377
|
-
# },
|
378
|
-
# ],
|
379
|
-
# }
|
380
|
-
#
|
381
326
|
# @!attribute [rw] user_stack_associations
|
382
327
|
# The list of UserStackAssociation objects.
|
383
328
|
# @return [Array<Types::UserStackAssociation>]
|
@@ -402,20 +347,6 @@ module Aws::AppStream
|
|
402
347
|
include Aws::Structure
|
403
348
|
end
|
404
349
|
|
405
|
-
# @note When making an API call, you may pass BatchDisassociateUserStackRequest
|
406
|
-
# data as a hash:
|
407
|
-
#
|
408
|
-
# {
|
409
|
-
# user_stack_associations: [ # required
|
410
|
-
# {
|
411
|
-
# stack_name: "String", # required
|
412
|
-
# user_name: "Username", # required
|
413
|
-
# authentication_type: "API", # required, accepts API, SAML, USERPOOL
|
414
|
-
# send_email_notification: false,
|
415
|
-
# },
|
416
|
-
# ],
|
417
|
-
# }
|
418
|
-
#
|
419
350
|
# @!attribute [rw] user_stack_associations
|
420
351
|
# The list of UserStackAssociation objects.
|
421
352
|
# @return [Array<Types::UserStackAssociation>]
|
@@ -440,14 +371,35 @@ module Aws::AppStream
|
|
440
371
|
include Aws::Structure
|
441
372
|
end
|
442
373
|
|
443
|
-
#
|
374
|
+
# The certificate-based authentication properties used to authenticate
|
375
|
+
# SAML 2.0 Identity Provider (IdP) user identities to Active Directory
|
376
|
+
# domain-joined streaming instances. Fallback is turned on by default
|
377
|
+
# when certificate-based authentication is **Enabled** . Fallback allows
|
378
|
+
# users to log in using their AD domain password if certificate-based
|
379
|
+
# authentication is unsuccessful, or to unlock a desktop lock screen.
|
380
|
+
# **Enabled\_no\_directory\_login\_fallback** enables certificate-based
|
381
|
+
# authentication, but does not allow users to log in using their AD
|
382
|
+
# domain password. Users will be disconnected to re-authenticate using
|
383
|
+
# certificates.
|
444
384
|
#
|
445
|
-
#
|
446
|
-
#
|
385
|
+
# @!attribute [rw] status
|
386
|
+
# The status of the certificate-based authentication properties.
|
387
|
+
# @return [String]
|
447
388
|
#
|
448
|
-
#
|
449
|
-
#
|
450
|
-
#
|
389
|
+
# @!attribute [rw] certificate_authority_arn
|
390
|
+
# The ARN of the AWS Certificate Manager Private CA resource.
|
391
|
+
# @return [String]
|
392
|
+
#
|
393
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CertificateBasedAuthProperties AWS API Documentation
|
394
|
+
#
|
395
|
+
class CertificateBasedAuthProperties < Struct.new(
|
396
|
+
:status,
|
397
|
+
:certificate_authority_arn)
|
398
|
+
SENSITIVE = []
|
399
|
+
include Aws::Structure
|
400
|
+
end
|
401
|
+
|
402
|
+
# Describes the capacity for a fleet.
|
451
403
|
#
|
452
404
|
# @!attribute [rw] desired_instances
|
453
405
|
# The desired number of streaming instances.
|
@@ -506,16 +458,6 @@ module Aws::AppStream
|
|
506
458
|
include Aws::Structure
|
507
459
|
end
|
508
460
|
|
509
|
-
# @note When making an API call, you may pass CopyImageRequest
|
510
|
-
# data as a hash:
|
511
|
-
#
|
512
|
-
# {
|
513
|
-
# source_image_name: "Name", # required
|
514
|
-
# destination_image_name: "Name", # required
|
515
|
-
# destination_region: "RegionName", # required
|
516
|
-
# destination_image_description: "Description",
|
517
|
-
# }
|
518
|
-
#
|
519
461
|
# @!attribute [rw] source_image_name
|
520
462
|
# The name of the image to copy.
|
521
463
|
# @return [String]
|
@@ -559,31 +501,6 @@ module Aws::AppStream
|
|
559
501
|
include Aws::Structure
|
560
502
|
end
|
561
503
|
|
562
|
-
# @note When making an API call, you may pass CreateAppBlockRequest
|
563
|
-
# data as a hash:
|
564
|
-
#
|
565
|
-
# {
|
566
|
-
# name: "Name", # required
|
567
|
-
# description: "Description",
|
568
|
-
# display_name: "DisplayName",
|
569
|
-
# source_s3_location: { # required
|
570
|
-
# s3_bucket: "S3Bucket", # required
|
571
|
-
# s3_key: "S3Key", # required
|
572
|
-
# },
|
573
|
-
# setup_script_details: { # required
|
574
|
-
# script_s3_location: { # required
|
575
|
-
# s3_bucket: "S3Bucket", # required
|
576
|
-
# s3_key: "S3Key", # required
|
577
|
-
# },
|
578
|
-
# executable_path: "String", # required
|
579
|
-
# executable_parameters: "String",
|
580
|
-
# timeout_in_seconds: 1, # required
|
581
|
-
# },
|
582
|
-
# tags: {
|
583
|
-
# "TagKey" => "TagValue",
|
584
|
-
# },
|
585
|
-
# }
|
586
|
-
#
|
587
504
|
# @!attribute [rw] name
|
588
505
|
# The name of the app block.
|
589
506
|
# @return [String]
|
@@ -634,28 +551,6 @@ module Aws::AppStream
|
|
634
551
|
include Aws::Structure
|
635
552
|
end
|
636
553
|
|
637
|
-
# @note When making an API call, you may pass CreateApplicationRequest
|
638
|
-
# data as a hash:
|
639
|
-
#
|
640
|
-
# {
|
641
|
-
# name: "Name", # required
|
642
|
-
# display_name: "DisplayName",
|
643
|
-
# description: "Description",
|
644
|
-
# icon_s3_location: { # required
|
645
|
-
# s3_bucket: "S3Bucket", # required
|
646
|
-
# s3_key: "S3Key", # required
|
647
|
-
# },
|
648
|
-
# launch_path: "String", # required
|
649
|
-
# working_directory: "String",
|
650
|
-
# launch_parameters: "String",
|
651
|
-
# platforms: ["WINDOWS"], # required, accepts WINDOWS, WINDOWS_SERVER_2016, WINDOWS_SERVER_2019, AMAZON_LINUX2
|
652
|
-
# instance_families: ["String"], # required
|
653
|
-
# app_block_arn: "Arn", # required
|
654
|
-
# tags: {
|
655
|
-
# "TagKey" => "TagValue",
|
656
|
-
# },
|
657
|
-
# }
|
658
|
-
#
|
659
554
|
# @!attribute [rw] name
|
660
555
|
# The name of the application. This name is visible to users when
|
661
556
|
# display name is not specified.
|
@@ -734,18 +629,6 @@ module Aws::AppStream
|
|
734
629
|
include Aws::Structure
|
735
630
|
end
|
736
631
|
|
737
|
-
# @note When making an API call, you may pass CreateDirectoryConfigRequest
|
738
|
-
# data as a hash:
|
739
|
-
#
|
740
|
-
# {
|
741
|
-
# directory_name: "DirectoryName", # required
|
742
|
-
# organizational_unit_distinguished_names: ["OrganizationalUnitDistinguishedName"], # required
|
743
|
-
# service_account_credentials: {
|
744
|
-
# account_name: "AccountName", # required
|
745
|
-
# account_password: "AccountPassword", # required
|
746
|
-
# },
|
747
|
-
# }
|
748
|
-
#
|
749
632
|
# @!attribute [rw] directory_name
|
750
633
|
# The fully qualified name of the directory (for example,
|
751
634
|
# corp.example.com).
|
@@ -761,12 +644,26 @@ module Aws::AppStream
|
|
761
644
|
# builder to connect to the directory.
|
762
645
|
# @return [Types::ServiceAccountCredentials]
|
763
646
|
#
|
647
|
+
# @!attribute [rw] certificate_based_auth_properties
|
648
|
+
# The certificate-based authentication properties used to authenticate
|
649
|
+
# SAML 2.0 Identity Provider (IdP) user identities to Active Directory
|
650
|
+
# domain-joined streaming instances. Fallback is turned on by default
|
651
|
+
# when certificate-based authentication is **Enabled** . Fallback
|
652
|
+
# allows users to log in using their AD domain password if
|
653
|
+
# certificate-based authentication is unsuccessful, or to unlock a
|
654
|
+
# desktop lock screen. **Enabled\_no\_directory\_login\_fallback**
|
655
|
+
# enables certificate-based authentication, but does not allow users
|
656
|
+
# to log in using their AD domain password. Users will be disconnected
|
657
|
+
# to re-authenticate using certificates.
|
658
|
+
# @return [Types::CertificateBasedAuthProperties]
|
659
|
+
#
|
764
660
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateDirectoryConfigRequest AWS API Documentation
|
765
661
|
#
|
766
662
|
class CreateDirectoryConfigRequest < Struct.new(
|
767
663
|
:directory_name,
|
768
664
|
:organizational_unit_distinguished_names,
|
769
|
-
:service_account_credentials
|
665
|
+
:service_account_credentials,
|
666
|
+
:certificate_based_auth_properties)
|
770
667
|
SENSITIVE = []
|
771
668
|
include Aws::Structure
|
772
669
|
end
|
@@ -783,22 +680,6 @@ module Aws::AppStream
|
|
783
680
|
include Aws::Structure
|
784
681
|
end
|
785
682
|
|
786
|
-
# @note When making an API call, you may pass CreateEntitlementRequest
|
787
|
-
# data as a hash:
|
788
|
-
#
|
789
|
-
# {
|
790
|
-
# name: "Name", # required
|
791
|
-
# stack_name: "Name", # required
|
792
|
-
# description: "Description",
|
793
|
-
# app_visibility: "ALL", # required, accepts ALL, ASSOCIATED
|
794
|
-
# attributes: [ # required
|
795
|
-
# {
|
796
|
-
# name: "String", # required
|
797
|
-
# value: "String", # required
|
798
|
-
# },
|
799
|
-
# ],
|
800
|
-
# }
|
801
|
-
#
|
802
683
|
# @!attribute [rw] name
|
803
684
|
# The name of the entitlement.
|
804
685
|
# @return [String]
|
@@ -843,46 +724,6 @@ module Aws::AppStream
|
|
843
724
|
include Aws::Structure
|
844
725
|
end
|
845
726
|
|
846
|
-
# @note When making an API call, you may pass CreateFleetRequest
|
847
|
-
# data as a hash:
|
848
|
-
#
|
849
|
-
# {
|
850
|
-
# name: "Name", # required
|
851
|
-
# image_name: "String",
|
852
|
-
# image_arn: "Arn",
|
853
|
-
# instance_type: "String", # required
|
854
|
-
# fleet_type: "ALWAYS_ON", # accepts ALWAYS_ON, ON_DEMAND, ELASTIC
|
855
|
-
# compute_capacity: {
|
856
|
-
# desired_instances: 1, # required
|
857
|
-
# },
|
858
|
-
# vpc_config: {
|
859
|
-
# subnet_ids: ["String"],
|
860
|
-
# security_group_ids: ["String"],
|
861
|
-
# },
|
862
|
-
# max_user_duration_in_seconds: 1,
|
863
|
-
# disconnect_timeout_in_seconds: 1,
|
864
|
-
# description: "Description",
|
865
|
-
# display_name: "DisplayName",
|
866
|
-
# enable_default_internet_access: false,
|
867
|
-
# domain_join_info: {
|
868
|
-
# directory_name: "DirectoryName",
|
869
|
-
# organizational_unit_distinguished_name: "OrganizationalUnitDistinguishedName",
|
870
|
-
# },
|
871
|
-
# tags: {
|
872
|
-
# "TagKey" => "TagValue",
|
873
|
-
# },
|
874
|
-
# idle_disconnect_timeout_in_seconds: 1,
|
875
|
-
# iam_role_arn: "Arn",
|
876
|
-
# stream_view: "APP", # accepts APP, DESKTOP
|
877
|
-
# platform: "WINDOWS", # accepts WINDOWS, WINDOWS_SERVER_2016, WINDOWS_SERVER_2019, AMAZON_LINUX2
|
878
|
-
# max_concurrent_sessions: 1,
|
879
|
-
# usb_device_filter_strings: ["UsbDeviceFilterString"],
|
880
|
-
# session_script_s3_location: {
|
881
|
-
# s3_bucket: "S3Bucket", # required
|
882
|
-
# s3_key: "S3Key", # required
|
883
|
-
# },
|
884
|
-
# }
|
885
|
-
#
|
886
727
|
# @!attribute [rw] name
|
887
728
|
# A unique name for the fleet.
|
888
729
|
# @return [String]
|
@@ -905,6 +746,10 @@ module Aws::AppStream
|
|
905
746
|
#
|
906
747
|
# * stream.standard.large
|
907
748
|
#
|
749
|
+
# * stream.standard.xlarge
|
750
|
+
#
|
751
|
+
# * stream.standard.2xlarge
|
752
|
+
#
|
908
753
|
# * stream.compute.large
|
909
754
|
#
|
910
755
|
# * stream.compute.xlarge
|
@@ -970,6 +815,12 @@ module Aws::AppStream
|
|
970
815
|
# * stream.standard.small
|
971
816
|
#
|
972
817
|
# * stream.standard.medium
|
818
|
+
#
|
819
|
+
# * stream.standard.large
|
820
|
+
#
|
821
|
+
# * stream.standard.xlarge
|
822
|
+
#
|
823
|
+
# * stream.standard.2xlarge
|
973
824
|
# @return [String]
|
974
825
|
#
|
975
826
|
# @!attribute [rw] fleet_type
|
@@ -1179,38 +1030,6 @@ module Aws::AppStream
|
|
1179
1030
|
include Aws::Structure
|
1180
1031
|
end
|
1181
1032
|
|
1182
|
-
# @note When making an API call, you may pass CreateImageBuilderRequest
|
1183
|
-
# data as a hash:
|
1184
|
-
#
|
1185
|
-
# {
|
1186
|
-
# name: "Name", # required
|
1187
|
-
# image_name: "String",
|
1188
|
-
# image_arn: "Arn",
|
1189
|
-
# instance_type: "String", # required
|
1190
|
-
# description: "Description",
|
1191
|
-
# display_name: "DisplayName",
|
1192
|
-
# vpc_config: {
|
1193
|
-
# subnet_ids: ["String"],
|
1194
|
-
# security_group_ids: ["String"],
|
1195
|
-
# },
|
1196
|
-
# iam_role_arn: "Arn",
|
1197
|
-
# enable_default_internet_access: false,
|
1198
|
-
# domain_join_info: {
|
1199
|
-
# directory_name: "DirectoryName",
|
1200
|
-
# organizational_unit_distinguished_name: "OrganizationalUnitDistinguishedName",
|
1201
|
-
# },
|
1202
|
-
# appstream_agent_version: "AppstreamAgentVersion",
|
1203
|
-
# tags: {
|
1204
|
-
# "TagKey" => "TagValue",
|
1205
|
-
# },
|
1206
|
-
# access_endpoints: [
|
1207
|
-
# {
|
1208
|
-
# endpoint_type: "STREAMING", # required, accepts STREAMING
|
1209
|
-
# vpce_id: "String",
|
1210
|
-
# },
|
1211
|
-
# ],
|
1212
|
-
# }
|
1213
|
-
#
|
1214
1033
|
# @!attribute [rw] name
|
1215
1034
|
# A unique name for the image builder.
|
1216
1035
|
# @return [String]
|
@@ -1398,14 +1217,6 @@ module Aws::AppStream
|
|
1398
1217
|
include Aws::Structure
|
1399
1218
|
end
|
1400
1219
|
|
1401
|
-
# @note When making an API call, you may pass CreateImageBuilderStreamingURLRequest
|
1402
|
-
# data as a hash:
|
1403
|
-
#
|
1404
|
-
# {
|
1405
|
-
# name: "String", # required
|
1406
|
-
# validity: 1,
|
1407
|
-
# }
|
1408
|
-
#
|
1409
1220
|
# @!attribute [rw] name
|
1410
1221
|
# The name of the image builder.
|
1411
1222
|
# @return [String]
|
@@ -1442,47 +1253,6 @@ module Aws::AppStream
|
|
1442
1253
|
include Aws::Structure
|
1443
1254
|
end
|
1444
1255
|
|
1445
|
-
# @note When making an API call, you may pass CreateStackRequest
|
1446
|
-
# data as a hash:
|
1447
|
-
#
|
1448
|
-
# {
|
1449
|
-
# name: "Name", # required
|
1450
|
-
# description: "Description",
|
1451
|
-
# display_name: "DisplayName",
|
1452
|
-
# storage_connectors: [
|
1453
|
-
# {
|
1454
|
-
# connector_type: "HOMEFOLDERS", # required, accepts HOMEFOLDERS, GOOGLE_DRIVE, ONE_DRIVE
|
1455
|
-
# resource_identifier: "ResourceIdentifier",
|
1456
|
-
# domains: ["Domain"],
|
1457
|
-
# },
|
1458
|
-
# ],
|
1459
|
-
# redirect_url: "RedirectURL",
|
1460
|
-
# feedback_url: "FeedbackURL",
|
1461
|
-
# user_settings: [
|
1462
|
-
# {
|
1463
|
-
# action: "CLIPBOARD_COPY_FROM_LOCAL_DEVICE", # required, accepts 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
|
1464
|
-
# permission: "ENABLED", # required, accepts ENABLED, DISABLED
|
1465
|
-
# },
|
1466
|
-
# ],
|
1467
|
-
# application_settings: {
|
1468
|
-
# enabled: false, # required
|
1469
|
-
# settings_group: "SettingsGroup",
|
1470
|
-
# },
|
1471
|
-
# tags: {
|
1472
|
-
# "TagKey" => "TagValue",
|
1473
|
-
# },
|
1474
|
-
# access_endpoints: [
|
1475
|
-
# {
|
1476
|
-
# endpoint_type: "STREAMING", # required, accepts STREAMING
|
1477
|
-
# vpce_id: "String",
|
1478
|
-
# },
|
1479
|
-
# ],
|
1480
|
-
# embed_host_domains: ["EmbedHostDomain"],
|
1481
|
-
# streaming_experience_settings: {
|
1482
|
-
# preferred_protocol: "TCP", # accepts TCP, UDP
|
1483
|
-
# },
|
1484
|
-
# }
|
1485
|
-
#
|
1486
1256
|
# @!attribute [rw] name
|
1487
1257
|
# The name of the stack.
|
1488
1258
|
# @return [String]
|
@@ -1591,18 +1361,6 @@ module Aws::AppStream
|
|
1591
1361
|
include Aws::Structure
|
1592
1362
|
end
|
1593
1363
|
|
1594
|
-
# @note When making an API call, you may pass CreateStreamingURLRequest
|
1595
|
-
# data as a hash:
|
1596
|
-
#
|
1597
|
-
# {
|
1598
|
-
# stack_name: "String", # required
|
1599
|
-
# fleet_name: "String", # required
|
1600
|
-
# user_id: "StreamingUrlUserId", # required
|
1601
|
-
# application_id: "String",
|
1602
|
-
# validity: 1,
|
1603
|
-
# session_context: "String",
|
1604
|
-
# }
|
1605
|
-
#
|
1606
1364
|
# @!attribute [rw] stack_name
|
1607
1365
|
# The name of the stack.
|
1608
1366
|
# @return [String]
|
@@ -1668,20 +1426,6 @@ module Aws::AppStream
|
|
1668
1426
|
include Aws::Structure
|
1669
1427
|
end
|
1670
1428
|
|
1671
|
-
# @note When making an API call, you may pass CreateUpdatedImageRequest
|
1672
|
-
# data as a hash:
|
1673
|
-
#
|
1674
|
-
# {
|
1675
|
-
# existing_image_name: "Name", # required
|
1676
|
-
# new_image_name: "Name", # required
|
1677
|
-
# new_image_description: "Description",
|
1678
|
-
# new_image_display_name: "DisplayName",
|
1679
|
-
# new_image_tags: {
|
1680
|
-
# "TagKey" => "TagValue",
|
1681
|
-
# },
|
1682
|
-
# dry_run: false,
|
1683
|
-
# }
|
1684
|
-
#
|
1685
1429
|
# @!attribute [rw] existing_image_name
|
1686
1430
|
# The name of the image to update.
|
1687
1431
|
# @return [String]
|
@@ -1790,17 +1534,6 @@ module Aws::AppStream
|
|
1790
1534
|
include Aws::Structure
|
1791
1535
|
end
|
1792
1536
|
|
1793
|
-
# @note When making an API call, you may pass CreateUserRequest
|
1794
|
-
# data as a hash:
|
1795
|
-
#
|
1796
|
-
# {
|
1797
|
-
# user_name: "Username", # required
|
1798
|
-
# message_action: "SUPPRESS", # accepts SUPPRESS, RESEND
|
1799
|
-
# first_name: "UserAttributeValue",
|
1800
|
-
# last_name: "UserAttributeValue",
|
1801
|
-
# authentication_type: "API", # required, accepts API, SAML, USERPOOL
|
1802
|
-
# }
|
1803
|
-
#
|
1804
1537
|
# @!attribute [rw] user_name
|
1805
1538
|
# The email address of the user.
|
1806
1539
|
#
|
@@ -1854,13 +1587,6 @@ module Aws::AppStream
|
|
1854
1587
|
#
|
1855
1588
|
class CreateUserResult < Aws::EmptyStructure; end
|
1856
1589
|
|
1857
|
-
# @note When making an API call, you may pass DeleteAppBlockRequest
|
1858
|
-
# data as a hash:
|
1859
|
-
#
|
1860
|
-
# {
|
1861
|
-
# name: "Name", # required
|
1862
|
-
# }
|
1863
|
-
#
|
1864
1590
|
# @!attribute [rw] name
|
1865
1591
|
# The name of the app block.
|
1866
1592
|
# @return [String]
|
@@ -1877,13 +1603,6 @@ module Aws::AppStream
|
|
1877
1603
|
#
|
1878
1604
|
class DeleteAppBlockResult < Aws::EmptyStructure; end
|
1879
1605
|
|
1880
|
-
# @note When making an API call, you may pass DeleteApplicationRequest
|
1881
|
-
# data as a hash:
|
1882
|
-
#
|
1883
|
-
# {
|
1884
|
-
# name: "Name", # required
|
1885
|
-
# }
|
1886
|
-
#
|
1887
1606
|
# @!attribute [rw] name
|
1888
1607
|
# The name of the application.
|
1889
1608
|
# @return [String]
|
@@ -1900,13 +1619,6 @@ module Aws::AppStream
|
|
1900
1619
|
#
|
1901
1620
|
class DeleteApplicationResult < Aws::EmptyStructure; end
|
1902
1621
|
|
1903
|
-
# @note When making an API call, you may pass DeleteDirectoryConfigRequest
|
1904
|
-
# data as a hash:
|
1905
|
-
#
|
1906
|
-
# {
|
1907
|
-
# directory_name: "DirectoryName", # required
|
1908
|
-
# }
|
1909
|
-
#
|
1910
1622
|
# @!attribute [rw] directory_name
|
1911
1623
|
# The name of the directory configuration.
|
1912
1624
|
# @return [String]
|
@@ -1923,14 +1635,6 @@ module Aws::AppStream
|
|
1923
1635
|
#
|
1924
1636
|
class DeleteDirectoryConfigResult < Aws::EmptyStructure; end
|
1925
1637
|
|
1926
|
-
# @note When making an API call, you may pass DeleteEntitlementRequest
|
1927
|
-
# data as a hash:
|
1928
|
-
#
|
1929
|
-
# {
|
1930
|
-
# name: "Name", # required
|
1931
|
-
# stack_name: "Name", # required
|
1932
|
-
# }
|
1933
|
-
#
|
1934
1638
|
# @!attribute [rw] name
|
1935
1639
|
# The name of the entitlement.
|
1936
1640
|
# @return [String]
|
@@ -1952,13 +1656,6 @@ module Aws::AppStream
|
|
1952
1656
|
#
|
1953
1657
|
class DeleteEntitlementResult < Aws::EmptyStructure; end
|
1954
1658
|
|
1955
|
-
# @note When making an API call, you may pass DeleteFleetRequest
|
1956
|
-
# data as a hash:
|
1957
|
-
#
|
1958
|
-
# {
|
1959
|
-
# name: "String", # required
|
1960
|
-
# }
|
1961
|
-
#
|
1962
1659
|
# @!attribute [rw] name
|
1963
1660
|
# The name of the fleet.
|
1964
1661
|
# @return [String]
|
@@ -1975,13 +1672,6 @@ module Aws::AppStream
|
|
1975
1672
|
#
|
1976
1673
|
class DeleteFleetResult < Aws::EmptyStructure; end
|
1977
1674
|
|
1978
|
-
# @note When making an API call, you may pass DeleteImageBuilderRequest
|
1979
|
-
# data as a hash:
|
1980
|
-
#
|
1981
|
-
# {
|
1982
|
-
# name: "Name", # required
|
1983
|
-
# }
|
1984
|
-
#
|
1985
1675
|
# @!attribute [rw] name
|
1986
1676
|
# The name of the image builder.
|
1987
1677
|
# @return [String]
|
@@ -2006,14 +1696,6 @@ module Aws::AppStream
|
|
2006
1696
|
include Aws::Structure
|
2007
1697
|
end
|
2008
1698
|
|
2009
|
-
# @note When making an API call, you may pass DeleteImagePermissionsRequest
|
2010
|
-
# data as a hash:
|
2011
|
-
#
|
2012
|
-
# {
|
2013
|
-
# name: "Name", # required
|
2014
|
-
# shared_account_id: "AwsAccountId", # required
|
2015
|
-
# }
|
2016
|
-
#
|
2017
1699
|
# @!attribute [rw] name
|
2018
1700
|
# The name of the private image.
|
2019
1701
|
# @return [String]
|
@@ -2036,13 +1718,6 @@ module Aws::AppStream
|
|
2036
1718
|
#
|
2037
1719
|
class DeleteImagePermissionsResult < Aws::EmptyStructure; end
|
2038
1720
|
|
2039
|
-
# @note When making an API call, you may pass DeleteImageRequest
|
2040
|
-
# data as a hash:
|
2041
|
-
#
|
2042
|
-
# {
|
2043
|
-
# name: "Name", # required
|
2044
|
-
# }
|
2045
|
-
#
|
2046
1721
|
# @!attribute [rw] name
|
2047
1722
|
# The name of the image.
|
2048
1723
|
# @return [String]
|
@@ -2067,13 +1742,6 @@ module Aws::AppStream
|
|
2067
1742
|
include Aws::Structure
|
2068
1743
|
end
|
2069
1744
|
|
2070
|
-
# @note When making an API call, you may pass DeleteStackRequest
|
2071
|
-
# data as a hash:
|
2072
|
-
#
|
2073
|
-
# {
|
2074
|
-
# name: "String", # required
|
2075
|
-
# }
|
2076
|
-
#
|
2077
1745
|
# @!attribute [rw] name
|
2078
1746
|
# The name of the stack.
|
2079
1747
|
# @return [String]
|
@@ -2100,14 +1768,6 @@ module Aws::AppStream
|
|
2100
1768
|
#
|
2101
1769
|
class DeleteUsageReportSubscriptionResult < Aws::EmptyStructure; end
|
2102
1770
|
|
2103
|
-
# @note When making an API call, you may pass DeleteUserRequest
|
2104
|
-
# data as a hash:
|
2105
|
-
#
|
2106
|
-
# {
|
2107
|
-
# user_name: "Username", # required
|
2108
|
-
# authentication_type: "API", # required, accepts API, SAML, USERPOOL
|
2109
|
-
# }
|
2110
|
-
#
|
2111
1771
|
# @!attribute [rw] user_name
|
2112
1772
|
# The email address of the user.
|
2113
1773
|
#
|
@@ -2133,15 +1793,6 @@ module Aws::AppStream
|
|
2133
1793
|
#
|
2134
1794
|
class DeleteUserResult < Aws::EmptyStructure; end
|
2135
1795
|
|
2136
|
-
# @note When making an API call, you may pass DescribeAppBlocksRequest
|
2137
|
-
# data as a hash:
|
2138
|
-
#
|
2139
|
-
# {
|
2140
|
-
# arns: ["Arn"],
|
2141
|
-
# next_token: "String",
|
2142
|
-
# max_results: 1,
|
2143
|
-
# }
|
2144
|
-
#
|
2145
1796
|
# @!attribute [rw] arns
|
2146
1797
|
# The ARNs of the app blocks.
|
2147
1798
|
# @return [Array<String>]
|
@@ -2183,16 +1834,6 @@ module Aws::AppStream
|
|
2183
1834
|
include Aws::Structure
|
2184
1835
|
end
|
2185
1836
|
|
2186
|
-
# @note When making an API call, you may pass DescribeApplicationFleetAssociationsRequest
|
2187
|
-
# data as a hash:
|
2188
|
-
#
|
2189
|
-
# {
|
2190
|
-
# fleet_name: "Name",
|
2191
|
-
# application_arn: "Arn",
|
2192
|
-
# max_results: 1,
|
2193
|
-
# next_token: "String",
|
2194
|
-
# }
|
2195
|
-
#
|
2196
1837
|
# @!attribute [rw] fleet_name
|
2197
1838
|
# The name of the fleet.
|
2198
1839
|
# @return [String]
|
@@ -2239,15 +1880,6 @@ module Aws::AppStream
|
|
2239
1880
|
include Aws::Structure
|
2240
1881
|
end
|
2241
1882
|
|
2242
|
-
# @note When making an API call, you may pass DescribeApplicationsRequest
|
2243
|
-
# data as a hash:
|
2244
|
-
#
|
2245
|
-
# {
|
2246
|
-
# arns: ["Arn"],
|
2247
|
-
# next_token: "String",
|
2248
|
-
# max_results: 1,
|
2249
|
-
# }
|
2250
|
-
#
|
2251
1883
|
# @!attribute [rw] arns
|
2252
1884
|
# The ARNs for the applications.
|
2253
1885
|
# @return [Array<String>]
|
@@ -2289,15 +1921,6 @@ module Aws::AppStream
|
|
2289
1921
|
include Aws::Structure
|
2290
1922
|
end
|
2291
1923
|
|
2292
|
-
# @note When making an API call, you may pass DescribeDirectoryConfigsRequest
|
2293
|
-
# data as a hash:
|
2294
|
-
#
|
2295
|
-
# {
|
2296
|
-
# directory_names: ["DirectoryName"],
|
2297
|
-
# max_results: 1,
|
2298
|
-
# next_token: "String",
|
2299
|
-
# }
|
2300
|
-
#
|
2301
1924
|
# @!attribute [rw] directory_names
|
2302
1925
|
# The directory names.
|
2303
1926
|
# @return [Array<String>]
|
@@ -2341,16 +1964,6 @@ module Aws::AppStream
|
|
2341
1964
|
include Aws::Structure
|
2342
1965
|
end
|
2343
1966
|
|
2344
|
-
# @note When making an API call, you may pass DescribeEntitlementsRequest
|
2345
|
-
# data as a hash:
|
2346
|
-
#
|
2347
|
-
# {
|
2348
|
-
# name: "Name",
|
2349
|
-
# stack_name: "Name", # required
|
2350
|
-
# next_token: "String",
|
2351
|
-
# max_results: 1,
|
2352
|
-
# }
|
2353
|
-
#
|
2354
1967
|
# @!attribute [rw] name
|
2355
1968
|
# The name of the entitlement.
|
2356
1969
|
# @return [String]
|
@@ -2397,14 +2010,6 @@ module Aws::AppStream
|
|
2397
2010
|
include Aws::Structure
|
2398
2011
|
end
|
2399
2012
|
|
2400
|
-
# @note When making an API call, you may pass DescribeFleetsRequest
|
2401
|
-
# data as a hash:
|
2402
|
-
#
|
2403
|
-
# {
|
2404
|
-
# names: ["String"],
|
2405
|
-
# next_token: "String",
|
2406
|
-
# }
|
2407
|
-
#
|
2408
2013
|
# @!attribute [rw] names
|
2409
2014
|
# The names of the fleets to describe.
|
2410
2015
|
# @return [Array<String>]
|
@@ -2441,15 +2046,6 @@ module Aws::AppStream
|
|
2441
2046
|
include Aws::Structure
|
2442
2047
|
end
|
2443
2048
|
|
2444
|
-
# @note When making an API call, you may pass DescribeImageBuildersRequest
|
2445
|
-
# data as a hash:
|
2446
|
-
#
|
2447
|
-
# {
|
2448
|
-
# names: ["String"],
|
2449
|
-
# max_results: 1,
|
2450
|
-
# next_token: "String",
|
2451
|
-
# }
|
2452
|
-
#
|
2453
2049
|
# @!attribute [rw] names
|
2454
2050
|
# The names of the image builders to describe.
|
2455
2051
|
# @return [Array<String>]
|
@@ -2491,16 +2087,6 @@ module Aws::AppStream
|
|
2491
2087
|
include Aws::Structure
|
2492
2088
|
end
|
2493
2089
|
|
2494
|
-
# @note When making an API call, you may pass DescribeImagePermissionsRequest
|
2495
|
-
# data as a hash:
|
2496
|
-
#
|
2497
|
-
# {
|
2498
|
-
# name: "Name", # required
|
2499
|
-
# max_results: 1,
|
2500
|
-
# shared_aws_account_ids: ["AwsAccountId"],
|
2501
|
-
# next_token: "String",
|
2502
|
-
# }
|
2503
|
-
#
|
2504
2090
|
# @!attribute [rw] name
|
2505
2091
|
# The name of the private image for which to describe permissions. The
|
2506
2092
|
# image must be one that you own.
|
@@ -2554,17 +2140,6 @@ module Aws::AppStream
|
|
2554
2140
|
include Aws::Structure
|
2555
2141
|
end
|
2556
2142
|
|
2557
|
-
# @note When making an API call, you may pass DescribeImagesRequest
|
2558
|
-
# data as a hash:
|
2559
|
-
#
|
2560
|
-
# {
|
2561
|
-
# names: ["String"],
|
2562
|
-
# arns: ["Arn"],
|
2563
|
-
# type: "PUBLIC", # accepts PUBLIC, PRIVATE, SHARED
|
2564
|
-
# next_token: "String",
|
2565
|
-
# max_results: 1,
|
2566
|
-
# }
|
2567
|
-
#
|
2568
2143
|
# @!attribute [rw] names
|
2569
2144
|
# The names of the public or private images to describe.
|
2570
2145
|
# @return [Array<String>]
|
@@ -2616,18 +2191,6 @@ module Aws::AppStream
|
|
2616
2191
|
include Aws::Structure
|
2617
2192
|
end
|
2618
2193
|
|
2619
|
-
# @note When making an API call, you may pass DescribeSessionsRequest
|
2620
|
-
# data as a hash:
|
2621
|
-
#
|
2622
|
-
# {
|
2623
|
-
# stack_name: "String", # required
|
2624
|
-
# fleet_name: "String", # required
|
2625
|
-
# user_id: "UserId",
|
2626
|
-
# next_token: "String",
|
2627
|
-
# limit: 1,
|
2628
|
-
# authentication_type: "API", # accepts API, SAML, USERPOOL
|
2629
|
-
# }
|
2630
|
-
#
|
2631
2194
|
# @!attribute [rw] stack_name
|
2632
2195
|
# The name of the stack. This value is case-sensitive.
|
2633
2196
|
# @return [String]
|
@@ -2688,14 +2251,6 @@ module Aws::AppStream
|
|
2688
2251
|
include Aws::Structure
|
2689
2252
|
end
|
2690
2253
|
|
2691
|
-
# @note When making an API call, you may pass DescribeStacksRequest
|
2692
|
-
# data as a hash:
|
2693
|
-
#
|
2694
|
-
# {
|
2695
|
-
# names: ["String"],
|
2696
|
-
# next_token: "String",
|
2697
|
-
# }
|
2698
|
-
#
|
2699
2254
|
# @!attribute [rw] names
|
2700
2255
|
# The names of the stacks to describe.
|
2701
2256
|
# @return [Array<String>]
|
@@ -2732,14 +2287,6 @@ module Aws::AppStream
|
|
2732
2287
|
include Aws::Structure
|
2733
2288
|
end
|
2734
2289
|
|
2735
|
-
# @note When making an API call, you may pass DescribeUsageReportSubscriptionsRequest
|
2736
|
-
# data as a hash:
|
2737
|
-
#
|
2738
|
-
# {
|
2739
|
-
# max_results: 1,
|
2740
|
-
# next_token: "String",
|
2741
|
-
# }
|
2742
|
-
#
|
2743
2290
|
# @!attribute [rw] max_results
|
2744
2291
|
# The maximum size of each page of results.
|
2745
2292
|
# @return [Integer]
|
@@ -2776,17 +2323,6 @@ module Aws::AppStream
|
|
2776
2323
|
include Aws::Structure
|
2777
2324
|
end
|
2778
2325
|
|
2779
|
-
# @note When making an API call, you may pass DescribeUserStackAssociationsRequest
|
2780
|
-
# data as a hash:
|
2781
|
-
#
|
2782
|
-
# {
|
2783
|
-
# stack_name: "String",
|
2784
|
-
# user_name: "Username",
|
2785
|
-
# authentication_type: "API", # accepts API, SAML, USERPOOL
|
2786
|
-
# max_results: 1,
|
2787
|
-
# next_token: "String",
|
2788
|
-
# }
|
2789
|
-
#
|
2790
2326
|
# @!attribute [rw] stack_name
|
2791
2327
|
# The name of the stack that is associated with the user.
|
2792
2328
|
# @return [String]
|
@@ -2843,15 +2379,6 @@ module Aws::AppStream
|
|
2843
2379
|
include Aws::Structure
|
2844
2380
|
end
|
2845
2381
|
|
2846
|
-
# @note When making an API call, you may pass DescribeUsersRequest
|
2847
|
-
# data as a hash:
|
2848
|
-
#
|
2849
|
-
# {
|
2850
|
-
# authentication_type: "API", # required, accepts API, SAML, USERPOOL
|
2851
|
-
# max_results: 1,
|
2852
|
-
# next_token: "String",
|
2853
|
-
# }
|
2854
|
-
#
|
2855
2382
|
# @!attribute [rw] authentication_type
|
2856
2383
|
# The authentication type for the users in the user pool to describe.
|
2857
2384
|
# You must specify USERPOOL.
|
@@ -2916,25 +2443,31 @@ module Aws::AppStream
|
|
2916
2443
|
# The time the directory configuration was created.
|
2917
2444
|
# @return [Time]
|
2918
2445
|
#
|
2446
|
+
# @!attribute [rw] certificate_based_auth_properties
|
2447
|
+
# The certificate-based authentication properties used to authenticate
|
2448
|
+
# SAML 2.0 Identity Provider (IdP) user identities to Active Directory
|
2449
|
+
# domain-joined streaming instances. Fallback is turned on by default
|
2450
|
+
# when certificate-based authentication is **Enabled** . Fallback
|
2451
|
+
# allows users to log in using their AD domain password if
|
2452
|
+
# certificate-based authentication is unsuccessful, or to unlock a
|
2453
|
+
# desktop lock screen. **Enabled\_no\_directory\_login\_fallback**
|
2454
|
+
# enables certificate-based authentication, but does not allow users
|
2455
|
+
# to log in using their AD domain password. Users will be disconnected
|
2456
|
+
# to re-authenticate using certificates.
|
2457
|
+
# @return [Types::CertificateBasedAuthProperties]
|
2458
|
+
#
|
2919
2459
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DirectoryConfig AWS API Documentation
|
2920
2460
|
#
|
2921
2461
|
class DirectoryConfig < Struct.new(
|
2922
2462
|
:directory_name,
|
2923
2463
|
:organizational_unit_distinguished_names,
|
2924
2464
|
:service_account_credentials,
|
2925
|
-
:created_time
|
2465
|
+
:created_time,
|
2466
|
+
:certificate_based_auth_properties)
|
2926
2467
|
SENSITIVE = []
|
2927
2468
|
include Aws::Structure
|
2928
2469
|
end
|
2929
2470
|
|
2930
|
-
# @note When making an API call, you may pass DisableUserRequest
|
2931
|
-
# data as a hash:
|
2932
|
-
#
|
2933
|
-
# {
|
2934
|
-
# user_name: "Username", # required
|
2935
|
-
# authentication_type: "API", # required, accepts API, SAML, USERPOOL
|
2936
|
-
# }
|
2937
|
-
#
|
2938
2471
|
# @!attribute [rw] user_name
|
2939
2472
|
# The email address of the user.
|
2940
2473
|
#
|
@@ -2960,14 +2493,6 @@ module Aws::AppStream
|
|
2960
2493
|
#
|
2961
2494
|
class DisableUserResult < Aws::EmptyStructure; end
|
2962
2495
|
|
2963
|
-
# @note When making an API call, you may pass DisassociateApplicationFleetRequest
|
2964
|
-
# data as a hash:
|
2965
|
-
#
|
2966
|
-
# {
|
2967
|
-
# fleet_name: "Name", # required
|
2968
|
-
# application_arn: "Arn", # required
|
2969
|
-
# }
|
2970
|
-
#
|
2971
2496
|
# @!attribute [rw] fleet_name
|
2972
2497
|
# The name of the fleet.
|
2973
2498
|
# @return [String]
|
@@ -2989,15 +2514,6 @@ module Aws::AppStream
|
|
2989
2514
|
#
|
2990
2515
|
class DisassociateApplicationFleetResult < Aws::EmptyStructure; end
|
2991
2516
|
|
2992
|
-
# @note When making an API call, you may pass DisassociateApplicationFromEntitlementRequest
|
2993
|
-
# data as a hash:
|
2994
|
-
#
|
2995
|
-
# {
|
2996
|
-
# stack_name: "Name", # required
|
2997
|
-
# entitlement_name: "Name", # required
|
2998
|
-
# application_identifier: "String", # required
|
2999
|
-
# }
|
3000
|
-
#
|
3001
2517
|
# @!attribute [rw] stack_name
|
3002
2518
|
# The name of the stack with which the entitlement is associated.
|
3003
2519
|
# @return [String]
|
@@ -3024,14 +2540,6 @@ module Aws::AppStream
|
|
3024
2540
|
#
|
3025
2541
|
class DisassociateApplicationFromEntitlementResult < Aws::EmptyStructure; end
|
3026
2542
|
|
3027
|
-
# @note When making an API call, you may pass DisassociateFleetRequest
|
3028
|
-
# data as a hash:
|
3029
|
-
#
|
3030
|
-
# {
|
3031
|
-
# fleet_name: "String", # required
|
3032
|
-
# stack_name: "String", # required
|
3033
|
-
# }
|
3034
|
-
#
|
3035
2543
|
# @!attribute [rw] fleet_name
|
3036
2544
|
# The name of the fleet.
|
3037
2545
|
# @return [String]
|
@@ -3056,14 +2564,6 @@ module Aws::AppStream
|
|
3056
2564
|
# Describes the configuration information required to join fleets and
|
3057
2565
|
# image builders to Microsoft Active Directory domains.
|
3058
2566
|
#
|
3059
|
-
# @note When making an API call, you may pass DomainJoinInfo
|
3060
|
-
# data as a hash:
|
3061
|
-
#
|
3062
|
-
# {
|
3063
|
-
# directory_name: "DirectoryName",
|
3064
|
-
# organizational_unit_distinguished_name: "OrganizationalUnitDistinguishedName",
|
3065
|
-
# }
|
3066
|
-
#
|
3067
2567
|
# @!attribute [rw] directory_name
|
3068
2568
|
# The fully qualified name of the directory (for example,
|
3069
2569
|
# corp.example.com).
|
@@ -3083,14 +2583,6 @@ module Aws::AppStream
|
|
3083
2583
|
include Aws::Structure
|
3084
2584
|
end
|
3085
2585
|
|
3086
|
-
# @note When making an API call, you may pass EnableUserRequest
|
3087
|
-
# data as a hash:
|
3088
|
-
#
|
3089
|
-
# {
|
3090
|
-
# user_name: "Username", # required
|
3091
|
-
# authentication_type: "API", # required, accepts API, SAML, USERPOOL
|
3092
|
-
# }
|
3093
|
-
#
|
3094
2586
|
# @!attribute [rw] user_name
|
3095
2587
|
# The email address of the user.
|
3096
2588
|
#
|
@@ -3202,14 +2694,6 @@ module Aws::AppStream
|
|
3202
2694
|
# work by matching a supported SAML 2.0 attribute name to a value when a
|
3203
2695
|
# user identity federates to an Amazon AppStream 2.0 SAML application.
|
3204
2696
|
#
|
3205
|
-
# @note When making an API call, you may pass EntitlementAttribute
|
3206
|
-
# data as a hash:
|
3207
|
-
#
|
3208
|
-
# {
|
3209
|
-
# name: "String", # required
|
3210
|
-
# value: "String", # required
|
3211
|
-
# }
|
3212
|
-
#
|
3213
2697
|
# @!attribute [rw] name
|
3214
2698
|
# A supported AWS IAM SAML `PrincipalTag` attribute that is matched to
|
3215
2699
|
# the associated value when a user identity federates into an Amazon
|
@@ -3261,13 +2745,6 @@ module Aws::AppStream
|
|
3261
2745
|
include Aws::Structure
|
3262
2746
|
end
|
3263
2747
|
|
3264
|
-
# @note When making an API call, you may pass ExpireSessionRequest
|
3265
|
-
# data as a hash:
|
3266
|
-
#
|
3267
|
-
# {
|
3268
|
-
# session_id: "String", # required
|
3269
|
-
# }
|
3270
|
-
#
|
3271
2748
|
# @!attribute [rw] session_id
|
3272
2749
|
# The identifier of the streaming session.
|
3273
2750
|
# @return [String]
|
@@ -3880,14 +3357,6 @@ module Aws::AppStream
|
|
3880
3357
|
|
3881
3358
|
# Describes the permissions for an image.
|
3882
3359
|
#
|
3883
|
-
# @note When making an API call, you may pass ImagePermissions
|
3884
|
-
# data as a hash:
|
3885
|
-
#
|
3886
|
-
# {
|
3887
|
-
# allow_fleet: false,
|
3888
|
-
# allow_image_builder: false,
|
3889
|
-
# }
|
3890
|
-
#
|
3891
3360
|
# @!attribute [rw] allow_fleet
|
3892
3361
|
# Indicates whether the image can be used for a fleet.
|
3893
3362
|
# @return [Boolean]
|
@@ -4018,14 +3487,6 @@ module Aws::AppStream
|
|
4018
3487
|
include Aws::Structure
|
4019
3488
|
end
|
4020
3489
|
|
4021
|
-
# @note When making an API call, you may pass ListAssociatedFleetsRequest
|
4022
|
-
# data as a hash:
|
4023
|
-
#
|
4024
|
-
# {
|
4025
|
-
# stack_name: "String", # required
|
4026
|
-
# next_token: "String",
|
4027
|
-
# }
|
4028
|
-
#
|
4029
3490
|
# @!attribute [rw] stack_name
|
4030
3491
|
# The name of the stack.
|
4031
3492
|
# @return [String]
|
@@ -4062,14 +3523,6 @@ module Aws::AppStream
|
|
4062
3523
|
include Aws::Structure
|
4063
3524
|
end
|
4064
3525
|
|
4065
|
-
# @note When making an API call, you may pass ListAssociatedStacksRequest
|
4066
|
-
# data as a hash:
|
4067
|
-
#
|
4068
|
-
# {
|
4069
|
-
# fleet_name: "String", # required
|
4070
|
-
# next_token: "String",
|
4071
|
-
# }
|
4072
|
-
#
|
4073
3526
|
# @!attribute [rw] fleet_name
|
4074
3527
|
# The name of the fleet.
|
4075
3528
|
# @return [String]
|
@@ -4106,16 +3559,6 @@ module Aws::AppStream
|
|
4106
3559
|
include Aws::Structure
|
4107
3560
|
end
|
4108
3561
|
|
4109
|
-
# @note When making an API call, you may pass ListEntitledApplicationsRequest
|
4110
|
-
# data as a hash:
|
4111
|
-
#
|
4112
|
-
# {
|
4113
|
-
# stack_name: "Name", # required
|
4114
|
-
# entitlement_name: "Name", # required
|
4115
|
-
# next_token: "String",
|
4116
|
-
# max_results: 1,
|
4117
|
-
# }
|
4118
|
-
#
|
4119
3562
|
# @!attribute [rw] stack_name
|
4120
3563
|
# The name of the stack with which the entitlement is associated.
|
4121
3564
|
# @return [String]
|
@@ -4162,13 +3605,6 @@ module Aws::AppStream
|
|
4162
3605
|
include Aws::Structure
|
4163
3606
|
end
|
4164
3607
|
|
4165
|
-
# @note When making an API call, you may pass ListTagsForResourceRequest
|
4166
|
-
# data as a hash:
|
4167
|
-
#
|
4168
|
-
# {
|
4169
|
-
# resource_arn: "Arn", # required
|
4170
|
-
# }
|
4171
|
-
#
|
4172
3608
|
# @!attribute [rw] resource_arn
|
4173
3609
|
# The Amazon Resource Name (ARN) of the resource.
|
4174
3610
|
# @return [String]
|
@@ -4327,14 +3763,6 @@ module Aws::AppStream
|
|
4327
3763
|
|
4328
3764
|
# Describes the S3 location.
|
4329
3765
|
#
|
4330
|
-
# @note When making an API call, you may pass S3Location
|
4331
|
-
# data as a hash:
|
4332
|
-
#
|
4333
|
-
# {
|
4334
|
-
# s3_bucket: "S3Bucket", # required
|
4335
|
-
# s3_key: "S3Key", # required
|
4336
|
-
# }
|
4337
|
-
#
|
4338
3766
|
# @!attribute [rw] s3_bucket
|
4339
3767
|
# The S3 bucket of the S3 object.
|
4340
3768
|
# @return [String]
|
@@ -4354,19 +3782,6 @@ module Aws::AppStream
|
|
4354
3782
|
|
4355
3783
|
# Describes the details of the script.
|
4356
3784
|
#
|
4357
|
-
# @note When making an API call, you may pass ScriptDetails
|
4358
|
-
# data as a hash:
|
4359
|
-
#
|
4360
|
-
# {
|
4361
|
-
# script_s3_location: { # required
|
4362
|
-
# s3_bucket: "S3Bucket", # required
|
4363
|
-
# s3_key: "S3Key", # required
|
4364
|
-
# },
|
4365
|
-
# executable_path: "String", # required
|
4366
|
-
# executable_parameters: "String",
|
4367
|
-
# timeout_in_seconds: 1, # required
|
4368
|
-
# }
|
4369
|
-
#
|
4370
3785
|
# @!attribute [rw] script_s3_location
|
4371
3786
|
# The S3 object location for the script.
|
4372
3787
|
# @return [Types::S3Location]
|
@@ -4397,14 +3812,6 @@ module Aws::AppStream
|
|
4397
3812
|
# Describes the credentials for the service account used by the fleet or
|
4398
3813
|
# image builder to connect to the directory.
|
4399
3814
|
#
|
4400
|
-
# @note When making an API call, you may pass ServiceAccountCredentials
|
4401
|
-
# data as a hash:
|
4402
|
-
#
|
4403
|
-
# {
|
4404
|
-
# account_name: "AccountName", # required
|
4405
|
-
# account_password: "AccountPassword", # required
|
4406
|
-
# }
|
4407
|
-
#
|
4408
3815
|
# @!attribute [rw] account_name
|
4409
3816
|
# The user name of the account. This account must have the following
|
4410
3817
|
# privileges: create computer objects, join computers to the domain,
|
@@ -4622,13 +4029,6 @@ module Aws::AppStream
|
|
4622
4029
|
include Aws::Structure
|
4623
4030
|
end
|
4624
4031
|
|
4625
|
-
# @note When making an API call, you may pass StartFleetRequest
|
4626
|
-
# data as a hash:
|
4627
|
-
#
|
4628
|
-
# {
|
4629
|
-
# name: "String", # required
|
4630
|
-
# }
|
4631
|
-
#
|
4632
4032
|
# @!attribute [rw] name
|
4633
4033
|
# The name of the fleet.
|
4634
4034
|
# @return [String]
|
@@ -4645,14 +4045,6 @@ module Aws::AppStream
|
|
4645
4045
|
#
|
4646
4046
|
class StartFleetResult < Aws::EmptyStructure; end
|
4647
4047
|
|
4648
|
-
# @note When making an API call, you may pass StartImageBuilderRequest
|
4649
|
-
# data as a hash:
|
4650
|
-
#
|
4651
|
-
# {
|
4652
|
-
# name: "String", # required
|
4653
|
-
# appstream_agent_version: "AppstreamAgentVersion",
|
4654
|
-
# }
|
4655
|
-
#
|
4656
4048
|
# @!attribute [rw] name
|
4657
4049
|
# The name of the image builder.
|
4658
4050
|
# @return [String]
|
@@ -4684,13 +4076,6 @@ module Aws::AppStream
|
|
4684
4076
|
include Aws::Structure
|
4685
4077
|
end
|
4686
4078
|
|
4687
|
-
# @note When making an API call, you may pass StopFleetRequest
|
4688
|
-
# data as a hash:
|
4689
|
-
#
|
4690
|
-
# {
|
4691
|
-
# name: "String", # required
|
4692
|
-
# }
|
4693
|
-
#
|
4694
4079
|
# @!attribute [rw] name
|
4695
4080
|
# The name of the fleet.
|
4696
4081
|
# @return [String]
|
@@ -4707,13 +4092,6 @@ module Aws::AppStream
|
|
4707
4092
|
#
|
4708
4093
|
class StopFleetResult < Aws::EmptyStructure; end
|
4709
4094
|
|
4710
|
-
# @note When making an API call, you may pass StopImageBuilderRequest
|
4711
|
-
# data as a hash:
|
4712
|
-
#
|
4713
|
-
# {
|
4714
|
-
# name: "String", # required
|
4715
|
-
# }
|
4716
|
-
#
|
4717
4095
|
# @!attribute [rw] name
|
4718
4096
|
# The name of the image builder.
|
4719
4097
|
# @return [String]
|
@@ -4740,15 +4118,6 @@ module Aws::AppStream
|
|
4740
4118
|
|
4741
4119
|
# Describes a connector that enables persistent storage for users.
|
4742
4120
|
#
|
4743
|
-
# @note When making an API call, you may pass StorageConnector
|
4744
|
-
# data as a hash:
|
4745
|
-
#
|
4746
|
-
# {
|
4747
|
-
# connector_type: "HOMEFOLDERS", # required, accepts HOMEFOLDERS, GOOGLE_DRIVE, ONE_DRIVE
|
4748
|
-
# resource_identifier: "ResourceIdentifier",
|
4749
|
-
# domains: ["Domain"],
|
4750
|
-
# }
|
4751
|
-
#
|
4752
4121
|
# @!attribute [rw] connector_type
|
4753
4122
|
# The type of storage connector.
|
4754
4123
|
# @return [String]
|
@@ -4774,13 +4143,6 @@ module Aws::AppStream
|
|
4774
4143
|
# The streaming protocol you want your stack to prefer. This can be UDP
|
4775
4144
|
# or TCP. Currently, UDP is only supported in the Windows native client.
|
4776
4145
|
#
|
4777
|
-
# @note When making an API call, you may pass StreamingExperienceSettings
|
4778
|
-
# data as a hash:
|
4779
|
-
#
|
4780
|
-
# {
|
4781
|
-
# preferred_protocol: "TCP", # accepts TCP, UDP
|
4782
|
-
# }
|
4783
|
-
#
|
4784
4146
|
# @!attribute [rw] preferred_protocol
|
4785
4147
|
# The preferred protocol that you want to use while streaming your
|
4786
4148
|
# application.
|
@@ -4794,16 +4156,6 @@ module Aws::AppStream
|
|
4794
4156
|
include Aws::Structure
|
4795
4157
|
end
|
4796
4158
|
|
4797
|
-
# @note When making an API call, you may pass TagResourceRequest
|
4798
|
-
# data as a hash:
|
4799
|
-
#
|
4800
|
-
# {
|
4801
|
-
# resource_arn: "Arn", # required
|
4802
|
-
# tags: { # required
|
4803
|
-
# "TagKey" => "TagValue",
|
4804
|
-
# },
|
4805
|
-
# }
|
4806
|
-
#
|
4807
4159
|
# @!attribute [rw] resource_arn
|
4808
4160
|
# The Amazon Resource Name (ARN) of the resource.
|
4809
4161
|
# @return [String]
|
@@ -4834,14 +4186,6 @@ module Aws::AppStream
|
|
4834
4186
|
#
|
4835
4187
|
class TagResourceResponse < Aws::EmptyStructure; end
|
4836
4188
|
|
4837
|
-
# @note When making an API call, you may pass UntagResourceRequest
|
4838
|
-
# data as a hash:
|
4839
|
-
#
|
4840
|
-
# {
|
4841
|
-
# resource_arn: "Arn", # required
|
4842
|
-
# tag_keys: ["TagKey"], # required
|
4843
|
-
# }
|
4844
|
-
#
|
4845
4189
|
# @!attribute [rw] resource_arn
|
4846
4190
|
# The Amazon Resource Name (ARN) of the resource.
|
4847
4191
|
# @return [String]
|
@@ -4863,24 +4207,6 @@ module Aws::AppStream
|
|
4863
4207
|
#
|
4864
4208
|
class UntagResourceResponse < Aws::EmptyStructure; end
|
4865
4209
|
|
4866
|
-
# @note When making an API call, you may pass UpdateApplicationRequest
|
4867
|
-
# data as a hash:
|
4868
|
-
#
|
4869
|
-
# {
|
4870
|
-
# name: "Name", # required
|
4871
|
-
# display_name: "DisplayName",
|
4872
|
-
# description: "Description",
|
4873
|
-
# icon_s3_location: {
|
4874
|
-
# s3_bucket: "S3Bucket", # required
|
4875
|
-
# s3_key: "S3Key", # required
|
4876
|
-
# },
|
4877
|
-
# launch_path: "String",
|
4878
|
-
# working_directory: "String",
|
4879
|
-
# launch_parameters: "String",
|
4880
|
-
# app_block_arn: "Arn",
|
4881
|
-
# attributes_to_delete: ["LAUNCH_PARAMETERS"], # accepts LAUNCH_PARAMETERS, WORKING_DIRECTORY
|
4882
|
-
# }
|
4883
|
-
#
|
4884
4210
|
# @!attribute [rw] name
|
4885
4211
|
# The name of the application. This name is visible to users when
|
4886
4212
|
# display name is not specified.
|
@@ -4947,18 +4273,6 @@ module Aws::AppStream
|
|
4947
4273
|
include Aws::Structure
|
4948
4274
|
end
|
4949
4275
|
|
4950
|
-
# @note When making an API call, you may pass UpdateDirectoryConfigRequest
|
4951
|
-
# data as a hash:
|
4952
|
-
#
|
4953
|
-
# {
|
4954
|
-
# directory_name: "DirectoryName", # required
|
4955
|
-
# organizational_unit_distinguished_names: ["OrganizationalUnitDistinguishedName"],
|
4956
|
-
# service_account_credentials: {
|
4957
|
-
# account_name: "AccountName", # required
|
4958
|
-
# account_password: "AccountPassword", # required
|
4959
|
-
# },
|
4960
|
-
# }
|
4961
|
-
#
|
4962
4276
|
# @!attribute [rw] directory_name
|
4963
4277
|
# The name of the Directory Config object.
|
4964
4278
|
# @return [String]
|
@@ -4973,12 +4287,26 @@ module Aws::AppStream
|
|
4973
4287
|
# builder to connect to the directory.
|
4974
4288
|
# @return [Types::ServiceAccountCredentials]
|
4975
4289
|
#
|
4290
|
+
# @!attribute [rw] certificate_based_auth_properties
|
4291
|
+
# The certificate-based authentication properties used to authenticate
|
4292
|
+
# SAML 2.0 Identity Provider (IdP) user identities to Active Directory
|
4293
|
+
# domain-joined streaming instances. Fallback is turned on by default
|
4294
|
+
# when certificate-based authentication is **Enabled** . Fallback
|
4295
|
+
# allows users to log in using their AD domain password if
|
4296
|
+
# certificate-based authentication is unsuccessful, or to unlock a
|
4297
|
+
# desktop lock screen. **Enabled\_no\_directory\_login\_fallback**
|
4298
|
+
# enables certificate-based authentication, but does not allow users
|
4299
|
+
# to log in using their AD domain password. Users will be disconnected
|
4300
|
+
# to re-authenticate using certificates.
|
4301
|
+
# @return [Types::CertificateBasedAuthProperties]
|
4302
|
+
#
|
4976
4303
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/UpdateDirectoryConfigRequest AWS API Documentation
|
4977
4304
|
#
|
4978
4305
|
class UpdateDirectoryConfigRequest < Struct.new(
|
4979
4306
|
:directory_name,
|
4980
4307
|
:organizational_unit_distinguished_names,
|
4981
|
-
:service_account_credentials
|
4308
|
+
:service_account_credentials,
|
4309
|
+
:certificate_based_auth_properties)
|
4982
4310
|
SENSITIVE = []
|
4983
4311
|
include Aws::Structure
|
4984
4312
|
end
|
@@ -4995,22 +4323,6 @@ module Aws::AppStream
|
|
4995
4323
|
include Aws::Structure
|
4996
4324
|
end
|
4997
4325
|
|
4998
|
-
# @note When making an API call, you may pass UpdateEntitlementRequest
|
4999
|
-
# data as a hash:
|
5000
|
-
#
|
5001
|
-
# {
|
5002
|
-
# name: "Name", # required
|
5003
|
-
# stack_name: "Name", # required
|
5004
|
-
# description: "Description",
|
5005
|
-
# app_visibility: "ALL", # accepts ALL, ASSOCIATED
|
5006
|
-
# attributes: [
|
5007
|
-
# {
|
5008
|
-
# name: "String", # required
|
5009
|
-
# value: "String", # required
|
5010
|
-
# },
|
5011
|
-
# ],
|
5012
|
-
# }
|
5013
|
-
#
|
5014
4326
|
# @!attribute [rw] name
|
5015
4327
|
# The name of the entitlement.
|
5016
4328
|
# @return [String]
|
@@ -5055,44 +4367,6 @@ module Aws::AppStream
|
|
5055
4367
|
include Aws::Structure
|
5056
4368
|
end
|
5057
4369
|
|
5058
|
-
# @note When making an API call, you may pass UpdateFleetRequest
|
5059
|
-
# data as a hash:
|
5060
|
-
#
|
5061
|
-
# {
|
5062
|
-
# image_name: "String",
|
5063
|
-
# image_arn: "Arn",
|
5064
|
-
# name: "String",
|
5065
|
-
# instance_type: "String",
|
5066
|
-
# compute_capacity: {
|
5067
|
-
# desired_instances: 1, # required
|
5068
|
-
# },
|
5069
|
-
# vpc_config: {
|
5070
|
-
# subnet_ids: ["String"],
|
5071
|
-
# security_group_ids: ["String"],
|
5072
|
-
# },
|
5073
|
-
# max_user_duration_in_seconds: 1,
|
5074
|
-
# disconnect_timeout_in_seconds: 1,
|
5075
|
-
# delete_vpc_config: false,
|
5076
|
-
# description: "Description",
|
5077
|
-
# display_name: "DisplayName",
|
5078
|
-
# enable_default_internet_access: false,
|
5079
|
-
# domain_join_info: {
|
5080
|
-
# directory_name: "DirectoryName",
|
5081
|
-
# organizational_unit_distinguished_name: "OrganizationalUnitDistinguishedName",
|
5082
|
-
# },
|
5083
|
-
# idle_disconnect_timeout_in_seconds: 1,
|
5084
|
-
# attributes_to_delete: ["VPC_CONFIGURATION"], # accepts VPC_CONFIGURATION, VPC_CONFIGURATION_SECURITY_GROUP_IDS, DOMAIN_JOIN_INFO, IAM_ROLE_ARN, USB_DEVICE_FILTER_STRINGS, SESSION_SCRIPT_S3_LOCATION
|
5085
|
-
# iam_role_arn: "Arn",
|
5086
|
-
# stream_view: "APP", # accepts APP, DESKTOP
|
5087
|
-
# platform: "WINDOWS", # accepts WINDOWS, WINDOWS_SERVER_2016, WINDOWS_SERVER_2019, AMAZON_LINUX2
|
5088
|
-
# max_concurrent_sessions: 1,
|
5089
|
-
# usb_device_filter_strings: ["UsbDeviceFilterString"],
|
5090
|
-
# session_script_s3_location: {
|
5091
|
-
# s3_bucket: "S3Bucket", # required
|
5092
|
-
# s3_key: "S3Key", # required
|
5093
|
-
# },
|
5094
|
-
# }
|
5095
|
-
#
|
5096
4370
|
# @!attribute [rw] image_name
|
5097
4371
|
# The name of the image used to create the fleet.
|
5098
4372
|
# @return [String]
|
@@ -5115,6 +4389,10 @@ module Aws::AppStream
|
|
5115
4389
|
#
|
5116
4390
|
# * stream.standard.large
|
5117
4391
|
#
|
4392
|
+
# * stream.standard.xlarge
|
4393
|
+
#
|
4394
|
+
# * stream.standard.2xlarge
|
4395
|
+
#
|
5118
4396
|
# * stream.compute.large
|
5119
4397
|
#
|
5120
4398
|
# * stream.compute.xlarge
|
@@ -5180,6 +4458,12 @@ module Aws::AppStream
|
|
5180
4458
|
# * stream.standard.small
|
5181
4459
|
#
|
5182
4460
|
# * stream.standard.medium
|
4461
|
+
#
|
4462
|
+
# * stream.standard.large
|
4463
|
+
#
|
4464
|
+
# * stream.standard.xlarge
|
4465
|
+
#
|
4466
|
+
# * stream.standard.2xlarge
|
5183
4467
|
# @return [String]
|
5184
4468
|
#
|
5185
4469
|
# @!attribute [rw] compute_capacity
|
@@ -5358,18 +4642,6 @@ module Aws::AppStream
|
|
5358
4642
|
include Aws::Structure
|
5359
4643
|
end
|
5360
4644
|
|
5361
|
-
# @note When making an API call, you may pass UpdateImagePermissionsRequest
|
5362
|
-
# data as a hash:
|
5363
|
-
#
|
5364
|
-
# {
|
5365
|
-
# name: "Name", # required
|
5366
|
-
# shared_account_id: "AwsAccountId", # required
|
5367
|
-
# image_permissions: { # required
|
5368
|
-
# allow_fleet: false,
|
5369
|
-
# allow_image_builder: false,
|
5370
|
-
# },
|
5371
|
-
# }
|
5372
|
-
#
|
5373
4645
|
# @!attribute [rw] name
|
5374
4646
|
# The name of the private image.
|
5375
4647
|
# @return [String]
|
@@ -5397,46 +4669,6 @@ module Aws::AppStream
|
|
5397
4669
|
#
|
5398
4670
|
class UpdateImagePermissionsResult < Aws::EmptyStructure; end
|
5399
4671
|
|
5400
|
-
# @note When making an API call, you may pass UpdateStackRequest
|
5401
|
-
# data as a hash:
|
5402
|
-
#
|
5403
|
-
# {
|
5404
|
-
# display_name: "DisplayName",
|
5405
|
-
# description: "Description",
|
5406
|
-
# name: "String", # required
|
5407
|
-
# storage_connectors: [
|
5408
|
-
# {
|
5409
|
-
# connector_type: "HOMEFOLDERS", # required, accepts HOMEFOLDERS, GOOGLE_DRIVE, ONE_DRIVE
|
5410
|
-
# resource_identifier: "ResourceIdentifier",
|
5411
|
-
# domains: ["Domain"],
|
5412
|
-
# },
|
5413
|
-
# ],
|
5414
|
-
# delete_storage_connectors: false,
|
5415
|
-
# redirect_url: "RedirectURL",
|
5416
|
-
# feedback_url: "FeedbackURL",
|
5417
|
-
# attributes_to_delete: ["STORAGE_CONNECTORS"], # accepts 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
|
5418
|
-
# user_settings: [
|
5419
|
-
# {
|
5420
|
-
# action: "CLIPBOARD_COPY_FROM_LOCAL_DEVICE", # required, accepts 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
|
5421
|
-
# permission: "ENABLED", # required, accepts ENABLED, DISABLED
|
5422
|
-
# },
|
5423
|
-
# ],
|
5424
|
-
# application_settings: {
|
5425
|
-
# enabled: false, # required
|
5426
|
-
# settings_group: "SettingsGroup",
|
5427
|
-
# },
|
5428
|
-
# access_endpoints: [
|
5429
|
-
# {
|
5430
|
-
# endpoint_type: "STREAMING", # required, accepts STREAMING
|
5431
|
-
# vpce_id: "String",
|
5432
|
-
# },
|
5433
|
-
# ],
|
5434
|
-
# embed_host_domains: ["EmbedHostDomain"],
|
5435
|
-
# streaming_experience_settings: {
|
5436
|
-
# preferred_protocol: "TCP", # accepts TCP, UDP
|
5437
|
-
# },
|
5438
|
-
# }
|
5439
|
-
#
|
5440
4672
|
# @!attribute [rw] display_name
|
5441
4673
|
# The stack name to display.
|
5442
4674
|
# @return [String]
|
@@ -5640,14 +4872,6 @@ module Aws::AppStream
|
|
5640
4872
|
# Describes an action and whether the action is enabled or disabled for
|
5641
4873
|
# users during their streaming sessions.
|
5642
4874
|
#
|
5643
|
-
# @note When making an API call, you may pass UserSetting
|
5644
|
-
# data as a hash:
|
5645
|
-
#
|
5646
|
-
# {
|
5647
|
-
# action: "CLIPBOARD_COPY_FROM_LOCAL_DEVICE", # required, accepts 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
|
5648
|
-
# permission: "ENABLED", # required, accepts ENABLED, DISABLED
|
5649
|
-
# }
|
5650
|
-
#
|
5651
4875
|
# @!attribute [rw] action
|
5652
4876
|
# The action that is enabled or disabled.
|
5653
4877
|
# @return [String]
|
@@ -5667,16 +4891,6 @@ module Aws::AppStream
|
|
5667
4891
|
|
5668
4892
|
# Describes a user in the user pool and the associated stack.
|
5669
4893
|
#
|
5670
|
-
# @note When making an API call, you may pass UserStackAssociation
|
5671
|
-
# data as a hash:
|
5672
|
-
#
|
5673
|
-
# {
|
5674
|
-
# stack_name: "String", # required
|
5675
|
-
# user_name: "Username", # required
|
5676
|
-
# authentication_type: "API", # required, accepts API, SAML, USERPOOL
|
5677
|
-
# send_email_notification: false,
|
5678
|
-
# }
|
5679
|
-
#
|
5680
4894
|
# @!attribute [rw] stack_name
|
5681
4895
|
# The name of the stack that is associated with the user.
|
5682
4896
|
# @return [String]
|
@@ -5738,14 +4952,6 @@ module Aws::AppStream
|
|
5738
4952
|
|
5739
4953
|
# Describes VPC configuration information for fleets and image builders.
|
5740
4954
|
#
|
5741
|
-
# @note When making an API call, you may pass VpcConfig
|
5742
|
-
# data as a hash:
|
5743
|
-
#
|
5744
|
-
# {
|
5745
|
-
# subnet_ids: ["String"],
|
5746
|
-
# security_group_ids: ["String"],
|
5747
|
-
# }
|
5748
|
-
#
|
5749
4955
|
# @!attribute [rw] subnet_ids
|
5750
4956
|
# The identifiers of the subnets to which a network interface is
|
5751
4957
|
# attached from the fleet instance or image builder instance. Fleet
|