aws-sdk-appstream 1.73.0 → 1.74.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-appstream/client.rb +669 -12
- data/lib/aws-sdk-appstream/client_api.rb +308 -4
- data/lib/aws-sdk-appstream/endpoint_parameters.rb +0 -3
- data/lib/aws-sdk-appstream/endpoint_provider.rb +31 -22
- data/lib/aws-sdk-appstream/endpoints.rb +140 -0
- data/lib/aws-sdk-appstream/plugins/endpoints.rb +20 -0
- data/lib/aws-sdk-appstream/types.rb +664 -4
- data/lib/aws-sdk-appstream.rb +2 -2
- metadata +2 -2
@@ -69,12 +69,40 @@ module Aws::AppStream
|
|
69
69
|
#
|
70
70
|
# @!attribute [rw] setup_script_details
|
71
71
|
# The setup script details of the app block.
|
72
|
+
#
|
73
|
+
# This only applies to app blocks with PackagingType `CUSTOM`.
|
72
74
|
# @return [Types::ScriptDetails]
|
73
75
|
#
|
74
76
|
# @!attribute [rw] created_time
|
75
77
|
# The created time of the app block.
|
76
78
|
# @return [Time]
|
77
79
|
#
|
80
|
+
# @!attribute [rw] post_setup_script_details
|
81
|
+
# The post setup script details of the app block.
|
82
|
+
#
|
83
|
+
# This only applies to app blocks with PackagingType `APPSTREAM2`.
|
84
|
+
# @return [Types::ScriptDetails]
|
85
|
+
#
|
86
|
+
# @!attribute [rw] packaging_type
|
87
|
+
# The packaging type of the app block.
|
88
|
+
# @return [String]
|
89
|
+
#
|
90
|
+
# @!attribute [rw] state
|
91
|
+
# The state of the app block.
|
92
|
+
#
|
93
|
+
# An app block with AppStream 2.0 packaging will be in the `INACTIVE`
|
94
|
+
# state if no application package (VHD) is assigned to it. After an
|
95
|
+
# application package (VHD) is created by an app block builder for an
|
96
|
+
# app block, it becomes `ACTIVE`.
|
97
|
+
#
|
98
|
+
# Custom app blocks are always in the `ACTIVE` state and no action is
|
99
|
+
# required to use them.
|
100
|
+
# @return [String]
|
101
|
+
#
|
102
|
+
# @!attribute [rw] app_block_errors
|
103
|
+
# The errors of the app block.
|
104
|
+
# @return [Array<Types::ErrorDetails>]
|
105
|
+
#
|
78
106
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/AppBlock AWS API Documentation
|
79
107
|
#
|
80
108
|
class AppBlock < Struct.new(
|
@@ -84,7 +112,134 @@ module Aws::AppStream
|
|
84
112
|
:display_name,
|
85
113
|
:source_s3_location,
|
86
114
|
:setup_script_details,
|
87
|
-
:created_time
|
115
|
+
:created_time,
|
116
|
+
:post_setup_script_details,
|
117
|
+
:packaging_type,
|
118
|
+
:state,
|
119
|
+
:app_block_errors)
|
120
|
+
SENSITIVE = []
|
121
|
+
include Aws::Structure
|
122
|
+
end
|
123
|
+
|
124
|
+
# Describes an app block builder.
|
125
|
+
#
|
126
|
+
# @!attribute [rw] arn
|
127
|
+
# The ARN of the app block builder.
|
128
|
+
# @return [String]
|
129
|
+
#
|
130
|
+
# @!attribute [rw] name
|
131
|
+
# The name of the app block builder.
|
132
|
+
# @return [String]
|
133
|
+
#
|
134
|
+
# @!attribute [rw] display_name
|
135
|
+
# The display name of the app block builder.
|
136
|
+
# @return [String]
|
137
|
+
#
|
138
|
+
# @!attribute [rw] description
|
139
|
+
# The description of the app block builder.
|
140
|
+
# @return [String]
|
141
|
+
#
|
142
|
+
# @!attribute [rw] platform
|
143
|
+
# The platform of the app block builder.
|
144
|
+
#
|
145
|
+
# `WINDOWS_SERVER_2019` is the only valid value.
|
146
|
+
# @return [String]
|
147
|
+
#
|
148
|
+
# @!attribute [rw] instance_type
|
149
|
+
# The instance type of the app block builder.
|
150
|
+
# @return [String]
|
151
|
+
#
|
152
|
+
# @!attribute [rw] enable_default_internet_access
|
153
|
+
# Indicates whether default internet access is enabled for the app
|
154
|
+
# block builder.
|
155
|
+
# @return [Boolean]
|
156
|
+
#
|
157
|
+
# @!attribute [rw] iam_role_arn
|
158
|
+
# The ARN of the IAM role that is applied to the app block builder.
|
159
|
+
# @return [String]
|
160
|
+
#
|
161
|
+
# @!attribute [rw] vpc_config
|
162
|
+
# The VPC configuration for the app block builder.
|
163
|
+
# @return [Types::VpcConfig]
|
164
|
+
#
|
165
|
+
# @!attribute [rw] state
|
166
|
+
# The state of the app block builder.
|
167
|
+
# @return [String]
|
168
|
+
#
|
169
|
+
# @!attribute [rw] created_time
|
170
|
+
# The creation time of the app block builder.
|
171
|
+
# @return [Time]
|
172
|
+
#
|
173
|
+
# @!attribute [rw] app_block_builder_errors
|
174
|
+
# The app block builder errors.
|
175
|
+
# @return [Array<Types::ResourceError>]
|
176
|
+
#
|
177
|
+
# @!attribute [rw] state_change_reason
|
178
|
+
# The state change reason.
|
179
|
+
# @return [Types::AppBlockBuilderStateChangeReason]
|
180
|
+
#
|
181
|
+
# @!attribute [rw] access_endpoints
|
182
|
+
# The list of interface VPC endpoint (interface endpoint) objects.
|
183
|
+
# Administrators can connect to the app block builder only through the
|
184
|
+
# specified endpoints.
|
185
|
+
# @return [Array<Types::AccessEndpoint>]
|
186
|
+
#
|
187
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/AppBlockBuilder AWS API Documentation
|
188
|
+
#
|
189
|
+
class AppBlockBuilder < Struct.new(
|
190
|
+
:arn,
|
191
|
+
:name,
|
192
|
+
:display_name,
|
193
|
+
:description,
|
194
|
+
:platform,
|
195
|
+
:instance_type,
|
196
|
+
:enable_default_internet_access,
|
197
|
+
:iam_role_arn,
|
198
|
+
:vpc_config,
|
199
|
+
:state,
|
200
|
+
:created_time,
|
201
|
+
:app_block_builder_errors,
|
202
|
+
:state_change_reason,
|
203
|
+
:access_endpoints)
|
204
|
+
SENSITIVE = []
|
205
|
+
include Aws::Structure
|
206
|
+
end
|
207
|
+
|
208
|
+
# Describes an association between an app block builder and app block.
|
209
|
+
#
|
210
|
+
# @!attribute [rw] app_block_arn
|
211
|
+
# The ARN of the app block.
|
212
|
+
# @return [String]
|
213
|
+
#
|
214
|
+
# @!attribute [rw] app_block_builder_name
|
215
|
+
# The name of the app block builder.
|
216
|
+
# @return [String]
|
217
|
+
#
|
218
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/AppBlockBuilderAppBlockAssociation AWS API Documentation
|
219
|
+
#
|
220
|
+
class AppBlockBuilderAppBlockAssociation < Struct.new(
|
221
|
+
:app_block_arn,
|
222
|
+
:app_block_builder_name)
|
223
|
+
SENSITIVE = []
|
224
|
+
include Aws::Structure
|
225
|
+
end
|
226
|
+
|
227
|
+
# Describes the reason why the last app block builder state change
|
228
|
+
# occurred.
|
229
|
+
#
|
230
|
+
# @!attribute [rw] code
|
231
|
+
# The state change reason code.
|
232
|
+
# @return [String]
|
233
|
+
#
|
234
|
+
# @!attribute [rw] message
|
235
|
+
# The state change reason message.
|
236
|
+
# @return [String]
|
237
|
+
#
|
238
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/AppBlockBuilderStateChangeReason AWS API Documentation
|
239
|
+
#
|
240
|
+
class AppBlockBuilderStateChangeReason < Struct.new(
|
241
|
+
:code,
|
242
|
+
:message)
|
88
243
|
SENSITIVE = []
|
89
244
|
include Aws::Structure
|
90
245
|
end
|
@@ -245,6 +400,35 @@ module Aws::AppStream
|
|
245
400
|
include Aws::Structure
|
246
401
|
end
|
247
402
|
|
403
|
+
# @!attribute [rw] app_block_arn
|
404
|
+
# The ARN of the app block.
|
405
|
+
# @return [String]
|
406
|
+
#
|
407
|
+
# @!attribute [rw] app_block_builder_name
|
408
|
+
# The name of the app block builder.
|
409
|
+
# @return [String]
|
410
|
+
#
|
411
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/AssociateAppBlockBuilderAppBlockRequest AWS API Documentation
|
412
|
+
#
|
413
|
+
class AssociateAppBlockBuilderAppBlockRequest < Struct.new(
|
414
|
+
:app_block_arn,
|
415
|
+
:app_block_builder_name)
|
416
|
+
SENSITIVE = []
|
417
|
+
include Aws::Structure
|
418
|
+
end
|
419
|
+
|
420
|
+
# @!attribute [rw] app_block_builder_app_block_association
|
421
|
+
# The list of app block builders associated with app blocks.
|
422
|
+
# @return [Types::AppBlockBuilderAppBlockAssociation]
|
423
|
+
#
|
424
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/AssociateAppBlockBuilderAppBlockResult AWS API Documentation
|
425
|
+
#
|
426
|
+
class AssociateAppBlockBuilderAppBlockResult < Struct.new(
|
427
|
+
:app_block_builder_app_block_association)
|
428
|
+
SENSITIVE = []
|
429
|
+
include Aws::Structure
|
430
|
+
end
|
431
|
+
|
248
432
|
# @!attribute [rw] fleet_name
|
249
433
|
# The name of the fleet.
|
250
434
|
# @return [String]
|
@@ -501,6 +685,160 @@ module Aws::AppStream
|
|
501
685
|
include Aws::Structure
|
502
686
|
end
|
503
687
|
|
688
|
+
# @!attribute [rw] name
|
689
|
+
# The unique name for the app block builder.
|
690
|
+
# @return [String]
|
691
|
+
#
|
692
|
+
# @!attribute [rw] description
|
693
|
+
# The description of the app block builder.
|
694
|
+
# @return [String]
|
695
|
+
#
|
696
|
+
# @!attribute [rw] display_name
|
697
|
+
# The display name of the app block builder.
|
698
|
+
# @return [String]
|
699
|
+
#
|
700
|
+
# @!attribute [rw] tags
|
701
|
+
# The tags to associate with the app block builder. A tag is a
|
702
|
+
# key-value pair, and the value is optional. For example,
|
703
|
+
# Environment=Test. If you do not specify a value, Environment=.
|
704
|
+
#
|
705
|
+
# If you do not specify a value, the value is set to an empty string.
|
706
|
+
#
|
707
|
+
# Generally allowed characters are: letters, numbers, and spaces
|
708
|
+
# representable in UTF-8, and the following special characters:
|
709
|
+
#
|
710
|
+
# \_ . : / = + \\ - @
|
711
|
+
#
|
712
|
+
# For more information, see [Tagging Your Resources][1] in the *Amazon
|
713
|
+
# AppStream 2.0 Administration Guide*.
|
714
|
+
#
|
715
|
+
#
|
716
|
+
#
|
717
|
+
# [1]: https://docs.aws.amazon.com/appstream2/latest/developerguide/tagging-basic.html
|
718
|
+
# @return [Hash<String,String>]
|
719
|
+
#
|
720
|
+
# @!attribute [rw] platform
|
721
|
+
# The platform of the app block builder.
|
722
|
+
#
|
723
|
+
# `WINDOWS_SERVER_2019` is the only valid value.
|
724
|
+
# @return [String]
|
725
|
+
#
|
726
|
+
# @!attribute [rw] instance_type
|
727
|
+
# The instance type to use when launching the app block builder. The
|
728
|
+
# following instance types are available:
|
729
|
+
#
|
730
|
+
# * stream.standard.small
|
731
|
+
#
|
732
|
+
# * stream.standard.medium
|
733
|
+
#
|
734
|
+
# * stream.standard.large
|
735
|
+
#
|
736
|
+
# * stream.standard.xlarge
|
737
|
+
#
|
738
|
+
# * stream.standard.2xlarge
|
739
|
+
# @return [String]
|
740
|
+
#
|
741
|
+
# @!attribute [rw] vpc_config
|
742
|
+
# The VPC configuration for the app block builder.
|
743
|
+
#
|
744
|
+
# App block builders require that you specify at least two subnets in
|
745
|
+
# different availability zones.
|
746
|
+
# @return [Types::VpcConfig]
|
747
|
+
#
|
748
|
+
# @!attribute [rw] enable_default_internet_access
|
749
|
+
# Enables or disables default internet access for the app block
|
750
|
+
# builder.
|
751
|
+
# @return [Boolean]
|
752
|
+
#
|
753
|
+
# @!attribute [rw] iam_role_arn
|
754
|
+
# The Amazon Resource Name (ARN) of the IAM role to apply to the app
|
755
|
+
# block builder. To assume a role, the app block builder calls the AWS
|
756
|
+
# Security Token Service (STS) `AssumeRole` API operation and passes
|
757
|
+
# the ARN of the role to use. The operation creates a new session with
|
758
|
+
# temporary credentials. AppStream 2.0 retrieves the temporary
|
759
|
+
# credentials and creates the **appstream\_machine\_role** credential
|
760
|
+
# profile on the instance.
|
761
|
+
#
|
762
|
+
# For more information, see [Using an IAM Role to Grant Permissions to
|
763
|
+
# Applications and Scripts Running on AppStream 2.0 Streaming
|
764
|
+
# Instances][1] in the *Amazon AppStream 2.0 Administration Guide*.
|
765
|
+
#
|
766
|
+
#
|
767
|
+
#
|
768
|
+
# [1]: https://docs.aws.amazon.com/appstream2/latest/developerguide/using-iam-roles-to-grant-permissions-to-applications-scripts-streaming-instances.html
|
769
|
+
# @return [String]
|
770
|
+
#
|
771
|
+
# @!attribute [rw] access_endpoints
|
772
|
+
# The list of interface VPC endpoint (interface endpoint) objects.
|
773
|
+
# Administrators can connect to the app block builder only through the
|
774
|
+
# specified endpoints.
|
775
|
+
# @return [Array<Types::AccessEndpoint>]
|
776
|
+
#
|
777
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateAppBlockBuilderRequest AWS API Documentation
|
778
|
+
#
|
779
|
+
class CreateAppBlockBuilderRequest < Struct.new(
|
780
|
+
:name,
|
781
|
+
:description,
|
782
|
+
:display_name,
|
783
|
+
:tags,
|
784
|
+
:platform,
|
785
|
+
:instance_type,
|
786
|
+
:vpc_config,
|
787
|
+
:enable_default_internet_access,
|
788
|
+
:iam_role_arn,
|
789
|
+
:access_endpoints)
|
790
|
+
SENSITIVE = []
|
791
|
+
include Aws::Structure
|
792
|
+
end
|
793
|
+
|
794
|
+
# @!attribute [rw] app_block_builder
|
795
|
+
# Describes an app block builder.
|
796
|
+
# @return [Types::AppBlockBuilder]
|
797
|
+
#
|
798
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateAppBlockBuilderResult AWS API Documentation
|
799
|
+
#
|
800
|
+
class CreateAppBlockBuilderResult < Struct.new(
|
801
|
+
:app_block_builder)
|
802
|
+
SENSITIVE = []
|
803
|
+
include Aws::Structure
|
804
|
+
end
|
805
|
+
|
806
|
+
# @!attribute [rw] app_block_builder_name
|
807
|
+
# The name of the app block builder.
|
808
|
+
# @return [String]
|
809
|
+
#
|
810
|
+
# @!attribute [rw] validity
|
811
|
+
# The time that the streaming URL will be valid, in seconds. Specify a
|
812
|
+
# value between 1 and 604800 seconds. The default is 3600 seconds.
|
813
|
+
# @return [Integer]
|
814
|
+
#
|
815
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateAppBlockBuilderStreamingURLRequest AWS API Documentation
|
816
|
+
#
|
817
|
+
class CreateAppBlockBuilderStreamingURLRequest < Struct.new(
|
818
|
+
:app_block_builder_name,
|
819
|
+
:validity)
|
820
|
+
SENSITIVE = []
|
821
|
+
include Aws::Structure
|
822
|
+
end
|
823
|
+
|
824
|
+
# @!attribute [rw] streaming_url
|
825
|
+
# The URL to start the streaming session.
|
826
|
+
# @return [String]
|
827
|
+
#
|
828
|
+
# @!attribute [rw] expires
|
829
|
+
# The elapsed time, in seconds after the Unix epoch, when this URL
|
830
|
+
# expires.
|
831
|
+
# @return [Time]
|
832
|
+
#
|
833
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateAppBlockBuilderStreamingURLResult AWS API Documentation
|
834
|
+
#
|
835
|
+
class CreateAppBlockBuilderStreamingURLResult < Struct.new(
|
836
|
+
:streaming_url,
|
837
|
+
:expires)
|
838
|
+
SENSITIVE = []
|
839
|
+
include Aws::Structure
|
840
|
+
end
|
841
|
+
|
504
842
|
# @!attribute [rw] name
|
505
843
|
# The name of the app block.
|
506
844
|
# @return [String]
|
@@ -519,13 +857,23 @@ module Aws::AppStream
|
|
519
857
|
# @return [Types::S3Location]
|
520
858
|
#
|
521
859
|
# @!attribute [rw] setup_script_details
|
522
|
-
# The setup script details of the app block.
|
860
|
+
# The setup script details of the app block. This must be provided for
|
861
|
+
# the `CUSTOM` PackagingType.
|
523
862
|
# @return [Types::ScriptDetails]
|
524
863
|
#
|
525
864
|
# @!attribute [rw] tags
|
526
865
|
# The tags assigned to the app block.
|
527
866
|
# @return [Hash<String,String>]
|
528
867
|
#
|
868
|
+
# @!attribute [rw] post_setup_script_details
|
869
|
+
# The post setup script details of the app block. This can only be
|
870
|
+
# provided for the `APPSTREAM2` PackagingType.
|
871
|
+
# @return [Types::ScriptDetails]
|
872
|
+
#
|
873
|
+
# @!attribute [rw] packaging_type
|
874
|
+
# The packaging type of the app block.
|
875
|
+
# @return [String]
|
876
|
+
#
|
529
877
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateAppBlockRequest AWS API Documentation
|
530
878
|
#
|
531
879
|
class CreateAppBlockRequest < Struct.new(
|
@@ -534,7 +882,9 @@ module Aws::AppStream
|
|
534
882
|
:display_name,
|
535
883
|
:source_s3_location,
|
536
884
|
:setup_script_details,
|
537
|
-
:tags
|
885
|
+
:tags,
|
886
|
+
:post_setup_script_details,
|
887
|
+
:packaging_type)
|
538
888
|
SENSITIVE = []
|
539
889
|
include Aws::Structure
|
540
890
|
end
|
@@ -1587,6 +1937,22 @@ module Aws::AppStream
|
|
1587
1937
|
#
|
1588
1938
|
class CreateUserResult < Aws::EmptyStructure; end
|
1589
1939
|
|
1940
|
+
# @!attribute [rw] name
|
1941
|
+
# The name of the app block builder.
|
1942
|
+
# @return [String]
|
1943
|
+
#
|
1944
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DeleteAppBlockBuilderRequest AWS API Documentation
|
1945
|
+
#
|
1946
|
+
class DeleteAppBlockBuilderRequest < Struct.new(
|
1947
|
+
:name)
|
1948
|
+
SENSITIVE = []
|
1949
|
+
include Aws::Structure
|
1950
|
+
end
|
1951
|
+
|
1952
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DeleteAppBlockBuilderResult AWS API Documentation
|
1953
|
+
#
|
1954
|
+
class DeleteAppBlockBuilderResult < Aws::EmptyStructure; end
|
1955
|
+
|
1590
1956
|
# @!attribute [rw] name
|
1591
1957
|
# The name of the app block.
|
1592
1958
|
# @return [String]
|
@@ -1793,6 +2159,93 @@ module Aws::AppStream
|
|
1793
2159
|
#
|
1794
2160
|
class DeleteUserResult < Aws::EmptyStructure; end
|
1795
2161
|
|
2162
|
+
# @!attribute [rw] app_block_arn
|
2163
|
+
# The ARN of the app block.
|
2164
|
+
# @return [String]
|
2165
|
+
#
|
2166
|
+
# @!attribute [rw] app_block_builder_name
|
2167
|
+
# The name of the app block builder.
|
2168
|
+
# @return [String]
|
2169
|
+
#
|
2170
|
+
# @!attribute [rw] max_results
|
2171
|
+
# The maximum size of each page of results.
|
2172
|
+
# @return [Integer]
|
2173
|
+
#
|
2174
|
+
# @!attribute [rw] next_token
|
2175
|
+
# The pagination token used to retrieve the next page of results for
|
2176
|
+
# this operation.
|
2177
|
+
# @return [String]
|
2178
|
+
#
|
2179
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DescribeAppBlockBuilderAppBlockAssociationsRequest AWS API Documentation
|
2180
|
+
#
|
2181
|
+
class DescribeAppBlockBuilderAppBlockAssociationsRequest < Struct.new(
|
2182
|
+
:app_block_arn,
|
2183
|
+
:app_block_builder_name,
|
2184
|
+
:max_results,
|
2185
|
+
:next_token)
|
2186
|
+
SENSITIVE = []
|
2187
|
+
include Aws::Structure
|
2188
|
+
end
|
2189
|
+
|
2190
|
+
# @!attribute [rw] app_block_builder_app_block_associations
|
2191
|
+
# This list of app block builders associated with app blocks.
|
2192
|
+
# @return [Array<Types::AppBlockBuilderAppBlockAssociation>]
|
2193
|
+
#
|
2194
|
+
# @!attribute [rw] next_token
|
2195
|
+
# The pagination token used to retrieve the next page of results for
|
2196
|
+
# this operation.
|
2197
|
+
# @return [String]
|
2198
|
+
#
|
2199
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DescribeAppBlockBuilderAppBlockAssociationsResult AWS API Documentation
|
2200
|
+
#
|
2201
|
+
class DescribeAppBlockBuilderAppBlockAssociationsResult < Struct.new(
|
2202
|
+
:app_block_builder_app_block_associations,
|
2203
|
+
:next_token)
|
2204
|
+
SENSITIVE = []
|
2205
|
+
include Aws::Structure
|
2206
|
+
end
|
2207
|
+
|
2208
|
+
# @!attribute [rw] names
|
2209
|
+
# The names of the app block builders.
|
2210
|
+
# @return [Array<String>]
|
2211
|
+
#
|
2212
|
+
# @!attribute [rw] next_token
|
2213
|
+
# The pagination token used to retrieve the next page of results for
|
2214
|
+
# this operation.
|
2215
|
+
# @return [String]
|
2216
|
+
#
|
2217
|
+
# @!attribute [rw] max_results
|
2218
|
+
# The maximum size of each page of results. The maximum value is 25.
|
2219
|
+
# @return [Integer]
|
2220
|
+
#
|
2221
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DescribeAppBlockBuildersRequest AWS API Documentation
|
2222
|
+
#
|
2223
|
+
class DescribeAppBlockBuildersRequest < Struct.new(
|
2224
|
+
:names,
|
2225
|
+
:next_token,
|
2226
|
+
:max_results)
|
2227
|
+
SENSITIVE = []
|
2228
|
+
include Aws::Structure
|
2229
|
+
end
|
2230
|
+
|
2231
|
+
# @!attribute [rw] app_block_builders
|
2232
|
+
# The list that describes one or more app block builders.
|
2233
|
+
# @return [Array<Types::AppBlockBuilder>]
|
2234
|
+
#
|
2235
|
+
# @!attribute [rw] next_token
|
2236
|
+
# The pagination token used to retrieve the next page of results for
|
2237
|
+
# this operation.
|
2238
|
+
# @return [String]
|
2239
|
+
#
|
2240
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DescribeAppBlockBuildersResult AWS API Documentation
|
2241
|
+
#
|
2242
|
+
class DescribeAppBlockBuildersResult < Struct.new(
|
2243
|
+
:app_block_builders,
|
2244
|
+
:next_token)
|
2245
|
+
SENSITIVE = []
|
2246
|
+
include Aws::Structure
|
2247
|
+
end
|
2248
|
+
|
1796
2249
|
# @!attribute [rw] arns
|
1797
2250
|
# The ARNs of the app blocks.
|
1798
2251
|
# @return [Array<String>]
|
@@ -2493,6 +2946,27 @@ module Aws::AppStream
|
|
2493
2946
|
#
|
2494
2947
|
class DisableUserResult < Aws::EmptyStructure; end
|
2495
2948
|
|
2949
|
+
# @!attribute [rw] app_block_arn
|
2950
|
+
# The ARN of the app block.
|
2951
|
+
# @return [String]
|
2952
|
+
#
|
2953
|
+
# @!attribute [rw] app_block_builder_name
|
2954
|
+
# The name of the app block builder.
|
2955
|
+
# @return [String]
|
2956
|
+
#
|
2957
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DisassociateAppBlockBuilderAppBlockRequest AWS API Documentation
|
2958
|
+
#
|
2959
|
+
class DisassociateAppBlockBuilderAppBlockRequest < Struct.new(
|
2960
|
+
:app_block_arn,
|
2961
|
+
:app_block_builder_name)
|
2962
|
+
SENSITIVE = []
|
2963
|
+
include Aws::Structure
|
2964
|
+
end
|
2965
|
+
|
2966
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DisassociateAppBlockBuilderAppBlockResult AWS API Documentation
|
2967
|
+
#
|
2968
|
+
class DisassociateAppBlockBuilderAppBlockResult < Aws::EmptyStructure; end
|
2969
|
+
|
2496
2970
|
# @!attribute [rw] fleet_name
|
2497
2971
|
# The name of the fleet.
|
2498
2972
|
# @return [String]
|
@@ -2745,6 +3219,25 @@ module Aws::AppStream
|
|
2745
3219
|
include Aws::Structure
|
2746
3220
|
end
|
2747
3221
|
|
3222
|
+
# The error details.
|
3223
|
+
#
|
3224
|
+
# @!attribute [rw] error_code
|
3225
|
+
# The error code.
|
3226
|
+
# @return [String]
|
3227
|
+
#
|
3228
|
+
# @!attribute [rw] error_message
|
3229
|
+
# The error message.
|
3230
|
+
# @return [String]
|
3231
|
+
#
|
3232
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/ErrorDetails AWS API Documentation
|
3233
|
+
#
|
3234
|
+
class ErrorDetails < Struct.new(
|
3235
|
+
:error_code,
|
3236
|
+
:error_message)
|
3237
|
+
SENSITIVE = []
|
3238
|
+
include Aws::Structure
|
3239
|
+
end
|
3240
|
+
|
2748
3241
|
# @!attribute [rw] session_id
|
2749
3242
|
# The identifier of the streaming session.
|
2750
3243
|
# @return [String]
|
@@ -3769,6 +4262,23 @@ module Aws::AppStream
|
|
3769
4262
|
#
|
3770
4263
|
# @!attribute [rw] s3_key
|
3771
4264
|
# The S3 key of the S3 object.
|
4265
|
+
#
|
4266
|
+
# This is required when used for the following:
|
4267
|
+
#
|
4268
|
+
# * IconS3Location (Actions: CreateApplication and UpdateApplication)
|
4269
|
+
#
|
4270
|
+
# * SessionScriptS3Location (Actions: CreateFleet and UpdateFleet)
|
4271
|
+
#
|
4272
|
+
# * ScriptDetails (Actions: CreateAppBlock)
|
4273
|
+
#
|
4274
|
+
# * SourceS3Location when creating an app block with `CUSTOM`
|
4275
|
+
# PackagingType (Actions: CreateAppBlock)
|
4276
|
+
#
|
4277
|
+
# * SourceS3Location when creating an app block with `APPSTREAM2`
|
4278
|
+
# PackagingType, and using an existing application package (VHD
|
4279
|
+
# file). In this case, `S3Key` refers to the VHD file. If a new
|
4280
|
+
# application package is required, then `S3Key` is not required.
|
4281
|
+
# (Actions: CreateAppBlock)
|
3772
4282
|
# @return [String]
|
3773
4283
|
#
|
3774
4284
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/S3Location AWS API Documentation
|
@@ -4029,6 +4539,30 @@ module Aws::AppStream
|
|
4029
4539
|
include Aws::Structure
|
4030
4540
|
end
|
4031
4541
|
|
4542
|
+
# @!attribute [rw] name
|
4543
|
+
# The name of the app block builder.
|
4544
|
+
# @return [String]
|
4545
|
+
#
|
4546
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/StartAppBlockBuilderRequest AWS API Documentation
|
4547
|
+
#
|
4548
|
+
class StartAppBlockBuilderRequest < Struct.new(
|
4549
|
+
:name)
|
4550
|
+
SENSITIVE = []
|
4551
|
+
include Aws::Structure
|
4552
|
+
end
|
4553
|
+
|
4554
|
+
# @!attribute [rw] app_block_builder
|
4555
|
+
# Describes an app block builder.
|
4556
|
+
# @return [Types::AppBlockBuilder]
|
4557
|
+
#
|
4558
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/StartAppBlockBuilderResult AWS API Documentation
|
4559
|
+
#
|
4560
|
+
class StartAppBlockBuilderResult < Struct.new(
|
4561
|
+
:app_block_builder)
|
4562
|
+
SENSITIVE = []
|
4563
|
+
include Aws::Structure
|
4564
|
+
end
|
4565
|
+
|
4032
4566
|
# @!attribute [rw] name
|
4033
4567
|
# The name of the fleet.
|
4034
4568
|
# @return [String]
|
@@ -4076,6 +4610,30 @@ module Aws::AppStream
|
|
4076
4610
|
include Aws::Structure
|
4077
4611
|
end
|
4078
4612
|
|
4613
|
+
# @!attribute [rw] name
|
4614
|
+
# The name of the app block builder.
|
4615
|
+
# @return [String]
|
4616
|
+
#
|
4617
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/StopAppBlockBuilderRequest AWS API Documentation
|
4618
|
+
#
|
4619
|
+
class StopAppBlockBuilderRequest < Struct.new(
|
4620
|
+
:name)
|
4621
|
+
SENSITIVE = []
|
4622
|
+
include Aws::Structure
|
4623
|
+
end
|
4624
|
+
|
4625
|
+
# @!attribute [rw] app_block_builder
|
4626
|
+
# Describes an app block builder.
|
4627
|
+
# @return [Types::AppBlockBuilder]
|
4628
|
+
#
|
4629
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/StopAppBlockBuilderResult AWS API Documentation
|
4630
|
+
#
|
4631
|
+
class StopAppBlockBuilderResult < Struct.new(
|
4632
|
+
:app_block_builder)
|
4633
|
+
SENSITIVE = []
|
4634
|
+
include Aws::Structure
|
4635
|
+
end
|
4636
|
+
|
4079
4637
|
# @!attribute [rw] name
|
4080
4638
|
# The name of the fleet.
|
4081
4639
|
# @return [String]
|
@@ -4207,6 +4765,108 @@ module Aws::AppStream
|
|
4207
4765
|
#
|
4208
4766
|
class UntagResourceResponse < Aws::EmptyStructure; end
|
4209
4767
|
|
4768
|
+
# @!attribute [rw] name
|
4769
|
+
# The unique name for the app block builder.
|
4770
|
+
# @return [String]
|
4771
|
+
#
|
4772
|
+
# @!attribute [rw] description
|
4773
|
+
# The description of the app block builder.
|
4774
|
+
# @return [String]
|
4775
|
+
#
|
4776
|
+
# @!attribute [rw] display_name
|
4777
|
+
# The display name of the app block builder.
|
4778
|
+
# @return [String]
|
4779
|
+
#
|
4780
|
+
# @!attribute [rw] platform
|
4781
|
+
# The platform of the app block builder.
|
4782
|
+
#
|
4783
|
+
# `WINDOWS_SERVER_2019` is the only valid value.
|
4784
|
+
# @return [String]
|
4785
|
+
#
|
4786
|
+
# @!attribute [rw] instance_type
|
4787
|
+
# The instance type to use when launching the app block builder. The
|
4788
|
+
# following instance types are available:
|
4789
|
+
#
|
4790
|
+
# * stream.standard.small
|
4791
|
+
#
|
4792
|
+
# * stream.standard.medium
|
4793
|
+
#
|
4794
|
+
# * stream.standard.large
|
4795
|
+
#
|
4796
|
+
# * stream.standard.xlarge
|
4797
|
+
#
|
4798
|
+
# * stream.standard.2xlarge
|
4799
|
+
# @return [String]
|
4800
|
+
#
|
4801
|
+
# @!attribute [rw] vpc_config
|
4802
|
+
# The VPC configuration for the app block builder.
|
4803
|
+
#
|
4804
|
+
# App block builders require that you specify at least two subnets in
|
4805
|
+
# different availability zones.
|
4806
|
+
# @return [Types::VpcConfig]
|
4807
|
+
#
|
4808
|
+
# @!attribute [rw] enable_default_internet_access
|
4809
|
+
# Enables or disables default internet access for the app block
|
4810
|
+
# builder.
|
4811
|
+
# @return [Boolean]
|
4812
|
+
#
|
4813
|
+
# @!attribute [rw] iam_role_arn
|
4814
|
+
# The Amazon Resource Name (ARN) of the IAM role to apply to the app
|
4815
|
+
# block builder. To assume a role, the app block builder calls the AWS
|
4816
|
+
# Security Token Service (STS) `AssumeRole` API operation and passes
|
4817
|
+
# the ARN of the role to use. The operation creates a new session with
|
4818
|
+
# temporary credentials. AppStream 2.0 retrieves the temporary
|
4819
|
+
# credentials and creates the **appstream\_machine\_role** credential
|
4820
|
+
# profile on the instance.
|
4821
|
+
#
|
4822
|
+
# For more information, see [Using an IAM Role to Grant Permissions to
|
4823
|
+
# Applications and Scripts Running on AppStream 2.0 Streaming
|
4824
|
+
# Instances][1] in the *Amazon AppStream 2.0 Administration Guide*.
|
4825
|
+
#
|
4826
|
+
#
|
4827
|
+
#
|
4828
|
+
# [1]: https://docs.aws.amazon.com/appstream2/latest/developerguide/using-iam-roles-to-grant-permissions-to-applications-scripts-streaming-instances.html
|
4829
|
+
# @return [String]
|
4830
|
+
#
|
4831
|
+
# @!attribute [rw] access_endpoints
|
4832
|
+
# The list of interface VPC endpoint (interface endpoint) objects.
|
4833
|
+
# Administrators can connect to the app block builder only through the
|
4834
|
+
# specified endpoints.
|
4835
|
+
# @return [Array<Types::AccessEndpoint>]
|
4836
|
+
#
|
4837
|
+
# @!attribute [rw] attributes_to_delete
|
4838
|
+
# The attributes to delete from the app block builder.
|
4839
|
+
# @return [Array<String>]
|
4840
|
+
#
|
4841
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/UpdateAppBlockBuilderRequest AWS API Documentation
|
4842
|
+
#
|
4843
|
+
class UpdateAppBlockBuilderRequest < Struct.new(
|
4844
|
+
:name,
|
4845
|
+
:description,
|
4846
|
+
:display_name,
|
4847
|
+
:platform,
|
4848
|
+
:instance_type,
|
4849
|
+
:vpc_config,
|
4850
|
+
:enable_default_internet_access,
|
4851
|
+
:iam_role_arn,
|
4852
|
+
:access_endpoints,
|
4853
|
+
:attributes_to_delete)
|
4854
|
+
SENSITIVE = []
|
4855
|
+
include Aws::Structure
|
4856
|
+
end
|
4857
|
+
|
4858
|
+
# @!attribute [rw] app_block_builder
|
4859
|
+
# Describes an app block builder.
|
4860
|
+
# @return [Types::AppBlockBuilder]
|
4861
|
+
#
|
4862
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/UpdateAppBlockBuilderResult AWS API Documentation
|
4863
|
+
#
|
4864
|
+
class UpdateAppBlockBuilderResult < Struct.new(
|
4865
|
+
:app_block_builder)
|
4866
|
+
SENSITIVE = []
|
4867
|
+
include Aws::Structure
|
4868
|
+
end
|
4869
|
+
|
4210
4870
|
# @!attribute [rw] name
|
4211
4871
|
# The name of the application. This name is visible to users when
|
4212
4872
|
# display name is not specified.
|
@@ -4486,7 +5146,7 @@ module Aws::AppStream
|
|
4486
5146
|
# this time elapses, the instance is terminated and replaced by a new
|
4487
5147
|
# instance.
|
4488
5148
|
#
|
4489
|
-
# Specify a value between 600 and
|
5149
|
+
# Specify a value between 600 and 432000.
|
4490
5150
|
# @return [Integer]
|
4491
5151
|
#
|
4492
5152
|
# @!attribute [rw] disconnect_timeout_in_seconds
|