aws-sdk-amplify 1.14.0 → 1.19.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-amplify.rb +9 -4
- data/lib/aws-sdk-amplify/client.rb +72 -14
- data/lib/aws-sdk-amplify/client_api.rb +2 -0
- data/lib/aws-sdk-amplify/errors.rb +31 -7
- data/lib/aws-sdk-amplify/resource.rb +3 -0
- data/lib/aws-sdk-amplify/types.rb +95 -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: 37d13bd4ed8f6e22ad5b55fd7fd87bfd4476cbfafd20314d41d4e1626cdcf421
|
4
|
+
data.tar.gz: e328f1cf91dca614a5c12d130e7e06b0b34f19c47bd192dfc633b0ddb518d2c2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2a89eb481238b133d9e3545bbecf88058c207bd0eaedde219c02df03167e56b03020bfdc324d72bf21f519b8cba75f41c417a7e09a9938e9d30b127edc11444a
|
7
|
+
data.tar.gz: 936bb9d1b66a5a876bbc8cad8f39bf1d7737a1ef3478cf636c37561f30dbcd504fc270f6dfa8128556b3d36402840f81b8895d909c21b5e25d24c69af161e0e8
|
data/lib/aws-sdk-amplify.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:
|
@@ -24,17 +26,20 @@ require_relative 'aws-sdk-amplify/customizations'
|
|
24
26
|
# methods each accept a hash of request parameters and return a response
|
25
27
|
# structure.
|
26
28
|
#
|
29
|
+
# amplify = Aws::Amplify::Client.new
|
30
|
+
# resp = amplify.create_app(params)
|
31
|
+
#
|
27
32
|
# See {Client} for more information.
|
28
33
|
#
|
29
34
|
# # Errors
|
30
35
|
#
|
31
|
-
# Errors returned from AWS Amplify
|
32
|
-
# extend {Errors::ServiceError}.
|
36
|
+
# Errors returned from AWS Amplify are defined in the
|
37
|
+
# {Errors} module and all extend {Errors::ServiceError}.
|
33
38
|
#
|
34
39
|
# begin
|
35
40
|
# # do stuff
|
36
41
|
# rescue Aws::Amplify::Errors::ServiceError
|
37
|
-
# # rescues all
|
42
|
+
# # rescues all AWS Amplify API errors
|
38
43
|
# end
|
39
44
|
#
|
40
45
|
# See {Errors} for more information.
|
@@ -42,6 +47,6 @@ require_relative 'aws-sdk-amplify/customizations'
|
|
42
47
|
# @service
|
43
48
|
module Aws::Amplify
|
44
49
|
|
45
|
-
GEM_VERSION = '1.
|
50
|
+
GEM_VERSION = '1.19.0'
|
46
51
|
|
47
52
|
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/rest_json.rb'
|
29
32
|
|
30
33
|
Aws::Plugins::GlobalConfiguration.add_identifier(:amplify)
|
31
34
|
|
32
35
|
module Aws::Amplify
|
36
|
+
# An API client for Amplify. To construct a client, you need to configure a `:region` and `:credentials`.
|
37
|
+
#
|
38
|
+
# client = Aws::Amplify::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::Amplify
|
|
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::RestJson)
|
62
78
|
|
@@ -93,7 +109,7 @@ module Aws::Amplify
|
|
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::Amplify
|
|
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::Amplify
|
|
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::Amplify
|
|
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::Amplify
|
|
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::Amplify
|
|
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::Amplify
|
|
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
|
#
|
@@ -209,16 +268,15 @@ module Aws::Amplify
|
|
209
268
|
# requests through. Formatted like 'http://proxy.com:123'.
|
210
269
|
#
|
211
270
|
# @option options [Float] :http_open_timeout (15) The number of
|
212
|
-
# seconds to wait when opening a HTTP session before
|
271
|
+
# seconds to wait when opening a HTTP session before raising a
|
213
272
|
# `Timeout::Error`.
|
214
273
|
#
|
215
274
|
# @option options [Integer] :http_read_timeout (60) The default
|
216
275
|
# number of seconds to wait for response data. This value can
|
217
|
-
# safely be set
|
218
|
-
# per-request on the session yeidled by {#session_for}.
|
276
|
+
# safely be set per-request on the session.
|
219
277
|
#
|
220
278
|
# @option options [Float] :http_idle_timeout (5) The number of
|
221
|
-
# seconds a connection is allowed to sit
|
279
|
+
# seconds a connection is allowed to sit idle before it is
|
222
280
|
# considered stale. Stale connections are closed and removed
|
223
281
|
# from the pool before making a request.
|
224
282
|
#
|
@@ -227,7 +285,7 @@ module Aws::Amplify
|
|
227
285
|
# request body. This option has no effect unless the request has
|
228
286
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
229
287
|
# disables this behaviour. This value can safely be set per
|
230
|
-
# request on the session
|
288
|
+
# request on the session.
|
231
289
|
#
|
232
290
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
233
291
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -2411,7 +2469,7 @@ module Aws::Amplify
|
|
2411
2469
|
params: params,
|
2412
2470
|
config: config)
|
2413
2471
|
context[:gem_name] = 'aws-sdk-amplify'
|
2414
|
-
context[:gem_version] = '1.
|
2472
|
+
context[:gem_version] = '1.19.0'
|
2415
2473
|
Seahorse::Client::Request.new(handlers, context)
|
2416
2474
|
end
|
2417
2475
|
|
@@ -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,35 @@
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
8
10
|
module Aws::Amplify
|
11
|
+
|
12
|
+
# When Amplify returns an error response, the Ruby SDK constructs and raises an error.
|
13
|
+
# These errors all extend Aws::Amplify::Errors::ServiceError < {Aws::Errors::ServiceError}
|
14
|
+
#
|
15
|
+
# You can rescue all Amplify errors using ServiceError:
|
16
|
+
#
|
17
|
+
# begin
|
18
|
+
# # do stuff
|
19
|
+
# rescue Aws::Amplify::Errors::ServiceError
|
20
|
+
# # rescues all Amplify 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
|
+
# * {BadRequestException}
|
31
|
+
# * {DependentServiceFailureException}
|
32
|
+
# * {InternalFailureException}
|
33
|
+
# * {LimitExceededException}
|
34
|
+
# * {NotFoundException}
|
35
|
+
# * {ResourceNotFoundException}
|
36
|
+
# * {UnauthorizedException}
|
37
|
+
#
|
38
|
+
# Additionally, error classes are dynamically generated for service errors based on the error code
|
39
|
+
# if they are not defined above.
|
9
40
|
module Errors
|
10
41
|
|
11
42
|
extend Aws::Errors::DynamicErrors
|
@@ -23,7 +54,6 @@ module Aws::Amplify
|
|
23
54
|
def message
|
24
55
|
@message || @data[:message]
|
25
56
|
end
|
26
|
-
|
27
57
|
end
|
28
58
|
|
29
59
|
class DependentServiceFailureException < ServiceError
|
@@ -39,7 +69,6 @@ module Aws::Amplify
|
|
39
69
|
def message
|
40
70
|
@message || @data[:message]
|
41
71
|
end
|
42
|
-
|
43
72
|
end
|
44
73
|
|
45
74
|
class InternalFailureException < ServiceError
|
@@ -55,7 +84,6 @@ module Aws::Amplify
|
|
55
84
|
def message
|
56
85
|
@message || @data[:message]
|
57
86
|
end
|
58
|
-
|
59
87
|
end
|
60
88
|
|
61
89
|
class LimitExceededException < ServiceError
|
@@ -71,7 +99,6 @@ module Aws::Amplify
|
|
71
99
|
def message
|
72
100
|
@message || @data[:message]
|
73
101
|
end
|
74
|
-
|
75
102
|
end
|
76
103
|
|
77
104
|
class NotFoundException < ServiceError
|
@@ -87,7 +114,6 @@ module Aws::Amplify
|
|
87
114
|
def message
|
88
115
|
@message || @data[:message]
|
89
116
|
end
|
90
|
-
|
91
117
|
end
|
92
118
|
|
93
119
|
class ResourceNotFoundException < ServiceError
|
@@ -108,7 +134,6 @@ module Aws::Amplify
|
|
108
134
|
def message
|
109
135
|
@message || @data[:message]
|
110
136
|
end
|
111
|
-
|
112
137
|
end
|
113
138
|
|
114
139
|
class UnauthorizedException < ServiceError
|
@@ -124,7 +149,6 @@ module Aws::Amplify
|
|
124
149
|
def message
|
125
150
|
@message || @data[:message]
|
126
151
|
end
|
127
|
-
|
128
152
|
end
|
129
153
|
|
130
154
|
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::Amplify
|
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:
|
@@ -119,6 +121,7 @@ module Aws::Amplify
|
|
119
121
|
:enable_auto_branch_creation,
|
120
122
|
:auto_branch_creation_patterns,
|
121
123
|
:auto_branch_creation_config)
|
124
|
+
SENSITIVE = []
|
122
125
|
include Aws::Structure
|
123
126
|
end
|
124
127
|
|
@@ -137,6 +140,7 @@ module Aws::Amplify
|
|
137
140
|
class Artifact < Struct.new(
|
138
141
|
:artifact_file_name,
|
139
142
|
:artifact_id)
|
143
|
+
SENSITIVE = []
|
140
144
|
include Aws::Structure
|
141
145
|
end
|
142
146
|
|
@@ -207,6 +211,7 @@ module Aws::Amplify
|
|
207
211
|
:build_spec,
|
208
212
|
:enable_pull_request_preview,
|
209
213
|
:pull_request_environment_name)
|
214
|
+
SENSITIVE = []
|
210
215
|
include Aws::Structure
|
211
216
|
end
|
212
217
|
|
@@ -247,6 +252,7 @@ module Aws::Amplify
|
|
247
252
|
:deployment_artifacts,
|
248
253
|
:create_time,
|
249
254
|
:update_time)
|
255
|
+
SENSITIVE = []
|
250
256
|
include Aws::Structure
|
251
257
|
end
|
252
258
|
|
@@ -259,6 +265,7 @@ module Aws::Amplify
|
|
259
265
|
#
|
260
266
|
class BadRequestException < Struct.new(
|
261
267
|
:message)
|
268
|
+
SENSITIVE = []
|
262
269
|
include Aws::Structure
|
263
270
|
end
|
264
271
|
|
@@ -399,6 +406,7 @@ module Aws::Amplify
|
|
399
406
|
:destination_branch,
|
400
407
|
:source_branch,
|
401
408
|
:backend_environment_arn)
|
409
|
+
SENSITIVE = []
|
402
410
|
include Aws::Structure
|
403
411
|
end
|
404
412
|
|
@@ -543,6 +551,7 @@ module Aws::Amplify
|
|
543
551
|
:enable_auto_branch_creation,
|
544
552
|
:auto_branch_creation_patterns,
|
545
553
|
:auto_branch_creation_config)
|
554
|
+
SENSITIVE = []
|
546
555
|
include Aws::Structure
|
547
556
|
end
|
548
557
|
|
@@ -555,6 +564,7 @@ module Aws::Amplify
|
|
555
564
|
#
|
556
565
|
class CreateAppResult < Struct.new(
|
557
566
|
:app)
|
567
|
+
SENSITIVE = []
|
558
568
|
include Aws::Structure
|
559
569
|
end
|
560
570
|
|
@@ -593,6 +603,7 @@ module Aws::Amplify
|
|
593
603
|
:environment_name,
|
594
604
|
:stack_name,
|
595
605
|
:deployment_artifacts)
|
606
|
+
SENSITIVE = []
|
596
607
|
include Aws::Structure
|
597
608
|
end
|
598
609
|
|
@@ -606,6 +617,7 @@ module Aws::Amplify
|
|
606
617
|
#
|
607
618
|
class CreateBackendEnvironmentResult < Struct.new(
|
608
619
|
:backend_environment)
|
620
|
+
SENSITIVE = []
|
609
621
|
include Aws::Structure
|
610
622
|
end
|
611
623
|
|
@@ -726,6 +738,7 @@ module Aws::Amplify
|
|
726
738
|
:enable_pull_request_preview,
|
727
739
|
:pull_request_environment_name,
|
728
740
|
:backend_environment_arn)
|
741
|
+
SENSITIVE = []
|
729
742
|
include Aws::Structure
|
730
743
|
end
|
731
744
|
|
@@ -739,6 +752,7 @@ module Aws::Amplify
|
|
739
752
|
#
|
740
753
|
class CreateBranchResult < Struct.new(
|
741
754
|
:branch)
|
755
|
+
SENSITIVE = []
|
742
756
|
include Aws::Structure
|
743
757
|
end
|
744
758
|
|
@@ -776,6 +790,7 @@ module Aws::Amplify
|
|
776
790
|
:app_id,
|
777
791
|
:branch_name,
|
778
792
|
:file_map)
|
793
|
+
SENSITIVE = []
|
779
794
|
include Aws::Structure
|
780
795
|
end
|
781
796
|
|
@@ -801,6 +816,7 @@ module Aws::Amplify
|
|
801
816
|
:job_id,
|
802
817
|
:file_upload_urls,
|
803
818
|
:zip_upload_url)
|
819
|
+
SENSITIVE = []
|
804
820
|
include Aws::Structure
|
805
821
|
end
|
806
822
|
|
@@ -845,6 +861,7 @@ module Aws::Amplify
|
|
845
861
|
:domain_name,
|
846
862
|
:enable_auto_sub_domain,
|
847
863
|
:sub_domain_settings)
|
864
|
+
SENSITIVE = []
|
848
865
|
include Aws::Structure
|
849
866
|
end
|
850
867
|
|
@@ -858,6 +875,7 @@ module Aws::Amplify
|
|
858
875
|
#
|
859
876
|
class CreateDomainAssociationResult < Struct.new(
|
860
877
|
:domain_association)
|
878
|
+
SENSITIVE = []
|
861
879
|
include Aws::Structure
|
862
880
|
end
|
863
881
|
|
@@ -890,6 +908,7 @@ module Aws::Amplify
|
|
890
908
|
:app_id,
|
891
909
|
:branch_name,
|
892
910
|
:description)
|
911
|
+
SENSITIVE = []
|
893
912
|
include Aws::Structure
|
894
913
|
end
|
895
914
|
|
@@ -903,6 +922,7 @@ module Aws::Amplify
|
|
903
922
|
#
|
904
923
|
class CreateWebhookResult < Struct.new(
|
905
924
|
:webhook)
|
925
|
+
SENSITIVE = []
|
906
926
|
include Aws::Structure
|
907
927
|
end
|
908
928
|
|
@@ -941,6 +961,7 @@ module Aws::Amplify
|
|
941
961
|
:target,
|
942
962
|
:status,
|
943
963
|
:condition)
|
964
|
+
SENSITIVE = []
|
944
965
|
include Aws::Structure
|
945
966
|
end
|
946
967
|
|
@@ -961,6 +982,7 @@ module Aws::Amplify
|
|
961
982
|
#
|
962
983
|
class DeleteAppRequest < Struct.new(
|
963
984
|
:app_id)
|
985
|
+
SENSITIVE = []
|
964
986
|
include Aws::Structure
|
965
987
|
end
|
966
988
|
|
@@ -975,6 +997,7 @@ module Aws::Amplify
|
|
975
997
|
#
|
976
998
|
class DeleteAppResult < Struct.new(
|
977
999
|
:app)
|
1000
|
+
SENSITIVE = []
|
978
1001
|
include Aws::Structure
|
979
1002
|
end
|
980
1003
|
|
@@ -1001,6 +1024,7 @@ module Aws::Amplify
|
|
1001
1024
|
class DeleteBackendEnvironmentRequest < Struct.new(
|
1002
1025
|
:app_id,
|
1003
1026
|
:environment_name)
|
1027
|
+
SENSITIVE = []
|
1004
1028
|
include Aws::Structure
|
1005
1029
|
end
|
1006
1030
|
|
@@ -1014,6 +1038,7 @@ module Aws::Amplify
|
|
1014
1038
|
#
|
1015
1039
|
class DeleteBackendEnvironmentResult < Struct.new(
|
1016
1040
|
:backend_environment)
|
1041
|
+
SENSITIVE = []
|
1017
1042
|
include Aws::Structure
|
1018
1043
|
end
|
1019
1044
|
|
@@ -1040,6 +1065,7 @@ module Aws::Amplify
|
|
1040
1065
|
class DeleteBranchRequest < Struct.new(
|
1041
1066
|
:app_id,
|
1042
1067
|
:branch_name)
|
1068
|
+
SENSITIVE = []
|
1043
1069
|
include Aws::Structure
|
1044
1070
|
end
|
1045
1071
|
|
@@ -1053,6 +1079,7 @@ module Aws::Amplify
|
|
1053
1079
|
#
|
1054
1080
|
class DeleteBranchResult < Struct.new(
|
1055
1081
|
:branch)
|
1082
|
+
SENSITIVE = []
|
1056
1083
|
include Aws::Structure
|
1057
1084
|
end
|
1058
1085
|
|
@@ -1079,6 +1106,7 @@ module Aws::Amplify
|
|
1079
1106
|
class DeleteDomainAssociationRequest < Struct.new(
|
1080
1107
|
:app_id,
|
1081
1108
|
:domain_name)
|
1109
|
+
SENSITIVE = []
|
1082
1110
|
include Aws::Structure
|
1083
1111
|
end
|
1084
1112
|
|
@@ -1091,6 +1119,7 @@ module Aws::Amplify
|
|
1091
1119
|
#
|
1092
1120
|
class DeleteDomainAssociationResult < Struct.new(
|
1093
1121
|
:domain_association)
|
1122
|
+
SENSITIVE = []
|
1094
1123
|
include Aws::Structure
|
1095
1124
|
end
|
1096
1125
|
|
@@ -1123,6 +1152,7 @@ module Aws::Amplify
|
|
1123
1152
|
:app_id,
|
1124
1153
|
:branch_name,
|
1125
1154
|
:job_id)
|
1155
|
+
SENSITIVE = []
|
1126
1156
|
include Aws::Structure
|
1127
1157
|
end
|
1128
1158
|
|
@@ -1136,6 +1166,7 @@ module Aws::Amplify
|
|
1136
1166
|
#
|
1137
1167
|
class DeleteJobResult < Struct.new(
|
1138
1168
|
:job_summary)
|
1169
|
+
SENSITIVE = []
|
1139
1170
|
include Aws::Structure
|
1140
1171
|
end
|
1141
1172
|
|
@@ -1156,6 +1187,7 @@ module Aws::Amplify
|
|
1156
1187
|
#
|
1157
1188
|
class DeleteWebhookRequest < Struct.new(
|
1158
1189
|
:webhook_id)
|
1190
|
+
SENSITIVE = []
|
1159
1191
|
include Aws::Structure
|
1160
1192
|
end
|
1161
1193
|
|
@@ -1169,6 +1201,7 @@ module Aws::Amplify
|
|
1169
1201
|
#
|
1170
1202
|
class DeleteWebhookResult < Struct.new(
|
1171
1203
|
:webhook)
|
1204
|
+
SENSITIVE = []
|
1172
1205
|
include Aws::Structure
|
1173
1206
|
end
|
1174
1207
|
|
@@ -1182,6 +1215,7 @@ module Aws::Amplify
|
|
1182
1215
|
#
|
1183
1216
|
class DependentServiceFailureException < Struct.new(
|
1184
1217
|
:message)
|
1218
|
+
SENSITIVE = []
|
1185
1219
|
include Aws::Structure
|
1186
1220
|
end
|
1187
1221
|
|
@@ -1227,6 +1261,7 @@ module Aws::Amplify
|
|
1227
1261
|
:status_reason,
|
1228
1262
|
:certificate_verification_dns_record,
|
1229
1263
|
:sub_domains)
|
1264
|
+
SENSITIVE = []
|
1230
1265
|
include Aws::Structure
|
1231
1266
|
end
|
1232
1267
|
|
@@ -1265,6 +1300,7 @@ module Aws::Amplify
|
|
1265
1300
|
:end_time,
|
1266
1301
|
:domain_name,
|
1267
1302
|
:app_id)
|
1303
|
+
SENSITIVE = []
|
1268
1304
|
include Aws::Structure
|
1269
1305
|
end
|
1270
1306
|
|
@@ -1278,6 +1314,7 @@ module Aws::Amplify
|
|
1278
1314
|
#
|
1279
1315
|
class GenerateAccessLogsResult < Struct.new(
|
1280
1316
|
:log_url)
|
1317
|
+
SENSITIVE = []
|
1281
1318
|
include Aws::Structure
|
1282
1319
|
end
|
1283
1320
|
|
@@ -1298,6 +1335,7 @@ module Aws::Amplify
|
|
1298
1335
|
#
|
1299
1336
|
class GetAppRequest < Struct.new(
|
1300
1337
|
:app_id)
|
1338
|
+
SENSITIVE = []
|
1301
1339
|
include Aws::Structure
|
1302
1340
|
end
|
1303
1341
|
|
@@ -1310,6 +1348,7 @@ module Aws::Amplify
|
|
1310
1348
|
#
|
1311
1349
|
class GetAppResult < Struct.new(
|
1312
1350
|
:app)
|
1351
|
+
SENSITIVE = []
|
1313
1352
|
include Aws::Structure
|
1314
1353
|
end
|
1315
1354
|
|
@@ -1330,6 +1369,7 @@ module Aws::Amplify
|
|
1330
1369
|
#
|
1331
1370
|
class GetArtifactUrlRequest < Struct.new(
|
1332
1371
|
:artifact_id)
|
1372
|
+
SENSITIVE = []
|
1333
1373
|
include Aws::Structure
|
1334
1374
|
end
|
1335
1375
|
|
@@ -1348,6 +1388,7 @@ module Aws::Amplify
|
|
1348
1388
|
class GetArtifactUrlResult < Struct.new(
|
1349
1389
|
:artifact_id,
|
1350
1390
|
:artifact_url)
|
1391
|
+
SENSITIVE = []
|
1351
1392
|
include Aws::Structure
|
1352
1393
|
end
|
1353
1394
|
|
@@ -1374,6 +1415,7 @@ module Aws::Amplify
|
|
1374
1415
|
class GetBackendEnvironmentRequest < Struct.new(
|
1375
1416
|
:app_id,
|
1376
1417
|
:environment_name)
|
1418
|
+
SENSITIVE = []
|
1377
1419
|
include Aws::Structure
|
1378
1420
|
end
|
1379
1421
|
|
@@ -1387,6 +1429,7 @@ module Aws::Amplify
|
|
1387
1429
|
#
|
1388
1430
|
class GetBackendEnvironmentResult < Struct.new(
|
1389
1431
|
:backend_environment)
|
1432
|
+
SENSITIVE = []
|
1390
1433
|
include Aws::Structure
|
1391
1434
|
end
|
1392
1435
|
|
@@ -1413,6 +1456,7 @@ module Aws::Amplify
|
|
1413
1456
|
class GetBranchRequest < Struct.new(
|
1414
1457
|
:app_id,
|
1415
1458
|
:branch_name)
|
1459
|
+
SENSITIVE = []
|
1416
1460
|
include Aws::Structure
|
1417
1461
|
end
|
1418
1462
|
|
@@ -1425,6 +1469,7 @@ module Aws::Amplify
|
|
1425
1469
|
#
|
1426
1470
|
class GetBranchResult < Struct.new(
|
1427
1471
|
:branch)
|
1472
|
+
SENSITIVE = []
|
1428
1473
|
include Aws::Structure
|
1429
1474
|
end
|
1430
1475
|
|
@@ -1451,6 +1496,7 @@ module Aws::Amplify
|
|
1451
1496
|
class GetDomainAssociationRequest < Struct.new(
|
1452
1497
|
:app_id,
|
1453
1498
|
:domain_name)
|
1499
|
+
SENSITIVE = []
|
1454
1500
|
include Aws::Structure
|
1455
1501
|
end
|
1456
1502
|
|
@@ -1464,6 +1510,7 @@ module Aws::Amplify
|
|
1464
1510
|
#
|
1465
1511
|
class GetDomainAssociationResult < Struct.new(
|
1466
1512
|
:domain_association)
|
1513
|
+
SENSITIVE = []
|
1467
1514
|
include Aws::Structure
|
1468
1515
|
end
|
1469
1516
|
|
@@ -1496,6 +1543,7 @@ module Aws::Amplify
|
|
1496
1543
|
:app_id,
|
1497
1544
|
:branch_name,
|
1498
1545
|
:job_id)
|
1546
|
+
SENSITIVE = []
|
1499
1547
|
include Aws::Structure
|
1500
1548
|
end
|
1501
1549
|
|
@@ -1507,6 +1555,7 @@ module Aws::Amplify
|
|
1507
1555
|
#
|
1508
1556
|
class GetJobResult < Struct.new(
|
1509
1557
|
:job)
|
1558
|
+
SENSITIVE = []
|
1510
1559
|
include Aws::Structure
|
1511
1560
|
end
|
1512
1561
|
|
@@ -1527,6 +1576,7 @@ module Aws::Amplify
|
|
1527
1576
|
#
|
1528
1577
|
class GetWebhookRequest < Struct.new(
|
1529
1578
|
:webhook_id)
|
1579
|
+
SENSITIVE = []
|
1530
1580
|
include Aws::Structure
|
1531
1581
|
end
|
1532
1582
|
|
@@ -1540,6 +1590,7 @@ module Aws::Amplify
|
|
1540
1590
|
#
|
1541
1591
|
class GetWebhookResult < Struct.new(
|
1542
1592
|
:webhook)
|
1593
|
+
SENSITIVE = []
|
1543
1594
|
include Aws::Structure
|
1544
1595
|
end
|
1545
1596
|
|
@@ -1553,6 +1604,7 @@ module Aws::Amplify
|
|
1553
1604
|
#
|
1554
1605
|
class InternalFailureException < Struct.new(
|
1555
1606
|
:message)
|
1607
|
+
SENSITIVE = []
|
1556
1608
|
include Aws::Structure
|
1557
1609
|
end
|
1558
1610
|
|
@@ -1571,6 +1623,7 @@ module Aws::Amplify
|
|
1571
1623
|
class Job < Struct.new(
|
1572
1624
|
:summary,
|
1573
1625
|
:steps)
|
1626
|
+
SENSITIVE = []
|
1574
1627
|
include Aws::Structure
|
1575
1628
|
end
|
1576
1629
|
|
@@ -1626,6 +1679,7 @@ module Aws::Amplify
|
|
1626
1679
|
:status,
|
1627
1680
|
:end_time,
|
1628
1681
|
:job_type)
|
1682
|
+
SENSITIVE = []
|
1629
1683
|
include Aws::Structure
|
1630
1684
|
end
|
1631
1685
|
|
@@ -1639,6 +1693,7 @@ module Aws::Amplify
|
|
1639
1693
|
#
|
1640
1694
|
class LimitExceededException < Struct.new(
|
1641
1695
|
:message)
|
1696
|
+
SENSITIVE = []
|
1642
1697
|
include Aws::Structure
|
1643
1698
|
end
|
1644
1699
|
|
@@ -1667,6 +1722,7 @@ module Aws::Amplify
|
|
1667
1722
|
class ListAppsRequest < Struct.new(
|
1668
1723
|
:next_token,
|
1669
1724
|
:max_results)
|
1725
|
+
SENSITIVE = []
|
1670
1726
|
include Aws::Structure
|
1671
1727
|
end
|
1672
1728
|
|
@@ -1687,6 +1743,7 @@ module Aws::Amplify
|
|
1687
1743
|
class ListAppsResult < Struct.new(
|
1688
1744
|
:apps,
|
1689
1745
|
:next_token)
|
1746
|
+
SENSITIVE = []
|
1690
1747
|
include Aws::Structure
|
1691
1748
|
end
|
1692
1749
|
|
@@ -1733,6 +1790,7 @@ module Aws::Amplify
|
|
1733
1790
|
:job_id,
|
1734
1791
|
:next_token,
|
1735
1792
|
:max_results)
|
1793
|
+
SENSITIVE = []
|
1736
1794
|
include Aws::Structure
|
1737
1795
|
end
|
1738
1796
|
|
@@ -1753,6 +1811,7 @@ module Aws::Amplify
|
|
1753
1811
|
class ListArtifactsResult < Struct.new(
|
1754
1812
|
:artifacts,
|
1755
1813
|
:next_token)
|
1814
|
+
SENSITIVE = []
|
1756
1815
|
include Aws::Structure
|
1757
1816
|
end
|
1758
1817
|
|
@@ -1793,6 +1852,7 @@ module Aws::Amplify
|
|
1793
1852
|
:environment_name,
|
1794
1853
|
:next_token,
|
1795
1854
|
:max_results)
|
1855
|
+
SENSITIVE = []
|
1796
1856
|
include Aws::Structure
|
1797
1857
|
end
|
1798
1858
|
|
@@ -1813,6 +1873,7 @@ module Aws::Amplify
|
|
1813
1873
|
class ListBackendEnvironmentsResult < Struct.new(
|
1814
1874
|
:backend_environments,
|
1815
1875
|
:next_token)
|
1876
|
+
SENSITIVE = []
|
1816
1877
|
include Aws::Structure
|
1817
1878
|
end
|
1818
1879
|
|
@@ -1847,6 +1908,7 @@ module Aws::Amplify
|
|
1847
1908
|
:app_id,
|
1848
1909
|
:next_token,
|
1849
1910
|
:max_results)
|
1911
|
+
SENSITIVE = []
|
1850
1912
|
include Aws::Structure
|
1851
1913
|
end
|
1852
1914
|
|
@@ -1867,6 +1929,7 @@ module Aws::Amplify
|
|
1867
1929
|
class ListBranchesResult < Struct.new(
|
1868
1930
|
:branches,
|
1869
1931
|
:next_token)
|
1932
|
+
SENSITIVE = []
|
1870
1933
|
include Aws::Structure
|
1871
1934
|
end
|
1872
1935
|
|
@@ -1901,6 +1964,7 @@ module Aws::Amplify
|
|
1901
1964
|
:app_id,
|
1902
1965
|
:next_token,
|
1903
1966
|
:max_results)
|
1967
|
+
SENSITIVE = []
|
1904
1968
|
include Aws::Structure
|
1905
1969
|
end
|
1906
1970
|
|
@@ -1921,6 +1985,7 @@ module Aws::Amplify
|
|
1921
1985
|
class ListDomainAssociationsResult < Struct.new(
|
1922
1986
|
:domain_associations,
|
1923
1987
|
:next_token)
|
1988
|
+
SENSITIVE = []
|
1924
1989
|
include Aws::Structure
|
1925
1990
|
end
|
1926
1991
|
|
@@ -1961,6 +2026,7 @@ module Aws::Amplify
|
|
1961
2026
|
:branch_name,
|
1962
2027
|
:next_token,
|
1963
2028
|
:max_results)
|
2029
|
+
SENSITIVE = []
|
1964
2030
|
include Aws::Structure
|
1965
2031
|
end
|
1966
2032
|
|
@@ -1981,6 +2047,7 @@ module Aws::Amplify
|
|
1981
2047
|
class ListJobsResult < Struct.new(
|
1982
2048
|
:job_summaries,
|
1983
2049
|
:next_token)
|
2050
|
+
SENSITIVE = []
|
1984
2051
|
include Aws::Structure
|
1985
2052
|
end
|
1986
2053
|
|
@@ -2001,6 +2068,7 @@ module Aws::Amplify
|
|
2001
2068
|
#
|
2002
2069
|
class ListTagsForResourceRequest < Struct.new(
|
2003
2070
|
:resource_arn)
|
2071
|
+
SENSITIVE = []
|
2004
2072
|
include Aws::Structure
|
2005
2073
|
end
|
2006
2074
|
|
@@ -2014,6 +2082,7 @@ module Aws::Amplify
|
|
2014
2082
|
#
|
2015
2083
|
class ListTagsForResourceResponse < Struct.new(
|
2016
2084
|
:tags)
|
2085
|
+
SENSITIVE = []
|
2017
2086
|
include Aws::Structure
|
2018
2087
|
end
|
2019
2088
|
|
@@ -2048,6 +2117,7 @@ module Aws::Amplify
|
|
2048
2117
|
:app_id,
|
2049
2118
|
:next_token,
|
2050
2119
|
:max_results)
|
2120
|
+
SENSITIVE = []
|
2051
2121
|
include Aws::Structure
|
2052
2122
|
end
|
2053
2123
|
|
@@ -2068,6 +2138,7 @@ module Aws::Amplify
|
|
2068
2138
|
class ListWebhooksResult < Struct.new(
|
2069
2139
|
:webhooks,
|
2070
2140
|
:next_token)
|
2141
|
+
SENSITIVE = []
|
2071
2142
|
include Aws::Structure
|
2072
2143
|
end
|
2073
2144
|
|
@@ -2081,6 +2152,7 @@ module Aws::Amplify
|
|
2081
2152
|
#
|
2082
2153
|
class NotFoundException < Struct.new(
|
2083
2154
|
:message)
|
2155
|
+
SENSITIVE = []
|
2084
2156
|
include Aws::Structure
|
2085
2157
|
end
|
2086
2158
|
|
@@ -2109,6 +2181,7 @@ module Aws::Amplify
|
|
2109
2181
|
:status,
|
2110
2182
|
:thumbnail_url,
|
2111
2183
|
:branch_name)
|
2184
|
+
SENSITIVE = []
|
2112
2185
|
include Aws::Structure
|
2113
2186
|
end
|
2114
2187
|
|
@@ -2125,6 +2198,7 @@ module Aws::Amplify
|
|
2125
2198
|
class ResourceNotFoundException < Struct.new(
|
2126
2199
|
:code,
|
2127
2200
|
:message)
|
2201
|
+
SENSITIVE = []
|
2128
2202
|
include Aws::Structure
|
2129
2203
|
end
|
2130
2204
|
|
@@ -2166,6 +2240,7 @@ module Aws::Amplify
|
|
2166
2240
|
:branch_name,
|
2167
2241
|
:job_id,
|
2168
2242
|
:source_url)
|
2243
|
+
SENSITIVE = []
|
2169
2244
|
include Aws::Structure
|
2170
2245
|
end
|
2171
2246
|
|
@@ -2179,6 +2254,7 @@ module Aws::Amplify
|
|
2179
2254
|
#
|
2180
2255
|
class StartDeploymentResult < Struct.new(
|
2181
2256
|
:job_summary)
|
2257
|
+
SENSITIVE = []
|
2182
2258
|
include Aws::Structure
|
2183
2259
|
end
|
2184
2260
|
|
@@ -2244,6 +2320,7 @@ module Aws::Amplify
|
|
2244
2320
|
:commit_id,
|
2245
2321
|
:commit_message,
|
2246
2322
|
:commit_time)
|
2323
|
+
SENSITIVE = []
|
2247
2324
|
include Aws::Structure
|
2248
2325
|
end
|
2249
2326
|
|
@@ -2257,6 +2334,7 @@ module Aws::Amplify
|
|
2257
2334
|
#
|
2258
2335
|
class StartJobResult < Struct.new(
|
2259
2336
|
:job_summary)
|
2337
|
+
SENSITIVE = []
|
2260
2338
|
include Aws::Structure
|
2261
2339
|
end
|
2262
2340
|
|
@@ -2322,6 +2400,7 @@ module Aws::Amplify
|
|
2322
2400
|
:screenshots,
|
2323
2401
|
:status_reason,
|
2324
2402
|
:context)
|
2403
|
+
SENSITIVE = []
|
2325
2404
|
include Aws::Structure
|
2326
2405
|
end
|
2327
2406
|
|
@@ -2354,6 +2433,7 @@ module Aws::Amplify
|
|
2354
2433
|
:app_id,
|
2355
2434
|
:branch_name,
|
2356
2435
|
:job_id)
|
2436
|
+
SENSITIVE = []
|
2357
2437
|
include Aws::Structure
|
2358
2438
|
end
|
2359
2439
|
|
@@ -2367,6 +2447,7 @@ module Aws::Amplify
|
|
2367
2447
|
#
|
2368
2448
|
class StopJobResult < Struct.new(
|
2369
2449
|
:job_summary)
|
2450
|
+
SENSITIVE = []
|
2370
2451
|
include Aws::Structure
|
2371
2452
|
end
|
2372
2453
|
|
@@ -2390,6 +2471,7 @@ module Aws::Amplify
|
|
2390
2471
|
:sub_domain_setting,
|
2391
2472
|
:verified,
|
2392
2473
|
:dns_record)
|
2474
|
+
SENSITIVE = []
|
2393
2475
|
include Aws::Structure
|
2394
2476
|
end
|
2395
2477
|
|
@@ -2416,6 +2498,7 @@ module Aws::Amplify
|
|
2416
2498
|
class SubDomainSetting < Struct.new(
|
2417
2499
|
:prefix,
|
2418
2500
|
:branch_name)
|
2501
|
+
SENSITIVE = []
|
2419
2502
|
include Aws::Structure
|
2420
2503
|
end
|
2421
2504
|
|
@@ -2444,6 +2527,7 @@ module Aws::Amplify
|
|
2444
2527
|
class TagResourceRequest < Struct.new(
|
2445
2528
|
:resource_arn,
|
2446
2529
|
:tags)
|
2530
|
+
SENSITIVE = []
|
2447
2531
|
include Aws::Structure
|
2448
2532
|
end
|
2449
2533
|
|
@@ -2462,6 +2546,7 @@ module Aws::Amplify
|
|
2462
2546
|
#
|
2463
2547
|
class UnauthorizedException < Struct.new(
|
2464
2548
|
:message)
|
2549
|
+
SENSITIVE = []
|
2465
2550
|
include Aws::Structure
|
2466
2551
|
end
|
2467
2552
|
|
@@ -2488,6 +2573,7 @@ module Aws::Amplify
|
|
2488
2573
|
class UntagResourceRequest < Struct.new(
|
2489
2574
|
:resource_arn,
|
2490
2575
|
:tag_keys)
|
2576
|
+
SENSITIVE = []
|
2491
2577
|
include Aws::Structure
|
2492
2578
|
end
|
2493
2579
|
|
@@ -2635,6 +2721,7 @@ module Aws::Amplify
|
|
2635
2721
|
:repository,
|
2636
2722
|
:oauth_token,
|
2637
2723
|
:access_token)
|
2724
|
+
SENSITIVE = []
|
2638
2725
|
include Aws::Structure
|
2639
2726
|
end
|
2640
2727
|
|
@@ -2648,6 +2735,7 @@ module Aws::Amplify
|
|
2648
2735
|
#
|
2649
2736
|
class UpdateAppResult < Struct.new(
|
2650
2737
|
:app)
|
2738
|
+
SENSITIVE = []
|
2651
2739
|
include Aws::Structure
|
2652
2740
|
end
|
2653
2741
|
|
@@ -2760,6 +2848,7 @@ module Aws::Amplify
|
|
2760
2848
|
:enable_pull_request_preview,
|
2761
2849
|
:pull_request_environment_name,
|
2762
2850
|
:backend_environment_arn)
|
2851
|
+
SENSITIVE = []
|
2763
2852
|
include Aws::Structure
|
2764
2853
|
end
|
2765
2854
|
|
@@ -2773,6 +2862,7 @@ module Aws::Amplify
|
|
2773
2862
|
#
|
2774
2863
|
class UpdateBranchResult < Struct.new(
|
2775
2864
|
:branch)
|
2865
|
+
SENSITIVE = []
|
2776
2866
|
include Aws::Structure
|
2777
2867
|
end
|
2778
2868
|
|
@@ -2817,6 +2907,7 @@ module Aws::Amplify
|
|
2817
2907
|
:domain_name,
|
2818
2908
|
:enable_auto_sub_domain,
|
2819
2909
|
:sub_domain_settings)
|
2910
|
+
SENSITIVE = []
|
2820
2911
|
include Aws::Structure
|
2821
2912
|
end
|
2822
2913
|
|
@@ -2830,6 +2921,7 @@ module Aws::Amplify
|
|
2830
2921
|
#
|
2831
2922
|
class UpdateDomainAssociationResult < Struct.new(
|
2832
2923
|
:domain_association)
|
2924
|
+
SENSITIVE = []
|
2833
2925
|
include Aws::Structure
|
2834
2926
|
end
|
2835
2927
|
|
@@ -2862,6 +2954,7 @@ module Aws::Amplify
|
|
2862
2954
|
:webhook_id,
|
2863
2955
|
:branch_name,
|
2864
2956
|
:description)
|
2957
|
+
SENSITIVE = []
|
2865
2958
|
include Aws::Structure
|
2866
2959
|
end
|
2867
2960
|
|
@@ -2875,6 +2968,7 @@ module Aws::Amplify
|
|
2875
2968
|
#
|
2876
2969
|
class UpdateWebhookResult < Struct.new(
|
2877
2970
|
:webhook)
|
2971
|
+
SENSITIVE = []
|
2878
2972
|
include Aws::Structure
|
2879
2973
|
end
|
2880
2974
|
|
@@ -2918,6 +3012,7 @@ module Aws::Amplify
|
|
2918
3012
|
:description,
|
2919
3013
|
:create_time,
|
2920
3014
|
:update_time)
|
3015
|
+
SENSITIVE = []
|
2921
3016
|
include Aws::Structure
|
2922
3017
|
end
|
2923
3018
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-amplify
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.19.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: 2020-06-23 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.99.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.99.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -81,7 +81,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
81
81
|
version: '0'
|
82
82
|
requirements: []
|
83
83
|
rubyforge_project:
|
84
|
-
rubygems_version: 2.
|
84
|
+
rubygems_version: 2.7.6.2
|
85
85
|
signing_key:
|
86
86
|
specification_version: 4
|
87
87
|
summary: AWS SDK for Ruby - Amplify
|