aws-sdk-appstream 1.44.0 → 1.49.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-appstream.rb +3 -2
- data/lib/aws-sdk-appstream/client.rb +150 -32
- data/lib/aws-sdk-appstream/client_api.rb +23 -1
- data/lib/aws-sdk-appstream/errors.rb +16 -0
- data/lib/aws-sdk-appstream/types.rb +198 -13
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 243ef974b6a3409797ea214c5a8fbbf07de340c8a17aee4526fedc280446d8de
|
4
|
+
data.tar.gz: c2aa8df0367ca0d645db5074581fb66e844572b9195a4f3ac1dd527ad7fc7386
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bea79a3c54ad3235a40aaed0a50d311a9340c78862c57265d9716eef2bf2bae2e0494e02c1606cf97c2370396157f14ebbd614a4b2fa1e31830d00ee2fb7e89c
|
7
|
+
data.tar.gz: 0724aeffbfe7dd3630a94f03f5c5e20f0f951e0af44f5ecb8ce01abb8cc7b906f8096c6c57856493abd52c78f87c8b3d0d7c508caed864bf1e91c05458dcb569
|
data/lib/aws-sdk-appstream.rb
CHANGED
@@ -7,6 +7,7 @@
|
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
10
|
+
|
10
11
|
require 'aws-sdk-core'
|
11
12
|
require 'aws-sigv4'
|
12
13
|
|
@@ -45,9 +46,9 @@ require_relative 'aws-sdk-appstream/customizations'
|
|
45
46
|
#
|
46
47
|
# See {Errors} for more information.
|
47
48
|
#
|
48
|
-
#
|
49
|
+
# @!group service
|
49
50
|
module Aws::AppStream
|
50
51
|
|
51
|
-
GEM_VERSION = '1.
|
52
|
+
GEM_VERSION = '1.49.0'
|
52
53
|
|
53
54
|
end
|
@@ -85,13 +85,28 @@ module Aws::AppStream
|
|
85
85
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
86
86
|
# credentials.
|
87
87
|
#
|
88
|
+
# * `Aws::SharedCredentials` - Used for loading static credentials from a
|
89
|
+
# shared file, such as `~/.aws/config`.
|
90
|
+
#
|
91
|
+
# * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
|
92
|
+
#
|
93
|
+
# * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
|
94
|
+
# assume a role after providing credentials via the web.
|
95
|
+
#
|
96
|
+
# * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
|
97
|
+
# access token generated from `aws login`.
|
98
|
+
#
|
99
|
+
# * `Aws::ProcessCredentials` - Used for loading credentials from a
|
100
|
+
# process that outputs to stdout.
|
101
|
+
#
|
88
102
|
# * `Aws::InstanceProfileCredentials` - Used for loading credentials
|
89
103
|
# from an EC2 IMDS on an EC2 instance.
|
90
104
|
#
|
91
|
-
# * `Aws::
|
92
|
-
#
|
105
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
106
|
+
# instances running in ECS.
|
93
107
|
#
|
94
|
-
# * `Aws::
|
108
|
+
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
109
|
+
# from the Cognito Identity service.
|
95
110
|
#
|
96
111
|
# When `:credentials` are not configured directly, the following
|
97
112
|
# locations will be searched for credentials:
|
@@ -101,10 +116,10 @@ module Aws::AppStream
|
|
101
116
|
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
|
102
117
|
# * `~/.aws/credentials`
|
103
118
|
# * `~/.aws/config`
|
104
|
-
# * EC2 IMDS instance profile - When used by default, the timeouts
|
105
|
-
# very aggressive. Construct and pass an instance of
|
106
|
-
# `Aws::InstanceProfileCredentails`
|
107
|
-
# timeouts.
|
119
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
120
|
+
# are very aggressive. Construct and pass an instance of
|
121
|
+
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
122
|
+
# enable retries and extended timeouts.
|
108
123
|
#
|
109
124
|
# @option options [required, String] :region
|
110
125
|
# The AWS region to connect to. The configured `:region` is
|
@@ -379,7 +394,7 @@ module Aws::AppStream
|
|
379
394
|
# resp.errors[0].user_stack_association.user_name #=> String
|
380
395
|
# resp.errors[0].user_stack_association.authentication_type #=> String, one of "API", "SAML", "USERPOOL"
|
381
396
|
# resp.errors[0].user_stack_association.send_email_notification #=> Boolean
|
382
|
-
# resp.errors[0].error_code #=> String, one of "STACK_NOT_FOUND", "USER_NAME_NOT_FOUND", "INTERNAL_ERROR"
|
397
|
+
# resp.errors[0].error_code #=> String, one of "STACK_NOT_FOUND", "USER_NAME_NOT_FOUND", "DIRECTORY_NOT_FOUND", "INTERNAL_ERROR"
|
383
398
|
# resp.errors[0].error_message #=> String
|
384
399
|
#
|
385
400
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/BatchAssociateUserStack AWS API Documentation
|
@@ -420,7 +435,7 @@ module Aws::AppStream
|
|
420
435
|
# resp.errors[0].user_stack_association.user_name #=> String
|
421
436
|
# resp.errors[0].user_stack_association.authentication_type #=> String, one of "API", "SAML", "USERPOOL"
|
422
437
|
# resp.errors[0].user_stack_association.send_email_notification #=> Boolean
|
423
|
-
# resp.errors[0].error_code #=> String, one of "STACK_NOT_FOUND", "USER_NAME_NOT_FOUND", "INTERNAL_ERROR"
|
438
|
+
# resp.errors[0].error_code #=> String, one of "STACK_NOT_FOUND", "USER_NAME_NOT_FOUND", "DIRECTORY_NOT_FOUND", "INTERNAL_ERROR"
|
424
439
|
# resp.errors[0].error_message #=> String
|
425
440
|
#
|
426
441
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/BatchDisassociateUserStack AWS API Documentation
|
@@ -490,7 +505,7 @@ module Aws::AppStream
|
|
490
505
|
# The distinguished names of the organizational units for computer
|
491
506
|
# accounts.
|
492
507
|
#
|
493
|
-
# @option params [
|
508
|
+
# @option params [Types::ServiceAccountCredentials] :service_account_credentials
|
494
509
|
# The credentials for the service account used by the fleet or image
|
495
510
|
# builder to connect to the directory.
|
496
511
|
#
|
@@ -503,7 +518,7 @@ module Aws::AppStream
|
|
503
518
|
# resp = client.create_directory_config({
|
504
519
|
# directory_name: "DirectoryName", # required
|
505
520
|
# organizational_unit_distinguished_names: ["OrganizationalUnitDistinguishedName"], # required
|
506
|
-
# service_account_credentials: {
|
521
|
+
# service_account_credentials: {
|
507
522
|
# account_name: "AccountName", # required
|
508
523
|
# account_password: "AccountPassword", # required
|
509
524
|
# },
|
@@ -543,6 +558,8 @@ module Aws::AppStream
|
|
543
558
|
# The instance type to use when launching fleet instances. The following
|
544
559
|
# instance types are available:
|
545
560
|
#
|
561
|
+
# * stream.standard.small
|
562
|
+
#
|
546
563
|
# * stream.standard.medium
|
547
564
|
#
|
548
565
|
# * stream.standard.large
|
@@ -567,6 +584,18 @@ module Aws::AppStream
|
|
567
584
|
#
|
568
585
|
# * stream.memory.8xlarge
|
569
586
|
#
|
587
|
+
# * stream.memory.z1d.large
|
588
|
+
#
|
589
|
+
# * stream.memory.z1d.xlarge
|
590
|
+
#
|
591
|
+
# * stream.memory.z1d.2xlarge
|
592
|
+
#
|
593
|
+
# * stream.memory.z1d.3xlarge
|
594
|
+
#
|
595
|
+
# * stream.memory.z1d.6xlarge
|
596
|
+
#
|
597
|
+
# * stream.memory.z1d.12xlarge
|
598
|
+
#
|
570
599
|
# * stream.graphics-design.large
|
571
600
|
#
|
572
601
|
# * stream.graphics-design.xlarge
|
@@ -577,6 +606,18 @@ module Aws::AppStream
|
|
577
606
|
#
|
578
607
|
# * stream.graphics-desktop.2xlarge
|
579
608
|
#
|
609
|
+
# * stream.graphics.g4dn.xlarge
|
610
|
+
#
|
611
|
+
# * stream.graphics.g4dn.2xlarge
|
612
|
+
#
|
613
|
+
# * stream.graphics.g4dn.4xlarge
|
614
|
+
#
|
615
|
+
# * stream.graphics.g4dn.8xlarge
|
616
|
+
#
|
617
|
+
# * stream.graphics.g4dn.12xlarge
|
618
|
+
#
|
619
|
+
# * stream.graphics.g4dn.16xlarge
|
620
|
+
#
|
580
621
|
# * stream.graphics-pro.4xlarge
|
581
622
|
#
|
582
623
|
# * stream.graphics-pro.8xlarge
|
@@ -689,7 +730,7 @@ module Aws::AppStream
|
|
689
730
|
# Service (STS) `AssumeRole` API operation and passes the ARN of the
|
690
731
|
# role to use. The operation creates a new session with temporary
|
691
732
|
# credentials. AppStream 2.0 retrieves the temporary credentials and
|
692
|
-
# creates the **
|
733
|
+
# creates the **appstream\_machine\_role** credential profile on the
|
693
734
|
# instance.
|
694
735
|
#
|
695
736
|
# For more information, see [Using an IAM Role to Grant Permissions to
|
@@ -700,6 +741,14 @@ module Aws::AppStream
|
|
700
741
|
#
|
701
742
|
# [1]: https://docs.aws.amazon.com/appstream2/latest/developerguide/using-iam-roles-to-grant-permissions-to-applications-scripts-streaming-instances.html
|
702
743
|
#
|
744
|
+
# @option params [String] :stream_view
|
745
|
+
# The AppStream 2.0 view that is displayed to your users when they
|
746
|
+
# stream from the fleet. When `APP` is specified, only the windows of
|
747
|
+
# applications opened by users display. When `DESKTOP` is specified, the
|
748
|
+
# standard desktop that is provided by the operating system displays.
|
749
|
+
#
|
750
|
+
# The default value is `APP`.
|
751
|
+
#
|
703
752
|
# @return [Types::CreateFleetResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
704
753
|
#
|
705
754
|
# * {Types::CreateFleetResult#fleet #fleet} => Types::Fleet
|
@@ -733,6 +782,7 @@ module Aws::AppStream
|
|
733
782
|
# },
|
734
783
|
# idle_disconnect_timeout_in_seconds: 1,
|
735
784
|
# iam_role_arn: "Arn",
|
785
|
+
# stream_view: "APP", # accepts APP, DESKTOP
|
736
786
|
# })
|
737
787
|
#
|
738
788
|
# @example Response structure
|
@@ -758,13 +808,14 @@ module Aws::AppStream
|
|
758
808
|
# resp.fleet.vpc_config.security_group_ids[0] #=> String
|
759
809
|
# resp.fleet.created_time #=> Time
|
760
810
|
# resp.fleet.fleet_errors #=> Array
|
761
|
-
# resp.fleet.fleet_errors[0].error_code #=> String, one of "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", "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"
|
811
|
+
# resp.fleet.fleet_errors[0].error_code #=> String, one of "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"
|
762
812
|
# resp.fleet.fleet_errors[0].error_message #=> String
|
763
813
|
# resp.fleet.enable_default_internet_access #=> Boolean
|
764
814
|
# resp.fleet.domain_join_info.directory_name #=> String
|
765
815
|
# resp.fleet.domain_join_info.organizational_unit_distinguished_name #=> String
|
766
816
|
# resp.fleet.idle_disconnect_timeout_in_seconds #=> Integer
|
767
817
|
# resp.fleet.iam_role_arn #=> String
|
818
|
+
# resp.fleet.stream_view #=> String, one of "APP", "DESKTOP"
|
768
819
|
#
|
769
820
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateFleet AWS API Documentation
|
770
821
|
#
|
@@ -794,6 +845,8 @@ module Aws::AppStream
|
|
794
845
|
# The instance type to use when launching the image builder. The
|
795
846
|
# following instance types are available:
|
796
847
|
#
|
848
|
+
# * stream.standard.small
|
849
|
+
#
|
797
850
|
# * stream.standard.medium
|
798
851
|
#
|
799
852
|
# * stream.standard.large
|
@@ -818,6 +871,18 @@ module Aws::AppStream
|
|
818
871
|
#
|
819
872
|
# * stream.memory.8xlarge
|
820
873
|
#
|
874
|
+
# * stream.memory.z1d.large
|
875
|
+
#
|
876
|
+
# * stream.memory.z1d.xlarge
|
877
|
+
#
|
878
|
+
# * stream.memory.z1d.2xlarge
|
879
|
+
#
|
880
|
+
# * stream.memory.z1d.3xlarge
|
881
|
+
#
|
882
|
+
# * stream.memory.z1d.6xlarge
|
883
|
+
#
|
884
|
+
# * stream.memory.z1d.12xlarge
|
885
|
+
#
|
821
886
|
# * stream.graphics-design.large
|
822
887
|
#
|
823
888
|
# * stream.graphics-design.xlarge
|
@@ -828,6 +893,18 @@ module Aws::AppStream
|
|
828
893
|
#
|
829
894
|
# * stream.graphics-desktop.2xlarge
|
830
895
|
#
|
896
|
+
# * stream.graphics.g4dn.xlarge
|
897
|
+
#
|
898
|
+
# * stream.graphics.g4dn.2xlarge
|
899
|
+
#
|
900
|
+
# * stream.graphics.g4dn.4xlarge
|
901
|
+
#
|
902
|
+
# * stream.graphics.g4dn.8xlarge
|
903
|
+
#
|
904
|
+
# * stream.graphics.g4dn.12xlarge
|
905
|
+
#
|
906
|
+
# * stream.graphics.g4dn.16xlarge
|
907
|
+
#
|
831
908
|
# * stream.graphics-pro.4xlarge
|
832
909
|
#
|
833
910
|
# * stream.graphics-pro.8xlarge
|
@@ -850,7 +927,7 @@ module Aws::AppStream
|
|
850
927
|
# Token Service (STS) `AssumeRole` API operation and passes the ARN of
|
851
928
|
# the role to use. The operation creates a new session with temporary
|
852
929
|
# credentials. AppStream 2.0 retrieves the temporary credentials and
|
853
|
-
# creates the **
|
930
|
+
# creates the **appstream\_machine\_role** credential profile on the
|
854
931
|
# instance.
|
855
932
|
#
|
856
933
|
# For more information, see [Using an IAM Role to Grant Permissions to
|
@@ -956,7 +1033,7 @@ module Aws::AppStream
|
|
956
1033
|
# resp.image_builder.network_access_configuration.eni_private_ip_address #=> String
|
957
1034
|
# resp.image_builder.network_access_configuration.eni_id #=> String
|
958
1035
|
# resp.image_builder.image_builder_errors #=> Array
|
959
|
-
# resp.image_builder.image_builder_errors[0].error_code #=> String, one of "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", "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"
|
1036
|
+
# resp.image_builder.image_builder_errors[0].error_code #=> String, one of "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"
|
960
1037
|
# resp.image_builder.image_builder_errors[0].error_message #=> String
|
961
1038
|
# resp.image_builder.image_builder_errors[0].error_timestamp #=> Time
|
962
1039
|
# resp.image_builder.appstream_agent_version #=> String
|
@@ -1093,7 +1170,7 @@ module Aws::AppStream
|
|
1093
1170
|
# feedback_url: "FeedbackURL",
|
1094
1171
|
# user_settings: [
|
1095
1172
|
# {
|
1096
|
-
# 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
|
1173
|
+
# 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
|
1097
1174
|
# permission: "ENABLED", # required, accepts ENABLED, DISABLED
|
1098
1175
|
# },
|
1099
1176
|
# ],
|
@@ -1131,7 +1208,7 @@ module Aws::AppStream
|
|
1131
1208
|
# resp.stack.stack_errors[0].error_code #=> String, one of "STORAGE_CONNECTOR_ERROR", "INTERNAL_SERVICE_ERROR"
|
1132
1209
|
# resp.stack.stack_errors[0].error_message #=> String
|
1133
1210
|
# resp.stack.user_settings #=> Array
|
1134
|
-
# resp.stack.user_settings[0].action #=> String, one of "CLIPBOARD_COPY_FROM_LOCAL_DEVICE", "CLIPBOARD_COPY_TO_LOCAL_DEVICE", "FILE_UPLOAD", "FILE_DOWNLOAD", "PRINTING_TO_LOCAL_DEVICE"
|
1211
|
+
# resp.stack.user_settings[0].action #=> String, one of "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"
|
1135
1212
|
# resp.stack.user_settings[0].permission #=> String, one of "ENABLED", "DISABLED"
|
1136
1213
|
# resp.stack.application_settings.enabled #=> Boolean
|
1137
1214
|
# resp.stack.application_settings.settings_group #=> String
|
@@ -1166,7 +1243,10 @@ module Aws::AppStream
|
|
1166
1243
|
#
|
1167
1244
|
# @option params [String] :application_id
|
1168
1245
|
# The name of the application to launch after the session starts. This
|
1169
|
-
# is the name that you specified as **Name** in the Image Assistant.
|
1246
|
+
# is the name that you specified as **Name** in the Image Assistant. If
|
1247
|
+
# your fleet is enabled for the **Desktop** stream view, you can also
|
1248
|
+
# choose to launch directly to the operating system desktop. To do so,
|
1249
|
+
# specify **Desktop**.
|
1170
1250
|
#
|
1171
1251
|
# @option params [Integer] :validity
|
1172
1252
|
# The time that the streaming URL will be valid, in seconds. Specify a
|
@@ -1355,7 +1435,7 @@ module Aws::AppStream
|
|
1355
1435
|
# resp.image.arn #=> String
|
1356
1436
|
# resp.image.base_image_arn #=> String
|
1357
1437
|
# resp.image.display_name #=> String
|
1358
|
-
# resp.image.state #=> String, one of "PENDING", "AVAILABLE", "FAILED", "COPYING", "DELETING"
|
1438
|
+
# resp.image.state #=> String, one of "PENDING", "AVAILABLE", "FAILED", "COPYING", "DELETING", "CREATING", "IMPORTING"
|
1359
1439
|
# resp.image.visibility #=> String, one of "PUBLIC", "PRIVATE", "SHARED"
|
1360
1440
|
# resp.image.image_builder_supported #=> Boolean
|
1361
1441
|
# resp.image.image_builder_name #=> String
|
@@ -1426,7 +1506,7 @@ module Aws::AppStream
|
|
1426
1506
|
# resp.image_builder.network_access_configuration.eni_private_ip_address #=> String
|
1427
1507
|
# resp.image_builder.network_access_configuration.eni_id #=> String
|
1428
1508
|
# resp.image_builder.image_builder_errors #=> Array
|
1429
|
-
# resp.image_builder.image_builder_errors[0].error_code #=> String, one of "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", "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"
|
1509
|
+
# resp.image_builder.image_builder_errors[0].error_code #=> String, one of "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"
|
1430
1510
|
# resp.image_builder.image_builder_errors[0].error_message #=> String
|
1431
1511
|
# resp.image_builder.image_builder_errors[0].error_timestamp #=> Time
|
1432
1512
|
# resp.image_builder.appstream_agent_version #=> String
|
@@ -1640,13 +1720,14 @@ module Aws::AppStream
|
|
1640
1720
|
# resp.fleets[0].vpc_config.security_group_ids[0] #=> String
|
1641
1721
|
# resp.fleets[0].created_time #=> Time
|
1642
1722
|
# resp.fleets[0].fleet_errors #=> Array
|
1643
|
-
# resp.fleets[0].fleet_errors[0].error_code #=> String, one of "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", "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"
|
1723
|
+
# resp.fleets[0].fleet_errors[0].error_code #=> String, one of "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"
|
1644
1724
|
# resp.fleets[0].fleet_errors[0].error_message #=> String
|
1645
1725
|
# resp.fleets[0].enable_default_internet_access #=> Boolean
|
1646
1726
|
# resp.fleets[0].domain_join_info.directory_name #=> String
|
1647
1727
|
# resp.fleets[0].domain_join_info.organizational_unit_distinguished_name #=> String
|
1648
1728
|
# resp.fleets[0].idle_disconnect_timeout_in_seconds #=> Integer
|
1649
1729
|
# resp.fleets[0].iam_role_arn #=> String
|
1730
|
+
# resp.fleets[0].stream_view #=> String, one of "APP", "DESKTOP"
|
1650
1731
|
# resp.next_token #=> String
|
1651
1732
|
#
|
1652
1733
|
#
|
@@ -1716,7 +1797,7 @@ module Aws::AppStream
|
|
1716
1797
|
# resp.image_builders[0].network_access_configuration.eni_private_ip_address #=> String
|
1717
1798
|
# resp.image_builders[0].network_access_configuration.eni_id #=> String
|
1718
1799
|
# resp.image_builders[0].image_builder_errors #=> Array
|
1719
|
-
# resp.image_builders[0].image_builder_errors[0].error_code #=> String, one of "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", "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"
|
1800
|
+
# resp.image_builders[0].image_builder_errors[0].error_code #=> String, one of "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"
|
1720
1801
|
# resp.image_builders[0].image_builder_errors[0].error_message #=> String
|
1721
1802
|
# resp.image_builders[0].image_builder_errors[0].error_timestamp #=> Time
|
1722
1803
|
# resp.image_builders[0].appstream_agent_version #=> String
|
@@ -1831,7 +1912,7 @@ module Aws::AppStream
|
|
1831
1912
|
# resp.images[0].arn #=> String
|
1832
1913
|
# resp.images[0].base_image_arn #=> String
|
1833
1914
|
# resp.images[0].display_name #=> String
|
1834
|
-
# resp.images[0].state #=> String, one of "PENDING", "AVAILABLE", "FAILED", "COPYING", "DELETING"
|
1915
|
+
# resp.images[0].state #=> String, one of "PENDING", "AVAILABLE", "FAILED", "COPYING", "DELETING", "CREATING", "IMPORTING"
|
1835
1916
|
# resp.images[0].visibility #=> String, one of "PUBLIC", "PRIVATE", "SHARED"
|
1836
1917
|
# resp.images[0].image_builder_supported #=> Boolean
|
1837
1918
|
# resp.images[0].image_builder_name #=> String
|
@@ -1877,7 +1958,8 @@ module Aws::AppStream
|
|
1877
1958
|
# The name of the fleet. This value is case-sensitive.
|
1878
1959
|
#
|
1879
1960
|
# @option params [String] :user_id
|
1880
|
-
# The user identifier.
|
1961
|
+
# The user identifier (ID). If you specify a user ID, you must also
|
1962
|
+
# specify the authentication type.
|
1881
1963
|
#
|
1882
1964
|
# @option params [String] :next_token
|
1883
1965
|
# The pagination token to use to retrieve the next page of results for
|
@@ -1975,7 +2057,7 @@ module Aws::AppStream
|
|
1975
2057
|
# resp.stacks[0].stack_errors[0].error_code #=> String, one of "STORAGE_CONNECTOR_ERROR", "INTERNAL_SERVICE_ERROR"
|
1976
2058
|
# resp.stacks[0].stack_errors[0].error_message #=> String
|
1977
2059
|
# resp.stacks[0].user_settings #=> Array
|
1978
|
-
# resp.stacks[0].user_settings[0].action #=> String, one of "CLIPBOARD_COPY_FROM_LOCAL_DEVICE", "CLIPBOARD_COPY_TO_LOCAL_DEVICE", "FILE_UPLOAD", "FILE_DOWNLOAD", "PRINTING_TO_LOCAL_DEVICE"
|
2060
|
+
# resp.stacks[0].user_settings[0].action #=> String, one of "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"
|
1979
2061
|
# resp.stacks[0].user_settings[0].permission #=> String, one of "ENABLED", "DISABLED"
|
1980
2062
|
# resp.stacks[0].application_settings.enabled #=> Boolean
|
1981
2063
|
# resp.stacks[0].application_settings.settings_group #=> String
|
@@ -2442,7 +2524,7 @@ module Aws::AppStream
|
|
2442
2524
|
# resp.image_builder.network_access_configuration.eni_private_ip_address #=> String
|
2443
2525
|
# resp.image_builder.network_access_configuration.eni_id #=> String
|
2444
2526
|
# resp.image_builder.image_builder_errors #=> Array
|
2445
|
-
# resp.image_builder.image_builder_errors[0].error_code #=> String, one of "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", "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"
|
2527
|
+
# resp.image_builder.image_builder_errors[0].error_code #=> String, one of "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"
|
2446
2528
|
# resp.image_builder.image_builder_errors[0].error_message #=> String
|
2447
2529
|
# resp.image_builder.image_builder_errors[0].error_timestamp #=> Time
|
2448
2530
|
# resp.image_builder.appstream_agent_version #=> String
|
@@ -2520,7 +2602,7 @@ module Aws::AppStream
|
|
2520
2602
|
# resp.image_builder.network_access_configuration.eni_private_ip_address #=> String
|
2521
2603
|
# resp.image_builder.network_access_configuration.eni_id #=> String
|
2522
2604
|
# resp.image_builder.image_builder_errors #=> Array
|
2523
|
-
# resp.image_builder.image_builder_errors[0].error_code #=> String, one of "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", "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"
|
2605
|
+
# resp.image_builder.image_builder_errors[0].error_code #=> String, one of "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"
|
2524
2606
|
# resp.image_builder.image_builder_errors[0].error_message #=> String
|
2525
2607
|
# resp.image_builder.image_builder_errors[0].error_timestamp #=> Time
|
2526
2608
|
# resp.image_builder.appstream_agent_version #=> String
|
@@ -2695,6 +2777,8 @@ module Aws::AppStream
|
|
2695
2777
|
# The instance type to use when launching fleet instances. The following
|
2696
2778
|
# instance types are available:
|
2697
2779
|
#
|
2780
|
+
# * stream.standard.small
|
2781
|
+
#
|
2698
2782
|
# * stream.standard.medium
|
2699
2783
|
#
|
2700
2784
|
# * stream.standard.large
|
@@ -2719,6 +2803,18 @@ module Aws::AppStream
|
|
2719
2803
|
#
|
2720
2804
|
# * stream.memory.8xlarge
|
2721
2805
|
#
|
2806
|
+
# * stream.memory.z1d.large
|
2807
|
+
#
|
2808
|
+
# * stream.memory.z1d.xlarge
|
2809
|
+
#
|
2810
|
+
# * stream.memory.z1d.2xlarge
|
2811
|
+
#
|
2812
|
+
# * stream.memory.z1d.3xlarge
|
2813
|
+
#
|
2814
|
+
# * stream.memory.z1d.6xlarge
|
2815
|
+
#
|
2816
|
+
# * stream.memory.z1d.12xlarge
|
2817
|
+
#
|
2722
2818
|
# * stream.graphics-design.large
|
2723
2819
|
#
|
2724
2820
|
# * stream.graphics-design.xlarge
|
@@ -2729,6 +2825,18 @@ module Aws::AppStream
|
|
2729
2825
|
#
|
2730
2826
|
# * stream.graphics-desktop.2xlarge
|
2731
2827
|
#
|
2828
|
+
# * stream.graphics.g4dn.xlarge
|
2829
|
+
#
|
2830
|
+
# * stream.graphics.g4dn.2xlarge
|
2831
|
+
#
|
2832
|
+
# * stream.graphics.g4dn.4xlarge
|
2833
|
+
#
|
2834
|
+
# * stream.graphics.g4dn.8xlarge
|
2835
|
+
#
|
2836
|
+
# * stream.graphics.g4dn.12xlarge
|
2837
|
+
#
|
2838
|
+
# * stream.graphics.g4dn.16xlarge
|
2839
|
+
#
|
2732
2840
|
# * stream.graphics-pro.4xlarge
|
2733
2841
|
#
|
2734
2842
|
# * stream.graphics-pro.8xlarge
|
@@ -2812,7 +2920,7 @@ module Aws::AppStream
|
|
2812
2920
|
# Service (STS) `AssumeRole` API operation and passes the ARN of the
|
2813
2921
|
# role to use. The operation creates a new session with temporary
|
2814
2922
|
# credentials. AppStream 2.0 retrieves the temporary credentials and
|
2815
|
-
# creates the **
|
2923
|
+
# creates the **appstream\_machine\_role** credential profile on the
|
2816
2924
|
# instance.
|
2817
2925
|
#
|
2818
2926
|
# For more information, see [Using an IAM Role to Grant Permissions to
|
@@ -2823,6 +2931,14 @@ module Aws::AppStream
|
|
2823
2931
|
#
|
2824
2932
|
# [1]: https://docs.aws.amazon.com/appstream2/latest/developerguide/using-iam-roles-to-grant-permissions-to-applications-scripts-streaming-instances.html
|
2825
2933
|
#
|
2934
|
+
# @option params [String] :stream_view
|
2935
|
+
# The AppStream 2.0 view that is displayed to your users when they
|
2936
|
+
# stream from the fleet. When `APP` is specified, only the windows of
|
2937
|
+
# applications opened by users display. When `DESKTOP` is specified, the
|
2938
|
+
# standard desktop that is provided by the operating system displays.
|
2939
|
+
#
|
2940
|
+
# The default value is `APP`.
|
2941
|
+
#
|
2826
2942
|
# @return [Types::UpdateFleetResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2827
2943
|
#
|
2828
2944
|
# * {Types::UpdateFleetResult#fleet #fleet} => Types::Fleet
|
@@ -2854,6 +2970,7 @@ module Aws::AppStream
|
|
2854
2970
|
# idle_disconnect_timeout_in_seconds: 1,
|
2855
2971
|
# attributes_to_delete: ["VPC_CONFIGURATION"], # accepts VPC_CONFIGURATION, VPC_CONFIGURATION_SECURITY_GROUP_IDS, DOMAIN_JOIN_INFO, IAM_ROLE_ARN
|
2856
2972
|
# iam_role_arn: "Arn",
|
2973
|
+
# stream_view: "APP", # accepts APP, DESKTOP
|
2857
2974
|
# })
|
2858
2975
|
#
|
2859
2976
|
# @example Response structure
|
@@ -2879,13 +2996,14 @@ module Aws::AppStream
|
|
2879
2996
|
# resp.fleet.vpc_config.security_group_ids[0] #=> String
|
2880
2997
|
# resp.fleet.created_time #=> Time
|
2881
2998
|
# resp.fleet.fleet_errors #=> Array
|
2882
|
-
# resp.fleet.fleet_errors[0].error_code #=> String, one of "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", "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"
|
2999
|
+
# resp.fleet.fleet_errors[0].error_code #=> String, one of "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"
|
2883
3000
|
# resp.fleet.fleet_errors[0].error_message #=> String
|
2884
3001
|
# resp.fleet.enable_default_internet_access #=> Boolean
|
2885
3002
|
# resp.fleet.domain_join_info.directory_name #=> String
|
2886
3003
|
# resp.fleet.domain_join_info.organizational_unit_distinguished_name #=> String
|
2887
3004
|
# resp.fleet.idle_disconnect_timeout_in_seconds #=> Integer
|
2888
3005
|
# resp.fleet.iam_role_arn #=> String
|
3006
|
+
# resp.fleet.stream_view #=> String, one of "APP", "DESKTOP"
|
2889
3007
|
#
|
2890
3008
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/UpdateFleet AWS API Documentation
|
2891
3009
|
#
|
@@ -3002,7 +3120,7 @@ module Aws::AppStream
|
|
3002
3120
|
# 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
|
3003
3121
|
# user_settings: [
|
3004
3122
|
# {
|
3005
|
-
# 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
|
3123
|
+
# 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
|
3006
3124
|
# permission: "ENABLED", # required, accepts ENABLED, DISABLED
|
3007
3125
|
# },
|
3008
3126
|
# ],
|
@@ -3037,7 +3155,7 @@ module Aws::AppStream
|
|
3037
3155
|
# resp.stack.stack_errors[0].error_code #=> String, one of "STORAGE_CONNECTOR_ERROR", "INTERNAL_SERVICE_ERROR"
|
3038
3156
|
# resp.stack.stack_errors[0].error_message #=> String
|
3039
3157
|
# resp.stack.user_settings #=> Array
|
3040
|
-
# resp.stack.user_settings[0].action #=> String, one of "CLIPBOARD_COPY_FROM_LOCAL_DEVICE", "CLIPBOARD_COPY_TO_LOCAL_DEVICE", "FILE_UPLOAD", "FILE_DOWNLOAD", "PRINTING_TO_LOCAL_DEVICE"
|
3158
|
+
# resp.stack.user_settings[0].action #=> String, one of "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"
|
3041
3159
|
# resp.stack.user_settings[0].permission #=> String, one of "ENABLED", "DISABLED"
|
3042
3160
|
# resp.stack.application_settings.enabled #=> Boolean
|
3043
3161
|
# resp.stack.application_settings.settings_group #=> String
|
@@ -3070,7 +3188,7 @@ module Aws::AppStream
|
|
3070
3188
|
params: params,
|
3071
3189
|
config: config)
|
3072
3190
|
context[:gem_name] = 'aws-sdk-appstream'
|
3073
|
-
context[:gem_version] = '1.
|
3191
|
+
context[:gem_version] = '1.49.0'
|
3074
3192
|
Seahorse::Client::Request.new(handlers, context)
|
3075
3193
|
end
|
3076
3194
|
|
@@ -163,6 +163,7 @@ module Aws::AppStream
|
|
163
163
|
PlatformType = Shapes::StringShape.new(name: 'PlatformType')
|
164
164
|
RedirectURL = Shapes::StringShape.new(name: 'RedirectURL')
|
165
165
|
RegionName = Shapes::StringShape.new(name: 'RegionName')
|
166
|
+
RequestLimitExceededException = Shapes::StructureShape.new(name: 'RequestLimitExceededException')
|
166
167
|
ResourceAlreadyExistsException = Shapes::StructureShape.new(name: 'ResourceAlreadyExistsException')
|
167
168
|
ResourceError = Shapes::StructureShape.new(name: 'ResourceError')
|
168
169
|
ResourceErrors = Shapes::ListShape.new(name: 'ResourceErrors')
|
@@ -197,6 +198,7 @@ module Aws::AppStream
|
|
197
198
|
StorageConnector = Shapes::StructureShape.new(name: 'StorageConnector')
|
198
199
|
StorageConnectorList = Shapes::ListShape.new(name: 'StorageConnectorList')
|
199
200
|
StorageConnectorType = Shapes::StringShape.new(name: 'StorageConnectorType')
|
201
|
+
StreamView = Shapes::StringShape.new(name: 'StreamView')
|
200
202
|
StreamingUrlUserId = Shapes::StringShape.new(name: 'StreamingUrlUserId')
|
201
203
|
String = Shapes::StringShape.new(name: 'String')
|
202
204
|
StringList = Shapes::ListShape.new(name: 'StringList')
|
@@ -308,7 +310,7 @@ module Aws::AppStream
|
|
308
310
|
|
309
311
|
CreateDirectoryConfigRequest.add_member(:directory_name, Shapes::ShapeRef.new(shape: DirectoryName, required: true, location_name: "DirectoryName"))
|
310
312
|
CreateDirectoryConfigRequest.add_member(:organizational_unit_distinguished_names, Shapes::ShapeRef.new(shape: OrganizationalUnitDistinguishedNamesList, required: true, location_name: "OrganizationalUnitDistinguishedNames"))
|
311
|
-
CreateDirectoryConfigRequest.add_member(:service_account_credentials, Shapes::ShapeRef.new(shape: ServiceAccountCredentials,
|
313
|
+
CreateDirectoryConfigRequest.add_member(:service_account_credentials, Shapes::ShapeRef.new(shape: ServiceAccountCredentials, location_name: "ServiceAccountCredentials"))
|
312
314
|
CreateDirectoryConfigRequest.struct_class = Types::CreateDirectoryConfigRequest
|
313
315
|
|
314
316
|
CreateDirectoryConfigResult.add_member(:directory_config, Shapes::ShapeRef.new(shape: DirectoryConfig, location_name: "DirectoryConfig"))
|
@@ -330,6 +332,7 @@ module Aws::AppStream
|
|
330
332
|
CreateFleetRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
|
331
333
|
CreateFleetRequest.add_member(:idle_disconnect_timeout_in_seconds, Shapes::ShapeRef.new(shape: Integer, location_name: "IdleDisconnectTimeoutInSeconds"))
|
332
334
|
CreateFleetRequest.add_member(:iam_role_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "IamRoleArn"))
|
335
|
+
CreateFleetRequest.add_member(:stream_view, Shapes::ShapeRef.new(shape: StreamView, location_name: "StreamView"))
|
333
336
|
CreateFleetRequest.struct_class = Types::CreateFleetRequest
|
334
337
|
|
335
338
|
CreateFleetResult.add_member(:fleet, Shapes::ShapeRef.new(shape: Fleet, location_name: "Fleet"))
|
@@ -603,6 +606,7 @@ module Aws::AppStream
|
|
603
606
|
Fleet.add_member(:domain_join_info, Shapes::ShapeRef.new(shape: DomainJoinInfo, location_name: "DomainJoinInfo"))
|
604
607
|
Fleet.add_member(:idle_disconnect_timeout_in_seconds, Shapes::ShapeRef.new(shape: Integer, location_name: "IdleDisconnectTimeoutInSeconds"))
|
605
608
|
Fleet.add_member(:iam_role_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "IamRoleArn"))
|
609
|
+
Fleet.add_member(:stream_view, Shapes::ShapeRef.new(shape: StreamView, location_name: "StreamView"))
|
606
610
|
Fleet.struct_class = Types::Fleet
|
607
611
|
|
608
612
|
FleetAttributes.member = Shapes::ShapeRef.new(shape: FleetAttribute)
|
@@ -724,6 +728,9 @@ module Aws::AppStream
|
|
724
728
|
|
725
729
|
OrganizationalUnitDistinguishedNamesList.member = Shapes::ShapeRef.new(shape: OrganizationalUnitDistinguishedName)
|
726
730
|
|
731
|
+
RequestLimitExceededException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
|
732
|
+
RequestLimitExceededException.struct_class = Types::RequestLimitExceededException
|
733
|
+
|
727
734
|
ResourceAlreadyExistsException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
|
728
735
|
ResourceAlreadyExistsException.struct_class = Types::ResourceAlreadyExistsException
|
729
736
|
|
@@ -869,6 +876,7 @@ module Aws::AppStream
|
|
869
876
|
UpdateFleetRequest.add_member(:idle_disconnect_timeout_in_seconds, Shapes::ShapeRef.new(shape: Integer, location_name: "IdleDisconnectTimeoutInSeconds"))
|
870
877
|
UpdateFleetRequest.add_member(:attributes_to_delete, Shapes::ShapeRef.new(shape: FleetAttributes, location_name: "AttributesToDelete"))
|
871
878
|
UpdateFleetRequest.add_member(:iam_role_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "IamRoleArn"))
|
879
|
+
UpdateFleetRequest.add_member(:stream_view, Shapes::ShapeRef.new(shape: StreamView, location_name: "StreamView"))
|
872
880
|
UpdateFleetRequest.struct_class = Types::UpdateFleetRequest
|
873
881
|
|
874
882
|
UpdateFleetResult.add_member(:fleet, Shapes::ShapeRef.new(shape: Fleet, location_name: "Fleet"))
|
@@ -983,6 +991,7 @@ module Aws::AppStream
|
|
983
991
|
o.input = Shapes::ShapeRef.new(shape: BatchAssociateUserStackRequest)
|
984
992
|
o.output = Shapes::ShapeRef.new(shape: BatchAssociateUserStackResult)
|
985
993
|
o.errors << Shapes::ShapeRef.new(shape: OperationNotPermittedException)
|
994
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterCombinationException)
|
986
995
|
end)
|
987
996
|
|
988
997
|
api.add_operation(:batch_disassociate_user_stack, Seahorse::Model::Operation.new.tap do |o|
|
@@ -991,6 +1000,8 @@ module Aws::AppStream
|
|
991
1000
|
o.http_request_uri = "/"
|
992
1001
|
o.input = Shapes::ShapeRef.new(shape: BatchDisassociateUserStackRequest)
|
993
1002
|
o.output = Shapes::ShapeRef.new(shape: BatchDisassociateUserStackResult)
|
1003
|
+
o.errors << Shapes::ShapeRef.new(shape: OperationNotPermittedException)
|
1004
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterCombinationException)
|
994
1005
|
end)
|
995
1006
|
|
996
1007
|
api.add_operation(:copy_image, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1013,9 +1024,12 @@ module Aws::AppStream
|
|
1013
1024
|
o.http_request_uri = "/"
|
1014
1025
|
o.input = Shapes::ShapeRef.new(shape: CreateDirectoryConfigRequest)
|
1015
1026
|
o.output = Shapes::ShapeRef.new(shape: CreateDirectoryConfigResult)
|
1027
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1016
1028
|
o.errors << Shapes::ShapeRef.new(shape: ResourceAlreadyExistsException)
|
1017
1029
|
o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
|
1018
1030
|
o.errors << Shapes::ShapeRef.new(shape: InvalidAccountStatusException)
|
1031
|
+
o.errors << Shapes::ShapeRef.new(shape: OperationNotPermittedException)
|
1032
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRoleException)
|
1019
1033
|
end)
|
1020
1034
|
|
1021
1035
|
api.add_operation(:create_fleet, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1028,6 +1042,7 @@ module Aws::AppStream
|
|
1028
1042
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotAvailableException)
|
1029
1043
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1030
1044
|
o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
|
1045
|
+
o.errors << Shapes::ShapeRef.new(shape: RequestLimitExceededException)
|
1031
1046
|
o.errors << Shapes::ShapeRef.new(shape: InvalidAccountStatusException)
|
1032
1047
|
o.errors << Shapes::ShapeRef.new(shape: InvalidRoleException)
|
1033
1048
|
o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
|
@@ -1043,6 +1058,7 @@ module Aws::AppStream
|
|
1043
1058
|
o.input = Shapes::ShapeRef.new(shape: CreateImageBuilderRequest)
|
1044
1059
|
o.output = Shapes::ShapeRef.new(shape: CreateImageBuilderResult)
|
1045
1060
|
o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
|
1061
|
+
o.errors << Shapes::ShapeRef.new(shape: RequestLimitExceededException)
|
1046
1062
|
o.errors << Shapes::ShapeRef.new(shape: InvalidAccountStatusException)
|
1047
1063
|
o.errors << Shapes::ShapeRef.new(shape: ResourceAlreadyExistsException)
|
1048
1064
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotAvailableException)
|
@@ -1292,6 +1308,7 @@ module Aws::AppStream
|
|
1292
1308
|
o.input = Shapes::ShapeRef.new(shape: DescribeUserStackAssociationsRequest)
|
1293
1309
|
o.output = Shapes::ShapeRef.new(shape: DescribeUserStackAssociationsResult)
|
1294
1310
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterCombinationException)
|
1311
|
+
o.errors << Shapes::ShapeRef.new(shape: OperationNotPermittedException)
|
1295
1312
|
end)
|
1296
1313
|
|
1297
1314
|
api.add_operation(:describe_users, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1322,6 +1339,7 @@ module Aws::AppStream
|
|
1322
1339
|
o.errors << Shapes::ShapeRef.new(shape: ResourceInUseException)
|
1323
1340
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1324
1341
|
o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
|
1342
|
+
o.errors << Shapes::ShapeRef.new(shape: OperationNotPermittedException)
|
1325
1343
|
end)
|
1326
1344
|
|
1327
1345
|
api.add_operation(:enable_user, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1376,6 +1394,7 @@ module Aws::AppStream
|
|
1376
1394
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1377
1395
|
o.errors << Shapes::ShapeRef.new(shape: OperationNotPermittedException)
|
1378
1396
|
o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
|
1397
|
+
o.errors << Shapes::ShapeRef.new(shape: RequestLimitExceededException)
|
1379
1398
|
o.errors << Shapes::ShapeRef.new(shape: InvalidAccountStatusException)
|
1380
1399
|
o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
|
1381
1400
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotAvailableException)
|
@@ -1445,6 +1464,8 @@ module Aws::AppStream
|
|
1445
1464
|
o.errors << Shapes::ShapeRef.new(shape: ResourceInUseException)
|
1446
1465
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1447
1466
|
o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
|
1467
|
+
o.errors << Shapes::ShapeRef.new(shape: OperationNotPermittedException)
|
1468
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRoleException)
|
1448
1469
|
end)
|
1449
1470
|
|
1450
1471
|
api.add_operation(:update_fleet, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1455,6 +1476,7 @@ module Aws::AppStream
|
|
1455
1476
|
o.output = Shapes::ShapeRef.new(shape: UpdateFleetResult)
|
1456
1477
|
o.errors << Shapes::ShapeRef.new(shape: ResourceInUseException)
|
1457
1478
|
o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
|
1479
|
+
o.errors << Shapes::ShapeRef.new(shape: RequestLimitExceededException)
|
1458
1480
|
o.errors << Shapes::ShapeRef.new(shape: InvalidAccountStatusException)
|
1459
1481
|
o.errors << Shapes::ShapeRef.new(shape: InvalidRoleException)
|
1460
1482
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
@@ -34,6 +34,7 @@ module Aws::AppStream
|
|
34
34
|
# * {InvalidRoleException}
|
35
35
|
# * {LimitExceededException}
|
36
36
|
# * {OperationNotPermittedException}
|
37
|
+
# * {RequestLimitExceededException}
|
37
38
|
# * {ResourceAlreadyExistsException}
|
38
39
|
# * {ResourceInUseException}
|
39
40
|
# * {ResourceNotAvailableException}
|
@@ -150,6 +151,21 @@ module Aws::AppStream
|
|
150
151
|
end
|
151
152
|
end
|
152
153
|
|
154
|
+
class RequestLimitExceededException < ServiceError
|
155
|
+
|
156
|
+
# @param [Seahorse::Client::RequestContext] context
|
157
|
+
# @param [String] message
|
158
|
+
# @param [Aws::AppStream::Types::RequestLimitExceededException] data
|
159
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
160
|
+
super(context, message, data)
|
161
|
+
end
|
162
|
+
|
163
|
+
# @return [String]
|
164
|
+
def message
|
165
|
+
@message || @data[:message]
|
166
|
+
end
|
167
|
+
end
|
168
|
+
|
153
169
|
class ResourceAlreadyExistsException < ServiceError
|
154
170
|
|
155
171
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -379,7 +379,7 @@ module Aws::AppStream
|
|
379
379
|
# {
|
380
380
|
# directory_name: "DirectoryName", # required
|
381
381
|
# organizational_unit_distinguished_names: ["OrganizationalUnitDistinguishedName"], # required
|
382
|
-
# service_account_credentials: {
|
382
|
+
# service_account_credentials: {
|
383
383
|
# account_name: "AccountName", # required
|
384
384
|
# account_password: "AccountPassword", # required
|
385
385
|
# },
|
@@ -452,6 +452,7 @@ module Aws::AppStream
|
|
452
452
|
# },
|
453
453
|
# idle_disconnect_timeout_in_seconds: 1,
|
454
454
|
# iam_role_arn: "Arn",
|
455
|
+
# stream_view: "APP", # accepts APP, DESKTOP
|
455
456
|
# }
|
456
457
|
#
|
457
458
|
# @!attribute [rw] name
|
@@ -470,6 +471,8 @@ module Aws::AppStream
|
|
470
471
|
# The instance type to use when launching fleet instances. The
|
471
472
|
# following instance types are available:
|
472
473
|
#
|
474
|
+
# * stream.standard.small
|
475
|
+
#
|
473
476
|
# * stream.standard.medium
|
474
477
|
#
|
475
478
|
# * stream.standard.large
|
@@ -494,6 +497,18 @@ module Aws::AppStream
|
|
494
497
|
#
|
495
498
|
# * stream.memory.8xlarge
|
496
499
|
#
|
500
|
+
# * stream.memory.z1d.large
|
501
|
+
#
|
502
|
+
# * stream.memory.z1d.xlarge
|
503
|
+
#
|
504
|
+
# * stream.memory.z1d.2xlarge
|
505
|
+
#
|
506
|
+
# * stream.memory.z1d.3xlarge
|
507
|
+
#
|
508
|
+
# * stream.memory.z1d.6xlarge
|
509
|
+
#
|
510
|
+
# * stream.memory.z1d.12xlarge
|
511
|
+
#
|
497
512
|
# * stream.graphics-design.large
|
498
513
|
#
|
499
514
|
# * stream.graphics-design.xlarge
|
@@ -504,6 +519,18 @@ module Aws::AppStream
|
|
504
519
|
#
|
505
520
|
# * stream.graphics-desktop.2xlarge
|
506
521
|
#
|
522
|
+
# * stream.graphics.g4dn.xlarge
|
523
|
+
#
|
524
|
+
# * stream.graphics.g4dn.2xlarge
|
525
|
+
#
|
526
|
+
# * stream.graphics.g4dn.4xlarge
|
527
|
+
#
|
528
|
+
# * stream.graphics.g4dn.8xlarge
|
529
|
+
#
|
530
|
+
# * stream.graphics.g4dn.12xlarge
|
531
|
+
#
|
532
|
+
# * stream.graphics.g4dn.16xlarge
|
533
|
+
#
|
507
534
|
# * stream.graphics-pro.4xlarge
|
508
535
|
#
|
509
536
|
# * stream.graphics-pro.8xlarge
|
@@ -630,7 +657,7 @@ module Aws::AppStream
|
|
630
657
|
# Token Service (STS) `AssumeRole` API operation and passes the ARN of
|
631
658
|
# the role to use. The operation creates a new session with temporary
|
632
659
|
# credentials. AppStream 2.0 retrieves the temporary credentials and
|
633
|
-
# creates the **
|
660
|
+
# creates the **appstream\_machine\_role** credential profile on the
|
634
661
|
# instance.
|
635
662
|
#
|
636
663
|
# For more information, see [Using an IAM Role to Grant Permissions to
|
@@ -642,6 +669,16 @@ module Aws::AppStream
|
|
642
669
|
# [1]: https://docs.aws.amazon.com/appstream2/latest/developerguide/using-iam-roles-to-grant-permissions-to-applications-scripts-streaming-instances.html
|
643
670
|
# @return [String]
|
644
671
|
#
|
672
|
+
# @!attribute [rw] stream_view
|
673
|
+
# The AppStream 2.0 view that is displayed to your users when they
|
674
|
+
# stream from the fleet. When `APP` is specified, only the windows of
|
675
|
+
# applications opened by users display. When `DESKTOP` is specified,
|
676
|
+
# the standard desktop that is provided by the operating system
|
677
|
+
# displays.
|
678
|
+
#
|
679
|
+
# The default value is `APP`.
|
680
|
+
# @return [String]
|
681
|
+
#
|
645
682
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateFleetRequest AWS API Documentation
|
646
683
|
#
|
647
684
|
class CreateFleetRequest < Struct.new(
|
@@ -660,7 +697,8 @@ module Aws::AppStream
|
|
660
697
|
:domain_join_info,
|
661
698
|
:tags,
|
662
699
|
:idle_disconnect_timeout_in_seconds,
|
663
|
-
:iam_role_arn
|
700
|
+
:iam_role_arn,
|
701
|
+
:stream_view)
|
664
702
|
SENSITIVE = []
|
665
703
|
include Aws::Structure
|
666
704
|
end
|
@@ -725,6 +763,8 @@ module Aws::AppStream
|
|
725
763
|
# The instance type to use when launching the image builder. The
|
726
764
|
# following instance types are available:
|
727
765
|
#
|
766
|
+
# * stream.standard.small
|
767
|
+
#
|
728
768
|
# * stream.standard.medium
|
729
769
|
#
|
730
770
|
# * stream.standard.large
|
@@ -749,6 +789,18 @@ module Aws::AppStream
|
|
749
789
|
#
|
750
790
|
# * stream.memory.8xlarge
|
751
791
|
#
|
792
|
+
# * stream.memory.z1d.large
|
793
|
+
#
|
794
|
+
# * stream.memory.z1d.xlarge
|
795
|
+
#
|
796
|
+
# * stream.memory.z1d.2xlarge
|
797
|
+
#
|
798
|
+
# * stream.memory.z1d.3xlarge
|
799
|
+
#
|
800
|
+
# * stream.memory.z1d.6xlarge
|
801
|
+
#
|
802
|
+
# * stream.memory.z1d.12xlarge
|
803
|
+
#
|
752
804
|
# * stream.graphics-design.large
|
753
805
|
#
|
754
806
|
# * stream.graphics-design.xlarge
|
@@ -759,6 +811,18 @@ module Aws::AppStream
|
|
759
811
|
#
|
760
812
|
# * stream.graphics-desktop.2xlarge
|
761
813
|
#
|
814
|
+
# * stream.graphics.g4dn.xlarge
|
815
|
+
#
|
816
|
+
# * stream.graphics.g4dn.2xlarge
|
817
|
+
#
|
818
|
+
# * stream.graphics.g4dn.4xlarge
|
819
|
+
#
|
820
|
+
# * stream.graphics.g4dn.8xlarge
|
821
|
+
#
|
822
|
+
# * stream.graphics.g4dn.12xlarge
|
823
|
+
#
|
824
|
+
# * stream.graphics.g4dn.16xlarge
|
825
|
+
#
|
762
826
|
# * stream.graphics-pro.4xlarge
|
763
827
|
#
|
764
828
|
# * stream.graphics-pro.8xlarge
|
@@ -785,7 +849,7 @@ module Aws::AppStream
|
|
785
849
|
# Token Service (STS) `AssumeRole` API operation and passes the ARN of
|
786
850
|
# the role to use. The operation creates a new session with temporary
|
787
851
|
# credentials. AppStream 2.0 retrieves the temporary credentials and
|
788
|
-
# creates the **
|
852
|
+
# creates the **appstream\_machine\_role** credential profile on the
|
789
853
|
# instance.
|
790
854
|
#
|
791
855
|
# For more information, see [Using an IAM Role to Grant Permissions to
|
@@ -932,7 +996,7 @@ module Aws::AppStream
|
|
932
996
|
# feedback_url: "FeedbackURL",
|
933
997
|
# user_settings: [
|
934
998
|
# {
|
935
|
-
# 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
|
999
|
+
# 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
|
936
1000
|
# permission: "ENABLED", # required, accepts ENABLED, DISABLED
|
937
1001
|
# },
|
938
1002
|
# ],
|
@@ -1080,6 +1144,9 @@ module Aws::AppStream
|
|
1080
1144
|
# @!attribute [rw] application_id
|
1081
1145
|
# The name of the application to launch after the session starts. This
|
1082
1146
|
# is the name that you specified as **Name** in the Image Assistant.
|
1147
|
+
# If your fleet is enabled for the **Desktop** stream view, you can
|
1148
|
+
# also choose to launch directly to the operating system desktop. To
|
1149
|
+
# do so, specify **Desktop**.
|
1083
1150
|
# @return [String]
|
1084
1151
|
#
|
1085
1152
|
# @!attribute [rw] validity
|
@@ -1718,7 +1785,8 @@ module Aws::AppStream
|
|
1718
1785
|
# @return [String]
|
1719
1786
|
#
|
1720
1787
|
# @!attribute [rw] user_id
|
1721
|
-
# The user identifier.
|
1788
|
+
# The user identifier (ID). If you specify a user ID, you must also
|
1789
|
+
# specify the authentication type.
|
1722
1790
|
# @return [String]
|
1723
1791
|
#
|
1724
1792
|
# @!attribute [rw] next_token
|
@@ -2188,6 +2256,8 @@ module Aws::AppStream
|
|
2188
2256
|
# The instance type to use when launching fleet instances. The
|
2189
2257
|
# following instance types are available:
|
2190
2258
|
#
|
2259
|
+
# * stream.standard.small
|
2260
|
+
#
|
2191
2261
|
# * stream.standard.medium
|
2192
2262
|
#
|
2193
2263
|
# * stream.standard.large
|
@@ -2212,6 +2282,18 @@ module Aws::AppStream
|
|
2212
2282
|
#
|
2213
2283
|
# * stream.memory.8xlarge
|
2214
2284
|
#
|
2285
|
+
# * stream.memory.z1d.large
|
2286
|
+
#
|
2287
|
+
# * stream.memory.z1d.xlarge
|
2288
|
+
#
|
2289
|
+
# * stream.memory.z1d.2xlarge
|
2290
|
+
#
|
2291
|
+
# * stream.memory.z1d.3xlarge
|
2292
|
+
#
|
2293
|
+
# * stream.memory.z1d.6xlarge
|
2294
|
+
#
|
2295
|
+
# * stream.memory.z1d.12xlarge
|
2296
|
+
#
|
2215
2297
|
# * stream.graphics-design.large
|
2216
2298
|
#
|
2217
2299
|
# * stream.graphics-design.xlarge
|
@@ -2222,6 +2304,18 @@ module Aws::AppStream
|
|
2222
2304
|
#
|
2223
2305
|
# * stream.graphics-desktop.2xlarge
|
2224
2306
|
#
|
2307
|
+
# * stream.graphics.g4dn.xlarge
|
2308
|
+
#
|
2309
|
+
# * stream.graphics.g4dn.2xlarge
|
2310
|
+
#
|
2311
|
+
# * stream.graphics.g4dn.4xlarge
|
2312
|
+
#
|
2313
|
+
# * stream.graphics.g4dn.8xlarge
|
2314
|
+
#
|
2315
|
+
# * stream.graphics.g4dn.12xlarge
|
2316
|
+
#
|
2317
|
+
# * stream.graphics.g4dn.16xlarge
|
2318
|
+
#
|
2225
2319
|
# * stream.graphics-pro.4xlarge
|
2226
2320
|
#
|
2227
2321
|
# * stream.graphics-pro.8xlarge
|
@@ -2332,7 +2426,7 @@ module Aws::AppStream
|
|
2332
2426
|
# `AssumeRole` API operation and passes the ARN of the role to use.
|
2333
2427
|
# The operation creates a new session with temporary credentials.
|
2334
2428
|
# AppStream 2.0 retrieves the temporary credentials and creates the
|
2335
|
-
# **
|
2429
|
+
# **appstream\_machine\_role** credential profile on the instance.
|
2336
2430
|
#
|
2337
2431
|
# For more information, see [Using an IAM Role to Grant Permissions to
|
2338
2432
|
# Applications and Scripts Running on AppStream 2.0 Streaming
|
@@ -2343,6 +2437,16 @@ module Aws::AppStream
|
|
2343
2437
|
# [1]: https://docs.aws.amazon.com/appstream2/latest/developerguide/using-iam-roles-to-grant-permissions-to-applications-scripts-streaming-instances.html
|
2344
2438
|
# @return [String]
|
2345
2439
|
#
|
2440
|
+
# @!attribute [rw] stream_view
|
2441
|
+
# The AppStream 2.0 view that is displayed to your users when they
|
2442
|
+
# stream from the fleet. When `APP` is specified, only the windows of
|
2443
|
+
# applications opened by users display. When `DESKTOP` is specified,
|
2444
|
+
# the standard desktop that is provided by the operating system
|
2445
|
+
# displays.
|
2446
|
+
#
|
2447
|
+
# The default value is `APP`.
|
2448
|
+
# @return [String]
|
2449
|
+
#
|
2346
2450
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/Fleet AWS API Documentation
|
2347
2451
|
#
|
2348
2452
|
class Fleet < Struct.new(
|
@@ -2364,7 +2468,8 @@ module Aws::AppStream
|
|
2364
2468
|
:enable_default_internet_access,
|
2365
2469
|
:domain_join_info,
|
2366
2470
|
:idle_disconnect_timeout_in_seconds,
|
2367
|
-
:iam_role_arn
|
2471
|
+
:iam_role_arn,
|
2472
|
+
:stream_view)
|
2368
2473
|
SENSITIVE = []
|
2369
2474
|
include Aws::Structure
|
2370
2475
|
end
|
@@ -2514,6 +2619,8 @@ module Aws::AppStream
|
|
2514
2619
|
# The instance type for the image builder. The following instance
|
2515
2620
|
# types are available:
|
2516
2621
|
#
|
2622
|
+
# * stream.standard.small
|
2623
|
+
#
|
2517
2624
|
# * stream.standard.medium
|
2518
2625
|
#
|
2519
2626
|
# * stream.standard.large
|
@@ -2538,6 +2645,18 @@ module Aws::AppStream
|
|
2538
2645
|
#
|
2539
2646
|
# * stream.memory.8xlarge
|
2540
2647
|
#
|
2648
|
+
# * stream.memory.z1d.large
|
2649
|
+
#
|
2650
|
+
# * stream.memory.z1d.xlarge
|
2651
|
+
#
|
2652
|
+
# * stream.memory.z1d.2xlarge
|
2653
|
+
#
|
2654
|
+
# * stream.memory.z1d.3xlarge
|
2655
|
+
#
|
2656
|
+
# * stream.memory.z1d.6xlarge
|
2657
|
+
#
|
2658
|
+
# * stream.memory.z1d.12xlarge
|
2659
|
+
#
|
2541
2660
|
# * stream.graphics-design.large
|
2542
2661
|
#
|
2543
2662
|
# * stream.graphics-design.xlarge
|
@@ -2548,6 +2667,18 @@ module Aws::AppStream
|
|
2548
2667
|
#
|
2549
2668
|
# * stream.graphics-desktop.2xlarge
|
2550
2669
|
#
|
2670
|
+
# * stream.graphics.g4dn.xlarge
|
2671
|
+
#
|
2672
|
+
# * stream.graphics.g4dn.2xlarge
|
2673
|
+
#
|
2674
|
+
# * stream.graphics.g4dn.4xlarge
|
2675
|
+
#
|
2676
|
+
# * stream.graphics.g4dn.8xlarge
|
2677
|
+
#
|
2678
|
+
# * stream.graphics.g4dn.12xlarge
|
2679
|
+
#
|
2680
|
+
# * stream.graphics.g4dn.16xlarge
|
2681
|
+
#
|
2551
2682
|
# * stream.graphics-pro.4xlarge
|
2552
2683
|
#
|
2553
2684
|
# * stream.graphics-pro.8xlarge
|
@@ -2565,7 +2696,7 @@ module Aws::AppStream
|
|
2565
2696
|
# Service (STS) `AssumeRole` API operation and passes the ARN of the
|
2566
2697
|
# role to use. The operation creates a new session with temporary
|
2567
2698
|
# credentials. AppStream 2.0 retrieves the temporary credentials and
|
2568
|
-
# creates the **
|
2699
|
+
# creates the **appstream\_machine\_role** credential profile on the
|
2569
2700
|
# instance.
|
2570
2701
|
#
|
2571
2702
|
# For more information, see [Using an IAM Role to Grant Permissions to
|
@@ -2957,6 +3088,22 @@ module Aws::AppStream
|
|
2957
3088
|
include Aws::Structure
|
2958
3089
|
end
|
2959
3090
|
|
3091
|
+
# AppStream 2.0 can’t process the request right now because the Describe
|
3092
|
+
# calls from your AWS account are being throttled by Amazon EC2. Try
|
3093
|
+
# again later.
|
3094
|
+
#
|
3095
|
+
# @!attribute [rw] message
|
3096
|
+
# The error message in the exception.
|
3097
|
+
# @return [String]
|
3098
|
+
#
|
3099
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/RequestLimitExceededException AWS API Documentation
|
3100
|
+
#
|
3101
|
+
class RequestLimitExceededException < Struct.new(
|
3102
|
+
:message)
|
3103
|
+
SENSITIVE = []
|
3104
|
+
include Aws::Structure
|
3105
|
+
end
|
3106
|
+
|
2960
3107
|
# The specified resource already exists.
|
2961
3108
|
#
|
2962
3109
|
# @!attribute [rw] message
|
@@ -3552,6 +3699,7 @@ module Aws::AppStream
|
|
3552
3699
|
# idle_disconnect_timeout_in_seconds: 1,
|
3553
3700
|
# attributes_to_delete: ["VPC_CONFIGURATION"], # accepts VPC_CONFIGURATION, VPC_CONFIGURATION_SECURITY_GROUP_IDS, DOMAIN_JOIN_INFO, IAM_ROLE_ARN
|
3554
3701
|
# iam_role_arn: "Arn",
|
3702
|
+
# stream_view: "APP", # accepts APP, DESKTOP
|
3555
3703
|
# }
|
3556
3704
|
#
|
3557
3705
|
# @!attribute [rw] image_name
|
@@ -3570,6 +3718,8 @@ module Aws::AppStream
|
|
3570
3718
|
# The instance type to use when launching fleet instances. The
|
3571
3719
|
# following instance types are available:
|
3572
3720
|
#
|
3721
|
+
# * stream.standard.small
|
3722
|
+
#
|
3573
3723
|
# * stream.standard.medium
|
3574
3724
|
#
|
3575
3725
|
# * stream.standard.large
|
@@ -3594,6 +3744,18 @@ module Aws::AppStream
|
|
3594
3744
|
#
|
3595
3745
|
# * stream.memory.8xlarge
|
3596
3746
|
#
|
3747
|
+
# * stream.memory.z1d.large
|
3748
|
+
#
|
3749
|
+
# * stream.memory.z1d.xlarge
|
3750
|
+
#
|
3751
|
+
# * stream.memory.z1d.2xlarge
|
3752
|
+
#
|
3753
|
+
# * stream.memory.z1d.3xlarge
|
3754
|
+
#
|
3755
|
+
# * stream.memory.z1d.6xlarge
|
3756
|
+
#
|
3757
|
+
# * stream.memory.z1d.12xlarge
|
3758
|
+
#
|
3597
3759
|
# * stream.graphics-design.large
|
3598
3760
|
#
|
3599
3761
|
# * stream.graphics-design.xlarge
|
@@ -3604,6 +3766,18 @@ module Aws::AppStream
|
|
3604
3766
|
#
|
3605
3767
|
# * stream.graphics-desktop.2xlarge
|
3606
3768
|
#
|
3769
|
+
# * stream.graphics.g4dn.xlarge
|
3770
|
+
#
|
3771
|
+
# * stream.graphics.g4dn.2xlarge
|
3772
|
+
#
|
3773
|
+
# * stream.graphics.g4dn.4xlarge
|
3774
|
+
#
|
3775
|
+
# * stream.graphics.g4dn.8xlarge
|
3776
|
+
#
|
3777
|
+
# * stream.graphics.g4dn.12xlarge
|
3778
|
+
#
|
3779
|
+
# * stream.graphics.g4dn.16xlarge
|
3780
|
+
#
|
3607
3781
|
# * stream.graphics-pro.4xlarge
|
3608
3782
|
#
|
3609
3783
|
# * stream.graphics-pro.8xlarge
|
@@ -3701,7 +3875,7 @@ module Aws::AppStream
|
|
3701
3875
|
# Token Service (STS) `AssumeRole` API operation and passes the ARN of
|
3702
3876
|
# the role to use. The operation creates a new session with temporary
|
3703
3877
|
# credentials. AppStream 2.0 retrieves the temporary credentials and
|
3704
|
-
# creates the **
|
3878
|
+
# creates the **appstream\_machine\_role** credential profile on the
|
3705
3879
|
# instance.
|
3706
3880
|
#
|
3707
3881
|
# For more information, see [Using an IAM Role to Grant Permissions to
|
@@ -3713,6 +3887,16 @@ module Aws::AppStream
|
|
3713
3887
|
# [1]: https://docs.aws.amazon.com/appstream2/latest/developerguide/using-iam-roles-to-grant-permissions-to-applications-scripts-streaming-instances.html
|
3714
3888
|
# @return [String]
|
3715
3889
|
#
|
3890
|
+
# @!attribute [rw] stream_view
|
3891
|
+
# The AppStream 2.0 view that is displayed to your users when they
|
3892
|
+
# stream from the fleet. When `APP` is specified, only the windows of
|
3893
|
+
# applications opened by users display. When `DESKTOP` is specified,
|
3894
|
+
# the standard desktop that is provided by the operating system
|
3895
|
+
# displays.
|
3896
|
+
#
|
3897
|
+
# The default value is `APP`.
|
3898
|
+
# @return [String]
|
3899
|
+
#
|
3716
3900
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/UpdateFleetRequest AWS API Documentation
|
3717
3901
|
#
|
3718
3902
|
class UpdateFleetRequest < Struct.new(
|
@@ -3731,7 +3915,8 @@ module Aws::AppStream
|
|
3731
3915
|
:domain_join_info,
|
3732
3916
|
:idle_disconnect_timeout_in_seconds,
|
3733
3917
|
:attributes_to_delete,
|
3734
|
-
:iam_role_arn
|
3918
|
+
:iam_role_arn,
|
3919
|
+
:stream_view)
|
3735
3920
|
SENSITIVE = []
|
3736
3921
|
include Aws::Structure
|
3737
3922
|
end
|
@@ -3807,7 +3992,7 @@ module Aws::AppStream
|
|
3807
3992
|
# 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
|
3808
3993
|
# user_settings: [
|
3809
3994
|
# {
|
3810
|
-
# 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
|
3995
|
+
# 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
|
3811
3996
|
# permission: "ENABLED", # required, accepts ENABLED, DISABLED
|
3812
3997
|
# },
|
3813
3998
|
# ],
|
@@ -4024,7 +4209,7 @@ module Aws::AppStream
|
|
4024
4209
|
# data as a hash:
|
4025
4210
|
#
|
4026
4211
|
# {
|
4027
|
-
# 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
|
4212
|
+
# 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
|
4028
4213
|
# permission: "ENABLED", # required, accepts ENABLED, DISABLED
|
4029
4214
|
# }
|
4030
4215
|
#
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-appstream
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.49.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-01-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.109.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.109.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|