aws-sdk-appstream 1.38.0 → 1.43.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 +5 -5
- data/lib/aws-sdk-appstream.rb +9 -4
- data/lib/aws-sdk-appstream/client.rb +86 -18
- data/lib/aws-sdk-appstream/client_api.rb +2 -0
- data/lib/aws-sdk-appstream/errors.rb +35 -11
- data/lib/aws-sdk-appstream/resource.rb +3 -0
- data/lib/aws-sdk-appstream/types.rb +118 -0
- data/lib/aws-sdk-appstream/waiters.rb +64 -0
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: e98f219bb957755da9d40c5d008a6aed0bdfb29fa6973962ff8fc7a33be666ff
|
4
|
+
data.tar.gz: 66033f570bd2d401150a8213de3e7d069b413bd1566c06eeb3b0def8c7f2112d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 93cafa2bf1380e593e30d46aace3b99a9fe69162d86891d12b873ab5f80a216e43c4eb4b2d10e578a1d1838c855f6edde5029bd0681d57a2c3c26e44262f1635
|
7
|
+
data.tar.gz: dfef9a296806cb2372b7f0a4516f2f18b3d06d856696a98824df169a77d2b2dec54d5a14f2cfd16f9a6ac2aafaf7734f289c7300c53d40dc5c26ee2a3d6a082a
|
data/lib/aws-sdk-appstream.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -25,17 +27,20 @@ require_relative 'aws-sdk-appstream/customizations'
|
|
25
27
|
# methods each accept a hash of request parameters and return a response
|
26
28
|
# structure.
|
27
29
|
#
|
30
|
+
# app_stream = Aws::AppStream::Client.new
|
31
|
+
# resp = app_stream.associate_fleet(params)
|
32
|
+
#
|
28
33
|
# See {Client} for more information.
|
29
34
|
#
|
30
35
|
# # Errors
|
31
36
|
#
|
32
|
-
# Errors returned from Amazon AppStream
|
33
|
-
# extend {Errors::ServiceError}.
|
37
|
+
# Errors returned from Amazon AppStream are defined in the
|
38
|
+
# {Errors} module and all extend {Errors::ServiceError}.
|
34
39
|
#
|
35
40
|
# begin
|
36
41
|
# # do stuff
|
37
42
|
# rescue Aws::AppStream::Errors::ServiceError
|
38
|
-
# # rescues all
|
43
|
+
# # rescues all Amazon AppStream API errors
|
39
44
|
# end
|
40
45
|
#
|
41
46
|
# See {Errors} for more information.
|
@@ -43,6 +48,6 @@ require_relative 'aws-sdk-appstream/customizations'
|
|
43
48
|
# @service
|
44
49
|
module Aws::AppStream
|
45
50
|
|
46
|
-
GEM_VERSION = '1.
|
51
|
+
GEM_VERSION = '1.43.0'
|
47
52
|
|
48
53
|
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -24,12 +26,25 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
24
26
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
25
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
26
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
|
+
require 'aws-sdk-core/plugins/http_checksum.rb'
|
27
30
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
28
31
|
require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
|
29
32
|
|
30
33
|
Aws::Plugins::GlobalConfiguration.add_identifier(:appstream)
|
31
34
|
|
32
35
|
module Aws::AppStream
|
36
|
+
# An API client for AppStream. To construct a client, you need to configure a `:region` and `:credentials`.
|
37
|
+
#
|
38
|
+
# client = Aws::AppStream::Client.new(
|
39
|
+
# region: region_name,
|
40
|
+
# credentials: credentials,
|
41
|
+
# # ...
|
42
|
+
# )
|
43
|
+
#
|
44
|
+
# For details on configuring region and credentials see
|
45
|
+
# the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
|
46
|
+
#
|
47
|
+
# See {#initialize} for a full list of supported configuration options.
|
33
48
|
class Client < Seahorse::Client::Base
|
34
49
|
|
35
50
|
include Aws::ClientStubs
|
@@ -57,6 +72,7 @@ module Aws::AppStream
|
|
57
72
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
58
73
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
59
74
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
60
76
|
add_plugin(Aws::Plugins::SignatureV4)
|
61
77
|
add_plugin(Aws::Plugins::Protocols::JsonRpc)
|
62
78
|
|
@@ -93,7 +109,7 @@ module Aws::AppStream
|
|
93
109
|
# @option options [required, String] :region
|
94
110
|
# The AWS region to connect to. The configured `:region` is
|
95
111
|
# used to determine the service `:endpoint`. When not passed,
|
96
|
-
# a default `:region` is
|
112
|
+
# a default `:region` is searched for in the following locations:
|
97
113
|
#
|
98
114
|
# * `Aws.config[:region]`
|
99
115
|
# * `ENV['AWS_REGION']`
|
@@ -108,6 +124,12 @@ module Aws::AppStream
|
|
108
124
|
# When set to `true`, a thread polling for endpoints will be running in
|
109
125
|
# the background every 60 secs (default). Defaults to `false`.
|
110
126
|
#
|
127
|
+
# @option options [Boolean] :adaptive_retry_wait_to_fill (true)
|
128
|
+
# Used only in `adaptive` retry mode. When true, the request will sleep
|
129
|
+
# until there is sufficent client side capacity to retry the request.
|
130
|
+
# When false, the request will raise a `RetryCapacityNotAvailableError` and will
|
131
|
+
# not retry instead of sleeping.
|
132
|
+
#
|
111
133
|
# @option options [Boolean] :client_side_monitoring (false)
|
112
134
|
# When `true`, client-side metrics will be collected for all API requests from
|
113
135
|
# this client.
|
@@ -132,6 +154,10 @@ module Aws::AppStream
|
|
132
154
|
# When `true`, an attempt is made to coerce request parameters into
|
133
155
|
# the required types.
|
134
156
|
#
|
157
|
+
# @option options [Boolean] :correct_clock_skew (true)
|
158
|
+
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
159
|
+
# a clock skew correction and retry requests with skewed client clocks.
|
160
|
+
#
|
135
161
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
136
162
|
# Set to true to disable SDK automatically adding host prefix
|
137
163
|
# to default service endpoint when available.
|
@@ -139,7 +165,7 @@ module Aws::AppStream
|
|
139
165
|
# @option options [String] :endpoint
|
140
166
|
# The client endpoint is normally constructed from the `:region`
|
141
167
|
# option. You should only configure an `:endpoint` when connecting
|
142
|
-
# to test endpoints. This should be
|
168
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
143
169
|
#
|
144
170
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
145
171
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -154,7 +180,7 @@ module Aws::AppStream
|
|
154
180
|
# requests fetching endpoints information. Defaults to 60 sec.
|
155
181
|
#
|
156
182
|
# @option options [Boolean] :endpoint_discovery (false)
|
157
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
183
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
158
184
|
#
|
159
185
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
160
186
|
# The log formatter.
|
@@ -166,15 +192,29 @@ module Aws::AppStream
|
|
166
192
|
# The Logger instance to send log messages to. If this option
|
167
193
|
# is not set, logging will be disabled.
|
168
194
|
#
|
195
|
+
# @option options [Integer] :max_attempts (3)
|
196
|
+
# An integer representing the maximum number attempts that will be made for
|
197
|
+
# a single request, including the initial attempt. For example,
|
198
|
+
# setting this value to 5 will result in a request being retried up to
|
199
|
+
# 4 times. Used in `standard` and `adaptive` retry modes.
|
200
|
+
#
|
169
201
|
# @option options [String] :profile ("default")
|
170
202
|
# Used when loading credentials from the shared credentials file
|
171
203
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
172
204
|
#
|
205
|
+
# @option options [Proc] :retry_backoff
|
206
|
+
# A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
|
207
|
+
# This option is only used in the `legacy` retry mode.
|
208
|
+
#
|
173
209
|
# @option options [Float] :retry_base_delay (0.3)
|
174
|
-
# The base delay in seconds used by the default backoff function.
|
210
|
+
# The base delay in seconds used by the default backoff function. This option
|
211
|
+
# is only used in the `legacy` retry mode.
|
175
212
|
#
|
176
213
|
# @option options [Symbol] :retry_jitter (:none)
|
177
|
-
# A delay randomiser function used by the default backoff function.
|
214
|
+
# A delay randomiser function used by the default backoff function.
|
215
|
+
# Some predefined functions can be referenced by name - :none, :equal, :full,
|
216
|
+
# otherwise a Proc that takes and returns a number. This option is only used
|
217
|
+
# in the `legacy` retry mode.
|
178
218
|
#
|
179
219
|
# @see https://www.awsarchitectureblog.com/2015/03/backoff.html
|
180
220
|
#
|
@@ -182,11 +222,30 @@ module Aws::AppStream
|
|
182
222
|
# The maximum number of times to retry failed requests. Only
|
183
223
|
# ~ 500 level server errors and certain ~ 400 level client errors
|
184
224
|
# are retried. Generally, these are throttling errors, data
|
185
|
-
# checksum errors, networking errors, timeout errors
|
186
|
-
# errors from expired credentials.
|
225
|
+
# checksum errors, networking errors, timeout errors, auth errors,
|
226
|
+
# endpoint discovery, and errors from expired credentials.
|
227
|
+
# This option is only used in the `legacy` retry mode.
|
187
228
|
#
|
188
229
|
# @option options [Integer] :retry_max_delay (0)
|
189
|
-
# The maximum number of seconds to delay between retries (0 for no limit)
|
230
|
+
# The maximum number of seconds to delay between retries (0 for no limit)
|
231
|
+
# used by the default backoff function. This option is only used in the
|
232
|
+
# `legacy` retry mode.
|
233
|
+
#
|
234
|
+
# @option options [String] :retry_mode ("legacy")
|
235
|
+
# Specifies which retry algorithm to use. Values are:
|
236
|
+
#
|
237
|
+
# * `legacy` - The pre-existing retry behavior. This is default value if
|
238
|
+
# no retry mode is provided.
|
239
|
+
#
|
240
|
+
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
241
|
+
# This includes support for retry quotas, which limit the number of
|
242
|
+
# unsuccessful retries a client can make.
|
243
|
+
#
|
244
|
+
# * `adaptive` - An experimental retry mode that includes all the
|
245
|
+
# functionality of `standard` mode along with automatic client side
|
246
|
+
# throttling. This is a provisional mode that may change behavior
|
247
|
+
# in the future.
|
248
|
+
#
|
190
249
|
#
|
191
250
|
# @option options [String] :secret_access_key
|
192
251
|
#
|
@@ -219,16 +278,15 @@ module Aws::AppStream
|
|
219
278
|
# requests through. Formatted like 'http://proxy.com:123'.
|
220
279
|
#
|
221
280
|
# @option options [Float] :http_open_timeout (15) The number of
|
222
|
-
# seconds to wait when opening a HTTP session before
|
281
|
+
# seconds to wait when opening a HTTP session before raising a
|
223
282
|
# `Timeout::Error`.
|
224
283
|
#
|
225
284
|
# @option options [Integer] :http_read_timeout (60) The default
|
226
285
|
# number of seconds to wait for response data. This value can
|
227
|
-
# safely be set
|
228
|
-
# per-request on the session yeidled by {#session_for}.
|
286
|
+
# safely be set per-request on the session.
|
229
287
|
#
|
230
288
|
# @option options [Float] :http_idle_timeout (5) The number of
|
231
|
-
# seconds a connection is allowed to sit
|
289
|
+
# seconds a connection is allowed to sit idle before it is
|
232
290
|
# considered stale. Stale connections are closed and removed
|
233
291
|
# from the pool before making a request.
|
234
292
|
#
|
@@ -237,7 +295,7 @@ module Aws::AppStream
|
|
237
295
|
# request body. This option has no effect unless the request has
|
238
296
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
239
297
|
# disables this behaviour. This value can safely be set per
|
240
|
-
# request on the session
|
298
|
+
# request on the session.
|
241
299
|
#
|
242
300
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
243
301
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -1591,6 +1649,12 @@ module Aws::AppStream
|
|
1591
1649
|
# resp.fleets[0].iam_role_arn #=> String
|
1592
1650
|
# resp.next_token #=> String
|
1593
1651
|
#
|
1652
|
+
#
|
1653
|
+
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
1654
|
+
#
|
1655
|
+
# * fleet_started
|
1656
|
+
# * fleet_stopped
|
1657
|
+
#
|
1594
1658
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DescribeFleets AWS API Documentation
|
1595
1659
|
#
|
1596
1660
|
# @overload describe_fleets(params = {})
|
@@ -1694,6 +1758,8 @@ module Aws::AppStream
|
|
1694
1758
|
# * {Types::DescribeImagePermissionsResult#shared_image_permissions_list #shared_image_permissions_list} => Array<Types::SharedImagePermissions>
|
1695
1759
|
# * {Types::DescribeImagePermissionsResult#next_token #next_token} => String
|
1696
1760
|
#
|
1761
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1762
|
+
#
|
1697
1763
|
# @example Request syntax with placeholder values
|
1698
1764
|
#
|
1699
1765
|
# resp = client.describe_image_permissions({
|
@@ -1746,6 +1812,8 @@ module Aws::AppStream
|
|
1746
1812
|
# * {Types::DescribeImagesResult#images #images} => Array<Types::Image>
|
1747
1813
|
# * {Types::DescribeImagesResult#next_token #next_token} => String
|
1748
1814
|
#
|
1815
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1816
|
+
#
|
1749
1817
|
# @example Request syntax with placeholder values
|
1750
1818
|
#
|
1751
1819
|
# resp = client.describe_images({
|
@@ -3002,7 +3070,7 @@ module Aws::AppStream
|
|
3002
3070
|
params: params,
|
3003
3071
|
config: config)
|
3004
3072
|
context[:gem_name] = 'aws-sdk-appstream'
|
3005
|
-
context[:gem_version] = '1.
|
3073
|
+
context[:gem_version] = '1.43.0'
|
3006
3074
|
Seahorse::Client::Request.new(handlers, context)
|
3007
3075
|
end
|
3008
3076
|
|
@@ -3068,10 +3136,10 @@ module Aws::AppStream
|
|
3068
3136
|
# The following table lists the valid waiter names, the operations they call,
|
3069
3137
|
# and the default `:delay` and `:max_attempts` values.
|
3070
3138
|
#
|
3071
|
-
# | waiter_name | params
|
3072
|
-
# | ------------- |
|
3073
|
-
# | fleet_started | {#describe_fleets} | 30 | 40 |
|
3074
|
-
# | fleet_stopped | {#describe_fleets} | 30 | 40 |
|
3139
|
+
# | waiter_name | params | :delay | :max_attempts |
|
3140
|
+
# | ------------- | ------------------------ | -------- | ------------- |
|
3141
|
+
# | fleet_started | {Client#describe_fleets} | 30 | 40 |
|
3142
|
+
# | fleet_stopped | {Client#describe_fleets} | 30 | 40 |
|
3075
3143
|
#
|
3076
3144
|
# @raise [Errors::FailureStateError] Raised when the waiter terminates
|
3077
3145
|
# because the waiter has entered a state that it will not transition
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -6,6 +8,39 @@
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
8
10
|
module Aws::AppStream
|
11
|
+
|
12
|
+
# When AppStream returns an error response, the Ruby SDK constructs and raises an error.
|
13
|
+
# These errors all extend Aws::AppStream::Errors::ServiceError < {Aws::Errors::ServiceError}
|
14
|
+
#
|
15
|
+
# You can rescue all AppStream errors using ServiceError:
|
16
|
+
#
|
17
|
+
# begin
|
18
|
+
# # do stuff
|
19
|
+
# rescue Aws::AppStream::Errors::ServiceError
|
20
|
+
# # rescues all AppStream API errors
|
21
|
+
# end
|
22
|
+
#
|
23
|
+
#
|
24
|
+
# ## Request Context
|
25
|
+
# ServiceError objects have a {Aws::Errors::ServiceError#context #context} method that returns
|
26
|
+
# information about the request that generated the error.
|
27
|
+
# See {Seahorse::Client::RequestContext} for more information.
|
28
|
+
#
|
29
|
+
# ## Error Classes
|
30
|
+
# * {ConcurrentModificationException}
|
31
|
+
# * {IncompatibleImageException}
|
32
|
+
# * {InvalidAccountStatusException}
|
33
|
+
# * {InvalidParameterCombinationException}
|
34
|
+
# * {InvalidRoleException}
|
35
|
+
# * {LimitExceededException}
|
36
|
+
# * {OperationNotPermittedException}
|
37
|
+
# * {ResourceAlreadyExistsException}
|
38
|
+
# * {ResourceInUseException}
|
39
|
+
# * {ResourceNotAvailableException}
|
40
|
+
# * {ResourceNotFoundException}
|
41
|
+
#
|
42
|
+
# Additionally, error classes are dynamically generated for service errors based on the error code
|
43
|
+
# if they are not defined above.
|
9
44
|
module Errors
|
10
45
|
|
11
46
|
extend Aws::Errors::DynamicErrors
|
@@ -23,7 +58,6 @@ module Aws::AppStream
|
|
23
58
|
def message
|
24
59
|
@message || @data[:message]
|
25
60
|
end
|
26
|
-
|
27
61
|
end
|
28
62
|
|
29
63
|
class IncompatibleImageException < ServiceError
|
@@ -39,7 +73,6 @@ module Aws::AppStream
|
|
39
73
|
def message
|
40
74
|
@message || @data[:message]
|
41
75
|
end
|
42
|
-
|
43
76
|
end
|
44
77
|
|
45
78
|
class InvalidAccountStatusException < ServiceError
|
@@ -55,7 +88,6 @@ module Aws::AppStream
|
|
55
88
|
def message
|
56
89
|
@message || @data[:message]
|
57
90
|
end
|
58
|
-
|
59
91
|
end
|
60
92
|
|
61
93
|
class InvalidParameterCombinationException < ServiceError
|
@@ -71,7 +103,6 @@ module Aws::AppStream
|
|
71
103
|
def message
|
72
104
|
@message || @data[:message]
|
73
105
|
end
|
74
|
-
|
75
106
|
end
|
76
107
|
|
77
108
|
class InvalidRoleException < ServiceError
|
@@ -87,7 +118,6 @@ module Aws::AppStream
|
|
87
118
|
def message
|
88
119
|
@message || @data[:message]
|
89
120
|
end
|
90
|
-
|
91
121
|
end
|
92
122
|
|
93
123
|
class LimitExceededException < ServiceError
|
@@ -103,7 +133,6 @@ module Aws::AppStream
|
|
103
133
|
def message
|
104
134
|
@message || @data[:message]
|
105
135
|
end
|
106
|
-
|
107
136
|
end
|
108
137
|
|
109
138
|
class OperationNotPermittedException < ServiceError
|
@@ -119,7 +148,6 @@ module Aws::AppStream
|
|
119
148
|
def message
|
120
149
|
@message || @data[:message]
|
121
150
|
end
|
122
|
-
|
123
151
|
end
|
124
152
|
|
125
153
|
class ResourceAlreadyExistsException < ServiceError
|
@@ -135,7 +163,6 @@ module Aws::AppStream
|
|
135
163
|
def message
|
136
164
|
@message || @data[:message]
|
137
165
|
end
|
138
|
-
|
139
166
|
end
|
140
167
|
|
141
168
|
class ResourceInUseException < ServiceError
|
@@ -151,7 +178,6 @@ module Aws::AppStream
|
|
151
178
|
def message
|
152
179
|
@message || @data[:message]
|
153
180
|
end
|
154
|
-
|
155
181
|
end
|
156
182
|
|
157
183
|
class ResourceNotAvailableException < ServiceError
|
@@ -167,7 +193,6 @@ module Aws::AppStream
|
|
167
193
|
def message
|
168
194
|
@message || @data[:message]
|
169
195
|
end
|
170
|
-
|
171
196
|
end
|
172
197
|
|
173
198
|
class ResourceNotFoundException < ServiceError
|
@@ -183,7 +208,6 @@ module Aws::AppStream
|
|
183
208
|
def message
|
184
209
|
@message || @data[:message]
|
185
210
|
end
|
186
|
-
|
187
211
|
end
|
188
212
|
|
189
213
|
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -6,6 +8,7 @@
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
8
10
|
module Aws::AppStream
|
11
|
+
|
9
12
|
class Resource
|
10
13
|
|
11
14
|
# @param options ({})
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -38,6 +40,7 @@ module Aws::AppStream
|
|
38
40
|
class AccessEndpoint < Struct.new(
|
39
41
|
:endpoint_type,
|
40
42
|
:vpce_id)
|
43
|
+
SENSITIVE = []
|
41
44
|
include Aws::Structure
|
42
45
|
end
|
43
46
|
|
@@ -82,6 +85,7 @@ module Aws::AppStream
|
|
82
85
|
:launch_parameters,
|
83
86
|
:enabled,
|
84
87
|
:metadata)
|
88
|
+
SENSITIVE = []
|
85
89
|
include Aws::Structure
|
86
90
|
end
|
87
91
|
|
@@ -112,6 +116,7 @@ module Aws::AppStream
|
|
112
116
|
class ApplicationSettings < Struct.new(
|
113
117
|
:enabled,
|
114
118
|
:settings_group)
|
119
|
+
SENSITIVE = []
|
115
120
|
include Aws::Structure
|
116
121
|
end
|
117
122
|
|
@@ -140,6 +145,7 @@ module Aws::AppStream
|
|
140
145
|
:enabled,
|
141
146
|
:settings_group,
|
142
147
|
:s3_bucket_name)
|
148
|
+
SENSITIVE = []
|
143
149
|
include Aws::Structure
|
144
150
|
end
|
145
151
|
|
@@ -164,6 +170,7 @@ module Aws::AppStream
|
|
164
170
|
class AssociateFleetRequest < Struct.new(
|
165
171
|
:fleet_name,
|
166
172
|
:stack_name)
|
173
|
+
SENSITIVE = []
|
167
174
|
include Aws::Structure
|
168
175
|
end
|
169
176
|
|
@@ -193,6 +200,7 @@ module Aws::AppStream
|
|
193
200
|
#
|
194
201
|
class BatchAssociateUserStackRequest < Struct.new(
|
195
202
|
:user_stack_associations)
|
203
|
+
SENSITIVE = []
|
196
204
|
include Aws::Structure
|
197
205
|
end
|
198
206
|
|
@@ -204,6 +212,7 @@ module Aws::AppStream
|
|
204
212
|
#
|
205
213
|
class BatchAssociateUserStackResult < Struct.new(
|
206
214
|
:errors)
|
215
|
+
SENSITIVE = []
|
207
216
|
include Aws::Structure
|
208
217
|
end
|
209
218
|
|
@@ -229,6 +238,7 @@ module Aws::AppStream
|
|
229
238
|
#
|
230
239
|
class BatchDisassociateUserStackRequest < Struct.new(
|
231
240
|
:user_stack_associations)
|
241
|
+
SENSITIVE = []
|
232
242
|
include Aws::Structure
|
233
243
|
end
|
234
244
|
|
@@ -240,6 +250,7 @@ module Aws::AppStream
|
|
240
250
|
#
|
241
251
|
class BatchDisassociateUserStackResult < Struct.new(
|
242
252
|
:errors)
|
253
|
+
SENSITIVE = []
|
243
254
|
include Aws::Structure
|
244
255
|
end
|
245
256
|
|
@@ -260,6 +271,7 @@ module Aws::AppStream
|
|
260
271
|
#
|
261
272
|
class ComputeCapacity < Struct.new(
|
262
273
|
:desired_instances)
|
274
|
+
SENSITIVE = []
|
263
275
|
include Aws::Structure
|
264
276
|
end
|
265
277
|
|
@@ -290,6 +302,7 @@ module Aws::AppStream
|
|
290
302
|
:running,
|
291
303
|
:in_use,
|
292
304
|
:available)
|
305
|
+
SENSITIVE = []
|
293
306
|
include Aws::Structure
|
294
307
|
end
|
295
308
|
|
@@ -303,6 +316,7 @@ module Aws::AppStream
|
|
303
316
|
#
|
304
317
|
class ConcurrentModificationException < Struct.new(
|
305
318
|
:message)
|
319
|
+
SENSITIVE = []
|
306
320
|
include Aws::Structure
|
307
321
|
end
|
308
322
|
|
@@ -343,6 +357,7 @@ module Aws::AppStream
|
|
343
357
|
:destination_image_name,
|
344
358
|
:destination_region,
|
345
359
|
:destination_image_description)
|
360
|
+
SENSITIVE = []
|
346
361
|
include Aws::Structure
|
347
362
|
end
|
348
363
|
|
@@ -354,6 +369,7 @@ module Aws::AppStream
|
|
354
369
|
#
|
355
370
|
class CopyImageResponse < Struct.new(
|
356
371
|
:destination_image_name)
|
372
|
+
SENSITIVE = []
|
357
373
|
include Aws::Structure
|
358
374
|
end
|
359
375
|
|
@@ -390,6 +406,7 @@ module Aws::AppStream
|
|
390
406
|
:directory_name,
|
391
407
|
:organizational_unit_distinguished_names,
|
392
408
|
:service_account_credentials)
|
409
|
+
SENSITIVE = []
|
393
410
|
include Aws::Structure
|
394
411
|
end
|
395
412
|
|
@@ -401,6 +418,7 @@ module Aws::AppStream
|
|
401
418
|
#
|
402
419
|
class CreateDirectoryConfigResult < Struct.new(
|
403
420
|
:directory_config)
|
421
|
+
SENSITIVE = []
|
404
422
|
include Aws::Structure
|
405
423
|
end
|
406
424
|
|
@@ -643,6 +661,7 @@ module Aws::AppStream
|
|
643
661
|
:tags,
|
644
662
|
:idle_disconnect_timeout_in_seconds,
|
645
663
|
:iam_role_arn)
|
664
|
+
SENSITIVE = []
|
646
665
|
include Aws::Structure
|
647
666
|
end
|
648
667
|
|
@@ -654,6 +673,7 @@ module Aws::AppStream
|
|
654
673
|
#
|
655
674
|
class CreateFleetResult < Struct.new(
|
656
675
|
:fleet)
|
676
|
+
SENSITIVE = []
|
657
677
|
include Aws::Structure
|
658
678
|
end
|
659
679
|
|
@@ -834,6 +854,7 @@ module Aws::AppStream
|
|
834
854
|
:appstream_agent_version,
|
835
855
|
:tags,
|
836
856
|
:access_endpoints)
|
857
|
+
SENSITIVE = []
|
837
858
|
include Aws::Structure
|
838
859
|
end
|
839
860
|
|
@@ -845,6 +866,7 @@ module Aws::AppStream
|
|
845
866
|
#
|
846
867
|
class CreateImageBuilderResult < Struct.new(
|
847
868
|
:image_builder)
|
869
|
+
SENSITIVE = []
|
848
870
|
include Aws::Structure
|
849
871
|
end
|
850
872
|
|
@@ -870,6 +892,7 @@ module Aws::AppStream
|
|
870
892
|
class CreateImageBuilderStreamingURLRequest < Struct.new(
|
871
893
|
:name,
|
872
894
|
:validity)
|
895
|
+
SENSITIVE = []
|
873
896
|
include Aws::Structure
|
874
897
|
end
|
875
898
|
|
@@ -887,6 +910,7 @@ module Aws::AppStream
|
|
887
910
|
class CreateImageBuilderStreamingURLResult < Struct.new(
|
888
911
|
:streaming_url,
|
889
912
|
:expires)
|
913
|
+
SENSITIVE = []
|
890
914
|
include Aws::Structure
|
891
915
|
end
|
892
916
|
|
@@ -1013,6 +1037,7 @@ module Aws::AppStream
|
|
1013
1037
|
:tags,
|
1014
1038
|
:access_endpoints,
|
1015
1039
|
:embed_host_domains)
|
1040
|
+
SENSITIVE = []
|
1016
1041
|
include Aws::Structure
|
1017
1042
|
end
|
1018
1043
|
|
@@ -1024,6 +1049,7 @@ module Aws::AppStream
|
|
1024
1049
|
#
|
1025
1050
|
class CreateStackResult < Struct.new(
|
1026
1051
|
:stack)
|
1052
|
+
SENSITIVE = []
|
1027
1053
|
include Aws::Structure
|
1028
1054
|
end
|
1029
1055
|
|
@@ -1079,6 +1105,7 @@ module Aws::AppStream
|
|
1079
1105
|
:application_id,
|
1080
1106
|
:validity,
|
1081
1107
|
:session_context)
|
1108
|
+
SENSITIVE = []
|
1082
1109
|
include Aws::Structure
|
1083
1110
|
end
|
1084
1111
|
|
@@ -1096,6 +1123,7 @@ module Aws::AppStream
|
|
1096
1123
|
class CreateStreamingURLResult < Struct.new(
|
1097
1124
|
:streaming_url,
|
1098
1125
|
:expires)
|
1126
|
+
SENSITIVE = []
|
1099
1127
|
include Aws::Structure
|
1100
1128
|
end
|
1101
1129
|
|
@@ -1126,6 +1154,7 @@ module Aws::AppStream
|
|
1126
1154
|
class CreateUsageReportSubscriptionResult < Struct.new(
|
1127
1155
|
:s3_bucket_name,
|
1128
1156
|
:schedule)
|
1157
|
+
SENSITIVE = []
|
1129
1158
|
include Aws::Structure
|
1130
1159
|
end
|
1131
1160
|
|
@@ -1185,6 +1214,7 @@ module Aws::AppStream
|
|
1185
1214
|
:first_name,
|
1186
1215
|
:last_name,
|
1187
1216
|
:authentication_type)
|
1217
|
+
SENSITIVE = [:user_name, :first_name, :last_name]
|
1188
1218
|
include Aws::Structure
|
1189
1219
|
end
|
1190
1220
|
|
@@ -1207,6 +1237,7 @@ module Aws::AppStream
|
|
1207
1237
|
#
|
1208
1238
|
class DeleteDirectoryConfigRequest < Struct.new(
|
1209
1239
|
:directory_name)
|
1240
|
+
SENSITIVE = []
|
1210
1241
|
include Aws::Structure
|
1211
1242
|
end
|
1212
1243
|
|
@@ -1229,6 +1260,7 @@ module Aws::AppStream
|
|
1229
1260
|
#
|
1230
1261
|
class DeleteFleetRequest < Struct.new(
|
1231
1262
|
:name)
|
1263
|
+
SENSITIVE = []
|
1232
1264
|
include Aws::Structure
|
1233
1265
|
end
|
1234
1266
|
|
@@ -1251,6 +1283,7 @@ module Aws::AppStream
|
|
1251
1283
|
#
|
1252
1284
|
class DeleteImageBuilderRequest < Struct.new(
|
1253
1285
|
:name)
|
1286
|
+
SENSITIVE = []
|
1254
1287
|
include Aws::Structure
|
1255
1288
|
end
|
1256
1289
|
|
@@ -1262,6 +1295,7 @@ module Aws::AppStream
|
|
1262
1295
|
#
|
1263
1296
|
class DeleteImageBuilderResult < Struct.new(
|
1264
1297
|
:image_builder)
|
1298
|
+
SENSITIVE = []
|
1265
1299
|
include Aws::Structure
|
1266
1300
|
end
|
1267
1301
|
|
@@ -1287,6 +1321,7 @@ module Aws::AppStream
|
|
1287
1321
|
class DeleteImagePermissionsRequest < Struct.new(
|
1288
1322
|
:name,
|
1289
1323
|
:shared_account_id)
|
1324
|
+
SENSITIVE = []
|
1290
1325
|
include Aws::Structure
|
1291
1326
|
end
|
1292
1327
|
|
@@ -1309,6 +1344,7 @@ module Aws::AppStream
|
|
1309
1344
|
#
|
1310
1345
|
class DeleteImageRequest < Struct.new(
|
1311
1346
|
:name)
|
1347
|
+
SENSITIVE = []
|
1312
1348
|
include Aws::Structure
|
1313
1349
|
end
|
1314
1350
|
|
@@ -1320,6 +1356,7 @@ module Aws::AppStream
|
|
1320
1356
|
#
|
1321
1357
|
class DeleteImageResult < Struct.new(
|
1322
1358
|
:image)
|
1359
|
+
SENSITIVE = []
|
1323
1360
|
include Aws::Structure
|
1324
1361
|
end
|
1325
1362
|
|
@@ -1338,6 +1375,7 @@ module Aws::AppStream
|
|
1338
1375
|
#
|
1339
1376
|
class DeleteStackRequest < Struct.new(
|
1340
1377
|
:name)
|
1378
|
+
SENSITIVE = []
|
1341
1379
|
include Aws::Structure
|
1342
1380
|
end
|
1343
1381
|
|
@@ -1380,6 +1418,7 @@ module Aws::AppStream
|
|
1380
1418
|
class DeleteUserRequest < Struct.new(
|
1381
1419
|
:user_name,
|
1382
1420
|
:authentication_type)
|
1421
|
+
SENSITIVE = [:user_name]
|
1383
1422
|
include Aws::Structure
|
1384
1423
|
end
|
1385
1424
|
|
@@ -1415,6 +1454,7 @@ module Aws::AppStream
|
|
1415
1454
|
:directory_names,
|
1416
1455
|
:max_results,
|
1417
1456
|
:next_token)
|
1457
|
+
SENSITIVE = []
|
1418
1458
|
include Aws::Structure
|
1419
1459
|
end
|
1420
1460
|
|
@@ -1434,6 +1474,7 @@ module Aws::AppStream
|
|
1434
1474
|
class DescribeDirectoryConfigsResult < Struct.new(
|
1435
1475
|
:directory_configs,
|
1436
1476
|
:next_token)
|
1477
|
+
SENSITIVE = []
|
1437
1478
|
include Aws::Structure
|
1438
1479
|
end
|
1439
1480
|
|
@@ -1459,6 +1500,7 @@ module Aws::AppStream
|
|
1459
1500
|
class DescribeFleetsRequest < Struct.new(
|
1460
1501
|
:names,
|
1461
1502
|
:next_token)
|
1503
|
+
SENSITIVE = []
|
1462
1504
|
include Aws::Structure
|
1463
1505
|
end
|
1464
1506
|
|
@@ -1476,6 +1518,7 @@ module Aws::AppStream
|
|
1476
1518
|
class DescribeFleetsResult < Struct.new(
|
1477
1519
|
:fleets,
|
1478
1520
|
:next_token)
|
1521
|
+
SENSITIVE = []
|
1479
1522
|
include Aws::Structure
|
1480
1523
|
end
|
1481
1524
|
|
@@ -1507,6 +1550,7 @@ module Aws::AppStream
|
|
1507
1550
|
:names,
|
1508
1551
|
:max_results,
|
1509
1552
|
:next_token)
|
1553
|
+
SENSITIVE = []
|
1510
1554
|
include Aws::Structure
|
1511
1555
|
end
|
1512
1556
|
|
@@ -1524,6 +1568,7 @@ module Aws::AppStream
|
|
1524
1568
|
class DescribeImageBuildersResult < Struct.new(
|
1525
1569
|
:image_builders,
|
1526
1570
|
:next_token)
|
1571
|
+
SENSITIVE = []
|
1527
1572
|
include Aws::Structure
|
1528
1573
|
end
|
1529
1574
|
|
@@ -1563,6 +1608,7 @@ module Aws::AppStream
|
|
1563
1608
|
:max_results,
|
1564
1609
|
:shared_aws_account_ids,
|
1565
1610
|
:next_token)
|
1611
|
+
SENSITIVE = []
|
1566
1612
|
include Aws::Structure
|
1567
1613
|
end
|
1568
1614
|
|
@@ -1585,6 +1631,7 @@ module Aws::AppStream
|
|
1585
1631
|
:name,
|
1586
1632
|
:shared_image_permissions_list,
|
1587
1633
|
:next_token)
|
1634
|
+
SENSITIVE = []
|
1588
1635
|
include Aws::Structure
|
1589
1636
|
end
|
1590
1637
|
|
@@ -1628,6 +1675,7 @@ module Aws::AppStream
|
|
1628
1675
|
:type,
|
1629
1676
|
:next_token,
|
1630
1677
|
:max_results)
|
1678
|
+
SENSITIVE = []
|
1631
1679
|
include Aws::Structure
|
1632
1680
|
end
|
1633
1681
|
|
@@ -1645,6 +1693,7 @@ module Aws::AppStream
|
|
1645
1693
|
class DescribeImagesResult < Struct.new(
|
1646
1694
|
:images,
|
1647
1695
|
:next_token)
|
1696
|
+
SENSITIVE = []
|
1648
1697
|
include Aws::Structure
|
1649
1698
|
end
|
1650
1699
|
|
@@ -1697,6 +1746,7 @@ module Aws::AppStream
|
|
1697
1746
|
:next_token,
|
1698
1747
|
:limit,
|
1699
1748
|
:authentication_type)
|
1749
|
+
SENSITIVE = []
|
1700
1750
|
include Aws::Structure
|
1701
1751
|
end
|
1702
1752
|
|
@@ -1714,6 +1764,7 @@ module Aws::AppStream
|
|
1714
1764
|
class DescribeSessionsResult < Struct.new(
|
1715
1765
|
:sessions,
|
1716
1766
|
:next_token)
|
1767
|
+
SENSITIVE = []
|
1717
1768
|
include Aws::Structure
|
1718
1769
|
end
|
1719
1770
|
|
@@ -1739,6 +1790,7 @@ module Aws::AppStream
|
|
1739
1790
|
class DescribeStacksRequest < Struct.new(
|
1740
1791
|
:names,
|
1741
1792
|
:next_token)
|
1793
|
+
SENSITIVE = []
|
1742
1794
|
include Aws::Structure
|
1743
1795
|
end
|
1744
1796
|
|
@@ -1756,6 +1808,7 @@ module Aws::AppStream
|
|
1756
1808
|
class DescribeStacksResult < Struct.new(
|
1757
1809
|
:stacks,
|
1758
1810
|
:next_token)
|
1811
|
+
SENSITIVE = []
|
1759
1812
|
include Aws::Structure
|
1760
1813
|
end
|
1761
1814
|
|
@@ -1781,6 +1834,7 @@ module Aws::AppStream
|
|
1781
1834
|
class DescribeUsageReportSubscriptionsRequest < Struct.new(
|
1782
1835
|
:max_results,
|
1783
1836
|
:next_token)
|
1837
|
+
SENSITIVE = []
|
1784
1838
|
include Aws::Structure
|
1785
1839
|
end
|
1786
1840
|
|
@@ -1798,6 +1852,7 @@ module Aws::AppStream
|
|
1798
1852
|
class DescribeUsageReportSubscriptionsResult < Struct.new(
|
1799
1853
|
:usage_report_subscriptions,
|
1800
1854
|
:next_token)
|
1855
|
+
SENSITIVE = []
|
1801
1856
|
include Aws::Structure
|
1802
1857
|
end
|
1803
1858
|
|
@@ -1846,6 +1901,7 @@ module Aws::AppStream
|
|
1846
1901
|
:authentication_type,
|
1847
1902
|
:max_results,
|
1848
1903
|
:next_token)
|
1904
|
+
SENSITIVE = [:user_name]
|
1849
1905
|
include Aws::Structure
|
1850
1906
|
end
|
1851
1907
|
|
@@ -1863,6 +1919,7 @@ module Aws::AppStream
|
|
1863
1919
|
class DescribeUserStackAssociationsResult < Struct.new(
|
1864
1920
|
:user_stack_associations,
|
1865
1921
|
:next_token)
|
1922
|
+
SENSITIVE = []
|
1866
1923
|
include Aws::Structure
|
1867
1924
|
end
|
1868
1925
|
|
@@ -1895,6 +1952,7 @@ module Aws::AppStream
|
|
1895
1952
|
:authentication_type,
|
1896
1953
|
:max_results,
|
1897
1954
|
:next_token)
|
1955
|
+
SENSITIVE = []
|
1898
1956
|
include Aws::Structure
|
1899
1957
|
end
|
1900
1958
|
|
@@ -1912,6 +1970,7 @@ module Aws::AppStream
|
|
1912
1970
|
class DescribeUsersResult < Struct.new(
|
1913
1971
|
:users,
|
1914
1972
|
:next_token)
|
1973
|
+
SENSITIVE = []
|
1915
1974
|
include Aws::Structure
|
1916
1975
|
end
|
1917
1976
|
|
@@ -1944,6 +2003,7 @@ module Aws::AppStream
|
|
1944
2003
|
:organizational_unit_distinguished_names,
|
1945
2004
|
:service_account_credentials,
|
1946
2005
|
:created_time)
|
2006
|
+
SENSITIVE = []
|
1947
2007
|
include Aws::Structure
|
1948
2008
|
end
|
1949
2009
|
|
@@ -1972,6 +2032,7 @@ module Aws::AppStream
|
|
1972
2032
|
class DisableUserRequest < Struct.new(
|
1973
2033
|
:user_name,
|
1974
2034
|
:authentication_type)
|
2035
|
+
SENSITIVE = [:user_name]
|
1975
2036
|
include Aws::Structure
|
1976
2037
|
end
|
1977
2038
|
|
@@ -2000,6 +2061,7 @@ module Aws::AppStream
|
|
2000
2061
|
class DisassociateFleetRequest < Struct.new(
|
2001
2062
|
:fleet_name,
|
2002
2063
|
:stack_name)
|
2064
|
+
SENSITIVE = []
|
2003
2065
|
include Aws::Structure
|
2004
2066
|
end
|
2005
2067
|
|
@@ -2033,6 +2095,7 @@ module Aws::AppStream
|
|
2033
2095
|
class DomainJoinInfo < Struct.new(
|
2034
2096
|
:directory_name,
|
2035
2097
|
:organizational_unit_distinguished_name)
|
2098
|
+
SENSITIVE = []
|
2036
2099
|
include Aws::Structure
|
2037
2100
|
end
|
2038
2101
|
|
@@ -2064,6 +2127,7 @@ module Aws::AppStream
|
|
2064
2127
|
class EnableUserRequest < Struct.new(
|
2065
2128
|
:user_name,
|
2066
2129
|
:authentication_type)
|
2130
|
+
SENSITIVE = [:user_name]
|
2067
2131
|
include Aws::Structure
|
2068
2132
|
end
|
2069
2133
|
|
@@ -2086,6 +2150,7 @@ module Aws::AppStream
|
|
2086
2150
|
#
|
2087
2151
|
class ExpireSessionRequest < Struct.new(
|
2088
2152
|
:session_id)
|
2153
|
+
SENSITIVE = []
|
2089
2154
|
include Aws::Structure
|
2090
2155
|
end
|
2091
2156
|
|
@@ -2300,6 +2365,7 @@ module Aws::AppStream
|
|
2300
2365
|
:domain_join_info,
|
2301
2366
|
:idle_disconnect_timeout_in_seconds,
|
2302
2367
|
:iam_role_arn)
|
2368
|
+
SENSITIVE = []
|
2303
2369
|
include Aws::Structure
|
2304
2370
|
end
|
2305
2371
|
|
@@ -2318,6 +2384,7 @@ module Aws::AppStream
|
|
2318
2384
|
class FleetError < Struct.new(
|
2319
2385
|
:error_code,
|
2320
2386
|
:error_message)
|
2387
|
+
SENSITIVE = []
|
2321
2388
|
include Aws::Structure
|
2322
2389
|
end
|
2323
2390
|
|
@@ -2413,6 +2480,7 @@ module Aws::AppStream
|
|
2413
2480
|
:public_base_image_released_date,
|
2414
2481
|
:appstream_agent_version,
|
2415
2482
|
:image_permissions)
|
2483
|
+
SENSITIVE = []
|
2416
2484
|
include Aws::Structure
|
2417
2485
|
end
|
2418
2486
|
|
@@ -2571,6 +2639,7 @@ module Aws::AppStream
|
|
2571
2639
|
:image_builder_errors,
|
2572
2640
|
:appstream_agent_version,
|
2573
2641
|
:access_endpoints)
|
2642
|
+
SENSITIVE = []
|
2574
2643
|
include Aws::Structure
|
2575
2644
|
end
|
2576
2645
|
|
@@ -2589,6 +2658,7 @@ module Aws::AppStream
|
|
2589
2658
|
class ImageBuilderStateChangeReason < Struct.new(
|
2590
2659
|
:code,
|
2591
2660
|
:message)
|
2661
|
+
SENSITIVE = []
|
2592
2662
|
include Aws::Structure
|
2593
2663
|
end
|
2594
2664
|
|
@@ -2615,6 +2685,7 @@ module Aws::AppStream
|
|
2615
2685
|
class ImagePermissions < Struct.new(
|
2616
2686
|
:allow_fleet,
|
2617
2687
|
:allow_image_builder)
|
2688
|
+
SENSITIVE = []
|
2618
2689
|
include Aws::Structure
|
2619
2690
|
end
|
2620
2691
|
|
@@ -2633,6 +2704,7 @@ module Aws::AppStream
|
|
2633
2704
|
class ImageStateChangeReason < Struct.new(
|
2634
2705
|
:code,
|
2635
2706
|
:message)
|
2707
|
+
SENSITIVE = []
|
2636
2708
|
include Aws::Structure
|
2637
2709
|
end
|
2638
2710
|
|
@@ -2646,6 +2718,7 @@ module Aws::AppStream
|
|
2646
2718
|
#
|
2647
2719
|
class IncompatibleImageException < Struct.new(
|
2648
2720
|
:message)
|
2721
|
+
SENSITIVE = []
|
2649
2722
|
include Aws::Structure
|
2650
2723
|
end
|
2651
2724
|
|
@@ -2660,6 +2733,7 @@ module Aws::AppStream
|
|
2660
2733
|
#
|
2661
2734
|
class InvalidAccountStatusException < Struct.new(
|
2662
2735
|
:message)
|
2736
|
+
SENSITIVE = []
|
2663
2737
|
include Aws::Structure
|
2664
2738
|
end
|
2665
2739
|
|
@@ -2674,6 +2748,7 @@ module Aws::AppStream
|
|
2674
2748
|
#
|
2675
2749
|
class InvalidParameterCombinationException < Struct.new(
|
2676
2750
|
:message)
|
2751
|
+
SENSITIVE = []
|
2677
2752
|
include Aws::Structure
|
2678
2753
|
end
|
2679
2754
|
|
@@ -2687,6 +2762,7 @@ module Aws::AppStream
|
|
2687
2762
|
#
|
2688
2763
|
class InvalidRoleException < Struct.new(
|
2689
2764
|
:message)
|
2765
|
+
SENSITIVE = []
|
2690
2766
|
include Aws::Structure
|
2691
2767
|
end
|
2692
2768
|
|
@@ -2708,6 +2784,7 @@ module Aws::AppStream
|
|
2708
2784
|
class LastReportGenerationExecutionError < Struct.new(
|
2709
2785
|
:error_code,
|
2710
2786
|
:error_message)
|
2787
|
+
SENSITIVE = []
|
2711
2788
|
include Aws::Structure
|
2712
2789
|
end
|
2713
2790
|
|
@@ -2721,6 +2798,7 @@ module Aws::AppStream
|
|
2721
2798
|
#
|
2722
2799
|
class LimitExceededException < Struct.new(
|
2723
2800
|
:message)
|
2801
|
+
SENSITIVE = []
|
2724
2802
|
include Aws::Structure
|
2725
2803
|
end
|
2726
2804
|
|
@@ -2746,6 +2824,7 @@ module Aws::AppStream
|
|
2746
2824
|
class ListAssociatedFleetsRequest < Struct.new(
|
2747
2825
|
:stack_name,
|
2748
2826
|
:next_token)
|
2827
|
+
SENSITIVE = []
|
2749
2828
|
include Aws::Structure
|
2750
2829
|
end
|
2751
2830
|
|
@@ -2763,6 +2842,7 @@ module Aws::AppStream
|
|
2763
2842
|
class ListAssociatedFleetsResult < Struct.new(
|
2764
2843
|
:names,
|
2765
2844
|
:next_token)
|
2845
|
+
SENSITIVE = []
|
2766
2846
|
include Aws::Structure
|
2767
2847
|
end
|
2768
2848
|
|
@@ -2788,6 +2868,7 @@ module Aws::AppStream
|
|
2788
2868
|
class ListAssociatedStacksRequest < Struct.new(
|
2789
2869
|
:fleet_name,
|
2790
2870
|
:next_token)
|
2871
|
+
SENSITIVE = []
|
2791
2872
|
include Aws::Structure
|
2792
2873
|
end
|
2793
2874
|
|
@@ -2805,6 +2886,7 @@ module Aws::AppStream
|
|
2805
2886
|
class ListAssociatedStacksResult < Struct.new(
|
2806
2887
|
:names,
|
2807
2888
|
:next_token)
|
2889
|
+
SENSITIVE = []
|
2808
2890
|
include Aws::Structure
|
2809
2891
|
end
|
2810
2892
|
|
@@ -2823,6 +2905,7 @@ module Aws::AppStream
|
|
2823
2905
|
#
|
2824
2906
|
class ListTagsForResourceRequest < Struct.new(
|
2825
2907
|
:resource_arn)
|
2908
|
+
SENSITIVE = []
|
2826
2909
|
include Aws::Structure
|
2827
2910
|
end
|
2828
2911
|
|
@@ -2834,6 +2917,7 @@ module Aws::AppStream
|
|
2834
2917
|
#
|
2835
2918
|
class ListTagsForResourceResponse < Struct.new(
|
2836
2919
|
:tags)
|
2920
|
+
SENSITIVE = []
|
2837
2921
|
include Aws::Structure
|
2838
2922
|
end
|
2839
2923
|
|
@@ -2855,6 +2939,7 @@ module Aws::AppStream
|
|
2855
2939
|
class NetworkAccessConfiguration < Struct.new(
|
2856
2940
|
:eni_private_ip_address,
|
2857
2941
|
:eni_id)
|
2942
|
+
SENSITIVE = []
|
2858
2943
|
include Aws::Structure
|
2859
2944
|
end
|
2860
2945
|
|
@@ -2868,6 +2953,7 @@ module Aws::AppStream
|
|
2868
2953
|
#
|
2869
2954
|
class OperationNotPermittedException < Struct.new(
|
2870
2955
|
:message)
|
2956
|
+
SENSITIVE = []
|
2871
2957
|
include Aws::Structure
|
2872
2958
|
end
|
2873
2959
|
|
@@ -2881,6 +2967,7 @@ module Aws::AppStream
|
|
2881
2967
|
#
|
2882
2968
|
class ResourceAlreadyExistsException < Struct.new(
|
2883
2969
|
:message)
|
2970
|
+
SENSITIVE = []
|
2884
2971
|
include Aws::Structure
|
2885
2972
|
end
|
2886
2973
|
|
@@ -2904,6 +2991,7 @@ module Aws::AppStream
|
|
2904
2991
|
:error_code,
|
2905
2992
|
:error_message,
|
2906
2993
|
:error_timestamp)
|
2994
|
+
SENSITIVE = []
|
2907
2995
|
include Aws::Structure
|
2908
2996
|
end
|
2909
2997
|
|
@@ -2917,6 +3005,7 @@ module Aws::AppStream
|
|
2917
3005
|
#
|
2918
3006
|
class ResourceInUseException < Struct.new(
|
2919
3007
|
:message)
|
3008
|
+
SENSITIVE = []
|
2920
3009
|
include Aws::Structure
|
2921
3010
|
end
|
2922
3011
|
|
@@ -2930,6 +3019,7 @@ module Aws::AppStream
|
|
2930
3019
|
#
|
2931
3020
|
class ResourceNotAvailableException < Struct.new(
|
2932
3021
|
:message)
|
3022
|
+
SENSITIVE = []
|
2933
3023
|
include Aws::Structure
|
2934
3024
|
end
|
2935
3025
|
|
@@ -2943,6 +3033,7 @@ module Aws::AppStream
|
|
2943
3033
|
#
|
2944
3034
|
class ResourceNotFoundException < Struct.new(
|
2945
3035
|
:message)
|
3036
|
+
SENSITIVE = []
|
2946
3037
|
include Aws::Structure
|
2947
3038
|
end
|
2948
3039
|
|
@@ -2973,6 +3064,7 @@ module Aws::AppStream
|
|
2973
3064
|
class ServiceAccountCredentials < Struct.new(
|
2974
3065
|
:account_name,
|
2975
3066
|
:account_password)
|
3067
|
+
SENSITIVE = [:account_name, :account_password]
|
2976
3068
|
include Aws::Structure
|
2977
3069
|
end
|
2978
3070
|
|
@@ -3040,6 +3132,7 @@ module Aws::AppStream
|
|
3040
3132
|
:max_expiration_time,
|
3041
3133
|
:authentication_type,
|
3042
3134
|
:network_access_configuration)
|
3135
|
+
SENSITIVE = []
|
3043
3136
|
include Aws::Structure
|
3044
3137
|
end
|
3045
3138
|
|
@@ -3060,6 +3153,7 @@ module Aws::AppStream
|
|
3060
3153
|
class SharedImagePermissions < Struct.new(
|
3061
3154
|
:shared_account_id,
|
3062
3155
|
:image_permissions)
|
3156
|
+
SENSITIVE = []
|
3063
3157
|
include Aws::Structure
|
3064
3158
|
end
|
3065
3159
|
|
@@ -3141,6 +3235,7 @@ module Aws::AppStream
|
|
3141
3235
|
:application_settings,
|
3142
3236
|
:access_endpoints,
|
3143
3237
|
:embed_host_domains)
|
3238
|
+
SENSITIVE = []
|
3144
3239
|
include Aws::Structure
|
3145
3240
|
end
|
3146
3241
|
|
@@ -3159,6 +3254,7 @@ module Aws::AppStream
|
|
3159
3254
|
class StackError < Struct.new(
|
3160
3255
|
:error_code,
|
3161
3256
|
:error_message)
|
3257
|
+
SENSITIVE = []
|
3162
3258
|
include Aws::Structure
|
3163
3259
|
end
|
3164
3260
|
|
@@ -3177,6 +3273,7 @@ module Aws::AppStream
|
|
3177
3273
|
#
|
3178
3274
|
class StartFleetRequest < Struct.new(
|
3179
3275
|
:name)
|
3276
|
+
SENSITIVE = []
|
3180
3277
|
include Aws::Structure
|
3181
3278
|
end
|
3182
3279
|
|
@@ -3207,6 +3304,7 @@ module Aws::AppStream
|
|
3207
3304
|
class StartImageBuilderRequest < Struct.new(
|
3208
3305
|
:name,
|
3209
3306
|
:appstream_agent_version)
|
3307
|
+
SENSITIVE = []
|
3210
3308
|
include Aws::Structure
|
3211
3309
|
end
|
3212
3310
|
|
@@ -3218,6 +3316,7 @@ module Aws::AppStream
|
|
3218
3316
|
#
|
3219
3317
|
class StartImageBuilderResult < Struct.new(
|
3220
3318
|
:image_builder)
|
3319
|
+
SENSITIVE = []
|
3221
3320
|
include Aws::Structure
|
3222
3321
|
end
|
3223
3322
|
|
@@ -3236,6 +3335,7 @@ module Aws::AppStream
|
|
3236
3335
|
#
|
3237
3336
|
class StopFleetRequest < Struct.new(
|
3238
3337
|
:name)
|
3338
|
+
SENSITIVE = []
|
3239
3339
|
include Aws::Structure
|
3240
3340
|
end
|
3241
3341
|
|
@@ -3258,6 +3358,7 @@ module Aws::AppStream
|
|
3258
3358
|
#
|
3259
3359
|
class StopImageBuilderRequest < Struct.new(
|
3260
3360
|
:name)
|
3361
|
+
SENSITIVE = []
|
3261
3362
|
include Aws::Structure
|
3262
3363
|
end
|
3263
3364
|
|
@@ -3269,6 +3370,7 @@ module Aws::AppStream
|
|
3269
3370
|
#
|
3270
3371
|
class StopImageBuilderResult < Struct.new(
|
3271
3372
|
:image_builder)
|
3373
|
+
SENSITIVE = []
|
3272
3374
|
include Aws::Structure
|
3273
3375
|
end
|
3274
3376
|
|
@@ -3301,6 +3403,7 @@ module Aws::AppStream
|
|
3301
3403
|
:connector_type,
|
3302
3404
|
:resource_identifier,
|
3303
3405
|
:domains)
|
3406
|
+
SENSITIVE = []
|
3304
3407
|
include Aws::Structure
|
3305
3408
|
end
|
3306
3409
|
|
@@ -3336,6 +3439,7 @@ module Aws::AppStream
|
|
3336
3439
|
class TagResourceRequest < Struct.new(
|
3337
3440
|
:resource_arn,
|
3338
3441
|
:tags)
|
3442
|
+
SENSITIVE = []
|
3339
3443
|
include Aws::Structure
|
3340
3444
|
end
|
3341
3445
|
|
@@ -3364,6 +3468,7 @@ module Aws::AppStream
|
|
3364
3468
|
class UntagResourceRequest < Struct.new(
|
3365
3469
|
:resource_arn,
|
3366
3470
|
:tag_keys)
|
3471
|
+
SENSITIVE = []
|
3367
3472
|
include Aws::Structure
|
3368
3473
|
end
|
3369
3474
|
|
@@ -3403,6 +3508,7 @@ module Aws::AppStream
|
|
3403
3508
|
:directory_name,
|
3404
3509
|
:organizational_unit_distinguished_names,
|
3405
3510
|
:service_account_credentials)
|
3511
|
+
SENSITIVE = []
|
3406
3512
|
include Aws::Structure
|
3407
3513
|
end
|
3408
3514
|
|
@@ -3414,6 +3520,7 @@ module Aws::AppStream
|
|
3414
3520
|
#
|
3415
3521
|
class UpdateDirectoryConfigResult < Struct.new(
|
3416
3522
|
:directory_config)
|
3523
|
+
SENSITIVE = []
|
3417
3524
|
include Aws::Structure
|
3418
3525
|
end
|
3419
3526
|
|
@@ -3625,6 +3732,7 @@ module Aws::AppStream
|
|
3625
3732
|
:idle_disconnect_timeout_in_seconds,
|
3626
3733
|
:attributes_to_delete,
|
3627
3734
|
:iam_role_arn)
|
3735
|
+
SENSITIVE = []
|
3628
3736
|
include Aws::Structure
|
3629
3737
|
end
|
3630
3738
|
|
@@ -3636,6 +3744,7 @@ module Aws::AppStream
|
|
3636
3744
|
#
|
3637
3745
|
class UpdateFleetResult < Struct.new(
|
3638
3746
|
:fleet)
|
3747
|
+
SENSITIVE = []
|
3639
3748
|
include Aws::Structure
|
3640
3749
|
end
|
3641
3750
|
|
@@ -3670,6 +3779,7 @@ module Aws::AppStream
|
|
3670
3779
|
:name,
|
3671
3780
|
:shared_account_id,
|
3672
3781
|
:image_permissions)
|
3782
|
+
SENSITIVE = []
|
3673
3783
|
include Aws::Structure
|
3674
3784
|
end
|
3675
3785
|
|
@@ -3788,6 +3898,7 @@ module Aws::AppStream
|
|
3788
3898
|
:application_settings,
|
3789
3899
|
:access_endpoints,
|
3790
3900
|
:embed_host_domains)
|
3901
|
+
SENSITIVE = []
|
3791
3902
|
include Aws::Structure
|
3792
3903
|
end
|
3793
3904
|
|
@@ -3799,6 +3910,7 @@ module Aws::AppStream
|
|
3799
3910
|
#
|
3800
3911
|
class UpdateStackResult < Struct.new(
|
3801
3912
|
:stack)
|
3913
|
+
SENSITIVE = []
|
3802
3914
|
include Aws::Structure
|
3803
3915
|
end
|
3804
3916
|
|
@@ -3836,6 +3948,7 @@ module Aws::AppStream
|
|
3836
3948
|
:schedule,
|
3837
3949
|
:last_generated_report_date,
|
3838
3950
|
:subscription_errors)
|
3951
|
+
SENSITIVE = []
|
3839
3952
|
include Aws::Structure
|
3840
3953
|
end
|
3841
3954
|
|
@@ -3900,6 +4013,7 @@ module Aws::AppStream
|
|
3900
4013
|
:last_name,
|
3901
4014
|
:created_time,
|
3902
4015
|
:authentication_type)
|
4016
|
+
SENSITIVE = [:user_name, :first_name, :last_name]
|
3903
4017
|
include Aws::Structure
|
3904
4018
|
end
|
3905
4019
|
|
@@ -3927,6 +4041,7 @@ module Aws::AppStream
|
|
3927
4041
|
class UserSetting < Struct.new(
|
3928
4042
|
:action,
|
3929
4043
|
:permission)
|
4044
|
+
SENSITIVE = []
|
3930
4045
|
include Aws::Structure
|
3931
4046
|
end
|
3932
4047
|
|
@@ -3970,6 +4085,7 @@ module Aws::AppStream
|
|
3970
4085
|
:user_name,
|
3971
4086
|
:authentication_type,
|
3972
4087
|
:send_email_notification)
|
4088
|
+
SENSITIVE = [:user_name]
|
3973
4089
|
include Aws::Structure
|
3974
4090
|
end
|
3975
4091
|
|
@@ -3996,6 +4112,7 @@ module Aws::AppStream
|
|
3996
4112
|
:user_stack_association,
|
3997
4113
|
:error_code,
|
3998
4114
|
:error_message)
|
4115
|
+
SENSITIVE = []
|
3999
4116
|
include Aws::Structure
|
4000
4117
|
end
|
4001
4118
|
|
@@ -4026,6 +4143,7 @@ module Aws::AppStream
|
|
4026
4143
|
class VpcConfig < Struct.new(
|
4027
4144
|
:subnet_ids,
|
4028
4145
|
:security_group_ids)
|
4146
|
+
SENSITIVE = []
|
4029
4147
|
include Aws::Structure
|
4030
4148
|
end
|
4031
4149
|
|