aws-sdk-configservice 1.42.1 → 1.43.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2d696b2b3bcddf466ac62b933b4dee5db9a092ad
4
- data.tar.gz: 4bdd0599cff9d8ae1f2bbafcbd276c01ab1dcde3
3
+ metadata.gz: 54432c8916222f4fd528f2956b9addc93eab70c0
4
+ data.tar.gz: 12c1f99a63b57315656e520b10317de1f8106084
5
5
  SHA512:
6
- metadata.gz: 41e9525121e0bf7e5e9531b02c47601e4b79063bcd4cded26b7affccaf06e92a0b45c9d09e0c1264c7716c54d286fb6420237e00bc76b06e4f60cdd7f529470e
7
- data.tar.gz: 1d199981ee74220cd342d888aa56444b92102a94d50817105e06b1d22910e61178e870fc53753b295ce9960753606fee2a95ee7e26b49dcd2bc036395152b542
6
+ metadata.gz: c8fbadf0e0a387edf271193a09d24d7855aa1e18ca03552cc69bd2fb015df486c127d9e77a755f7ad9ff50f3c521ea386164d1e435bb3ed5e4fbf2168f0fea3b
7
+ data.tar.gz: ae7a59c8ff379ae0c338f4f87540942c70d4f456529f0da90671a15a336fdfa21d972b1aa1065ab309ffc089aecf9448b78b0a7233150d9e308ac19fb0fbf148
@@ -24,17 +24,20 @@ require_relative 'aws-sdk-configservice/customizations'
24
24
  # methods each accept a hash of request parameters and return a response
25
25
  # structure.
26
26
  #
27
+ # config_service = Aws::ConfigService::Client.new
28
+ # resp = config_service.batch_get_aggregate_resource_config(params)
29
+ #
27
30
  # See {Client} for more information.
28
31
  #
29
32
  # # Errors
30
33
  #
31
- # Errors returned from AWS Config all
32
- # extend {Errors::ServiceError}.
34
+ # Errors returned from AWS Config are defined in the
35
+ # {Errors} module and all extend {Errors::ServiceError}.
33
36
  #
34
37
  # begin
35
38
  # # do stuff
36
39
  # rescue Aws::ConfigService::Errors::ServiceError
37
- # # rescues all service API errors
40
+ # # rescues all AWS Config API errors
38
41
  # end
39
42
  #
40
43
  # See {Errors} for more information.
@@ -42,6 +45,6 @@ require_relative 'aws-sdk-configservice/customizations'
42
45
  # @service
43
46
  module Aws::ConfigService
44
47
 
45
- GEM_VERSION = '1.42.1'
48
+ GEM_VERSION = '1.43.0'
46
49
 
47
50
  end
@@ -30,6 +30,18 @@ require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
30
30
  Aws::Plugins::GlobalConfiguration.add_identifier(:configservice)
31
31
 
32
32
  module Aws::ConfigService
33
+ # An API client for ConfigService. To construct a client, you need to configure a `:region` and `:credentials`.
34
+ #
35
+ # client = Aws::ConfigService::Client.new(
36
+ # region: region_name,
37
+ # credentials: credentials,
38
+ # # ...
39
+ # )
40
+ #
41
+ # For details on configuring region and credentials see
42
+ # the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
43
+ #
44
+ # See {#initialize} for a full list of supported configuration options.
33
45
  class Client < Seahorse::Client::Base
34
46
 
35
47
  include Aws::ClientStubs
@@ -108,6 +120,12 @@ module Aws::ConfigService
108
120
  # When set to `true`, a thread polling for endpoints will be running in
109
121
  # the background every 60 secs (default). Defaults to `false`.
110
122
  #
123
+ # @option options [Boolean] :adaptive_retry_wait_to_fill (true)
124
+ # Used only in `adaptive` retry mode. When true, the request will sleep
125
+ # until there is sufficent client side capacity to retry the request.
126
+ # When false, the request will raise a `RetryCapacityNotAvailableError` and will
127
+ # not retry instead of sleeping.
128
+ #
111
129
  # @option options [Boolean] :client_side_monitoring (false)
112
130
  # When `true`, client-side metrics will be collected for all API requests from
113
131
  # this client.
@@ -132,6 +150,10 @@ module Aws::ConfigService
132
150
  # When `true`, an attempt is made to coerce request parameters into
133
151
  # the required types.
134
152
  #
153
+ # @option options [Boolean] :correct_clock_skew (true)
154
+ # Used only in `standard` and adaptive retry modes. Specifies whether to apply
155
+ # a clock skew correction and retry requests with skewed client clocks.
156
+ #
135
157
  # @option options [Boolean] :disable_host_prefix_injection (false)
136
158
  # Set to true to disable SDK automatically adding host prefix
137
159
  # to default service endpoint when available.
@@ -166,15 +188,29 @@ module Aws::ConfigService
166
188
  # The Logger instance to send log messages to. If this option
167
189
  # is not set, logging will be disabled.
168
190
  #
191
+ # @option options [Integer] :max_attempts (3)
192
+ # An integer representing the maximum number attempts that will be made for
193
+ # a single request, including the initial attempt. For example,
194
+ # setting this value to 5 will result in a request being retried up to
195
+ # 4 times. Used in `standard` and `adaptive` retry modes.
196
+ #
169
197
  # @option options [String] :profile ("default")
170
198
  # Used when loading credentials from the shared credentials file
171
199
  # at HOME/.aws/credentials. When not specified, 'default' is used.
172
200
  #
201
+ # @option options [Proc] :retry_backoff
202
+ # A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
203
+ # This option is only used in the `legacy` retry mode.
204
+ #
173
205
  # @option options [Float] :retry_base_delay (0.3)
174
- # The base delay in seconds used by the default backoff function.
206
+ # The base delay in seconds used by the default backoff function. This option
207
+ # is only used in the `legacy` retry mode.
175
208
  #
176
209
  # @option options [Symbol] :retry_jitter (:none)
177
- # A delay randomiser function used by the default backoff function. Some predefined functions can be referenced by name - :none, :equal, :full, otherwise a Proc that takes and returns a number.
210
+ # A delay randomiser function used by the default backoff function.
211
+ # Some predefined functions can be referenced by name - :none, :equal, :full,
212
+ # otherwise a Proc that takes and returns a number. This option is only used
213
+ # in the `legacy` retry mode.
178
214
  #
179
215
  # @see https://www.awsarchitectureblog.com/2015/03/backoff.html
180
216
  #
@@ -182,11 +218,26 @@ module Aws::ConfigService
182
218
  # The maximum number of times to retry failed requests. Only
183
219
  # ~ 500 level server errors and certain ~ 400 level client errors
184
220
  # are retried. Generally, these are throttling errors, data
185
- # checksum errors, networking errors, timeout errors and auth
186
- # errors from expired credentials.
221
+ # checksum errors, networking errors, timeout errors, auth errors,
222
+ # endpoint discovery, and errors from expired credentials.
223
+ # This option is only used in the `legacy` retry mode.
187
224
  #
188
225
  # @option options [Integer] :retry_max_delay (0)
189
- # The maximum number of seconds to delay between retries (0 for no limit) used by the default backoff function.
226
+ # The maximum number of seconds to delay between retries (0 for no limit)
227
+ # used by the default backoff function. This option is only used in the
228
+ # `legacy` retry mode.
229
+ #
230
+ # @option options [String] :retry_mode ("legacy")
231
+ # Specifies which retry algorithm to use. Values are:
232
+ # * `legacy` - The pre-existing retry behavior. This is default value if
233
+ # no retry mode is provided.
234
+ # * `standard` - A standardized set of retry rules across the AWS SDKs.
235
+ # This includes support for retry quotas, which limit the number of
236
+ # unsuccessful retries a client can make.
237
+ # * `adaptive` - An experimental retry mode that includes all the
238
+ # functionality of `standard` mode along with automatic client side
239
+ # throttling. This is a provisional mode that may change behavior
240
+ # in the future.
190
241
  #
191
242
  # @option options [String] :secret_access_key
192
243
  #
@@ -219,16 +270,16 @@ module Aws::ConfigService
219
270
  # requests through. Formatted like 'http://proxy.com:123'.
220
271
  #
221
272
  # @option options [Float] :http_open_timeout (15) The number of
222
- # seconds to wait when opening a HTTP session before rasing a
273
+ # seconds to wait when opening a HTTP session before raising a
223
274
  # `Timeout::Error`.
224
275
  #
225
276
  # @option options [Integer] :http_read_timeout (60) The default
226
277
  # number of seconds to wait for response data. This value can
227
278
  # safely be set
228
- # per-request on the session yeidled by {#session_for}.
279
+ # per-request on the session yielded by {#session_for}.
229
280
  #
230
281
  # @option options [Float] :http_idle_timeout (5) The number of
231
- # seconds a connection is allowed to sit idble before it is
282
+ # seconds a connection is allowed to sit idle before it is
232
283
  # considered stale. Stale connections are closed and removed
233
284
  # from the pool before making a request.
234
285
  #
@@ -237,7 +288,7 @@ module Aws::ConfigService
237
288
  # request body. This option has no effect unless the request has
238
289
  # "Expect" header set to "100-continue". Defaults to `nil` which
239
290
  # disables this behaviour. This value can safely be set per
240
- # request on the session yeidled by {#session_for}.
291
+ # request on the session yielded by {#session_for}.
241
292
  #
242
293
  # @option options [Boolean] :http_wire_trace (false) When `true`,
243
294
  # HTTP debug output will be sent to the `:logger`.
@@ -4538,7 +4589,7 @@ module Aws::ConfigService
4538
4589
  params: params,
4539
4590
  config: config)
4540
4591
  context[:gem_name] = 'aws-sdk-configservice'
4541
- context[:gem_version] = '1.42.1'
4592
+ context[:gem_version] = '1.43.0'
4542
4593
  Seahorse::Client::Request.new(handlers, context)
4543
4594
  end
4544
4595
 
@@ -6,6 +6,79 @@
6
6
  # WARNING ABOUT GENERATED CODE
7
7
 
8
8
  module Aws::ConfigService
9
+
10
+ # When ConfigService returns an error response, the Ruby SDK constructs and raises an error.
11
+ # These errors all extend Aws::ConfigService::Errors::ServiceError < {Aws::Errors::ServiceError}
12
+ #
13
+ # You can rescue all ConfigService errors using ServiceError:
14
+ #
15
+ # begin
16
+ # # do stuff
17
+ # rescue Aws::ConfigService::Errors::ServiceError
18
+ # # rescues all ConfigService API errors
19
+ # end
20
+ #
21
+ #
22
+ # ## Request Context
23
+ # ServiceError objects have a {Aws::Errors::ServiceError#context #context} method that returns
24
+ # information about the request that generated the error.
25
+ # See {Seahorse::Client::RequestContext} for more information.
26
+ #
27
+ # ## Error Classes
28
+ # * {ConformancePackTemplateValidationException}
29
+ # * {InsufficientDeliveryPolicyException}
30
+ # * {InsufficientPermissionsException}
31
+ # * {InvalidConfigurationRecorderNameException}
32
+ # * {InvalidDeliveryChannelNameException}
33
+ # * {InvalidExpressionException}
34
+ # * {InvalidLimitException}
35
+ # * {InvalidNextTokenException}
36
+ # * {InvalidParameterValueException}
37
+ # * {InvalidRecordingGroupException}
38
+ # * {InvalidResultTokenException}
39
+ # * {InvalidRoleException}
40
+ # * {InvalidS3KeyPrefixException}
41
+ # * {InvalidSNSTopicARNException}
42
+ # * {InvalidTimeRangeException}
43
+ # * {LastDeliveryChannelDeleteFailedException}
44
+ # * {LimitExceededException}
45
+ # * {MaxActiveResourcesExceededException}
46
+ # * {MaxNumberOfConfigRulesExceededException}
47
+ # * {MaxNumberOfConfigurationRecordersExceededException}
48
+ # * {MaxNumberOfConformancePacksExceededException}
49
+ # * {MaxNumberOfDeliveryChannelsExceededException}
50
+ # * {MaxNumberOfOrganizationConfigRulesExceededException}
51
+ # * {MaxNumberOfOrganizationConformancePacksExceededException}
52
+ # * {MaxNumberOfRetentionConfigurationsExceededException}
53
+ # * {NoAvailableConfigurationRecorderException}
54
+ # * {NoAvailableDeliveryChannelException}
55
+ # * {NoAvailableOrganizationException}
56
+ # * {NoRunningConfigurationRecorderException}
57
+ # * {NoSuchBucketException}
58
+ # * {NoSuchConfigRuleException}
59
+ # * {NoSuchConfigRuleInConformancePackException}
60
+ # * {NoSuchConfigurationAggregatorException}
61
+ # * {NoSuchConfigurationRecorderException}
62
+ # * {NoSuchConformancePackException}
63
+ # * {NoSuchDeliveryChannelException}
64
+ # * {NoSuchOrganizationConfigRuleException}
65
+ # * {NoSuchOrganizationConformancePackException}
66
+ # * {NoSuchRemediationConfigurationException}
67
+ # * {NoSuchRemediationExceptionException}
68
+ # * {NoSuchRetentionConfigurationException}
69
+ # * {OrganizationAccessDeniedException}
70
+ # * {OrganizationAllFeaturesNotEnabledException}
71
+ # * {OrganizationConformancePackTemplateValidationException}
72
+ # * {OversizedConfigurationItemException}
73
+ # * {RemediationInProgressException}
74
+ # * {ResourceInUseException}
75
+ # * {ResourceNotDiscoveredException}
76
+ # * {ResourceNotFoundException}
77
+ # * {TooManyTagsException}
78
+ # * {ValidationException}
79
+ #
80
+ # Additionally, error classes are dynamically generated for service errors based on the error code
81
+ # if they are not defined above.
9
82
  module Errors
10
83
 
11
84
  extend Aws::Errors::DynamicErrors
@@ -18,7 +91,6 @@ module Aws::ConfigService
18
91
  def initialize(context, message, data = Aws::EmptyStructure.new)
19
92
  super(context, message, data)
20
93
  end
21
-
22
94
  end
23
95
 
24
96
  class InsufficientDeliveryPolicyException < ServiceError
@@ -29,7 +101,6 @@ module Aws::ConfigService
29
101
  def initialize(context, message, data = Aws::EmptyStructure.new)
30
102
  super(context, message, data)
31
103
  end
32
-
33
104
  end
34
105
 
35
106
  class InsufficientPermissionsException < ServiceError
@@ -40,7 +111,6 @@ module Aws::ConfigService
40
111
  def initialize(context, message, data = Aws::EmptyStructure.new)
41
112
  super(context, message, data)
42
113
  end
43
-
44
114
  end
45
115
 
46
116
  class InvalidConfigurationRecorderNameException < ServiceError
@@ -51,7 +121,6 @@ module Aws::ConfigService
51
121
  def initialize(context, message, data = Aws::EmptyStructure.new)
52
122
  super(context, message, data)
53
123
  end
54
-
55
124
  end
56
125
 
57
126
  class InvalidDeliveryChannelNameException < ServiceError
@@ -62,7 +131,6 @@ module Aws::ConfigService
62
131
  def initialize(context, message, data = Aws::EmptyStructure.new)
63
132
  super(context, message, data)
64
133
  end
65
-
66
134
  end
67
135
 
68
136
  class InvalidExpressionException < ServiceError
@@ -73,7 +141,6 @@ module Aws::ConfigService
73
141
  def initialize(context, message, data = Aws::EmptyStructure.new)
74
142
  super(context, message, data)
75
143
  end
76
-
77
144
  end
78
145
 
79
146
  class InvalidLimitException < ServiceError
@@ -84,7 +151,6 @@ module Aws::ConfigService
84
151
  def initialize(context, message, data = Aws::EmptyStructure.new)
85
152
  super(context, message, data)
86
153
  end
87
-
88
154
  end
89
155
 
90
156
  class InvalidNextTokenException < ServiceError
@@ -95,7 +161,6 @@ module Aws::ConfigService
95
161
  def initialize(context, message, data = Aws::EmptyStructure.new)
96
162
  super(context, message, data)
97
163
  end
98
-
99
164
  end
100
165
 
101
166
  class InvalidParameterValueException < ServiceError
@@ -106,7 +171,6 @@ module Aws::ConfigService
106
171
  def initialize(context, message, data = Aws::EmptyStructure.new)
107
172
  super(context, message, data)
108
173
  end
109
-
110
174
  end
111
175
 
112
176
  class InvalidRecordingGroupException < ServiceError
@@ -117,7 +181,6 @@ module Aws::ConfigService
117
181
  def initialize(context, message, data = Aws::EmptyStructure.new)
118
182
  super(context, message, data)
119
183
  end
120
-
121
184
  end
122
185
 
123
186
  class InvalidResultTokenException < ServiceError
@@ -128,7 +191,6 @@ module Aws::ConfigService
128
191
  def initialize(context, message, data = Aws::EmptyStructure.new)
129
192
  super(context, message, data)
130
193
  end
131
-
132
194
  end
133
195
 
134
196
  class InvalidRoleException < ServiceError
@@ -139,7 +201,6 @@ module Aws::ConfigService
139
201
  def initialize(context, message, data = Aws::EmptyStructure.new)
140
202
  super(context, message, data)
141
203
  end
142
-
143
204
  end
144
205
 
145
206
  class InvalidS3KeyPrefixException < ServiceError
@@ -150,7 +211,6 @@ module Aws::ConfigService
150
211
  def initialize(context, message, data = Aws::EmptyStructure.new)
151
212
  super(context, message, data)
152
213
  end
153
-
154
214
  end
155
215
 
156
216
  class InvalidSNSTopicARNException < ServiceError
@@ -161,7 +221,6 @@ module Aws::ConfigService
161
221
  def initialize(context, message, data = Aws::EmptyStructure.new)
162
222
  super(context, message, data)
163
223
  end
164
-
165
224
  end
166
225
 
167
226
  class InvalidTimeRangeException < ServiceError
@@ -172,7 +231,6 @@ module Aws::ConfigService
172
231
  def initialize(context, message, data = Aws::EmptyStructure.new)
173
232
  super(context, message, data)
174
233
  end
175
-
176
234
  end
177
235
 
178
236
  class LastDeliveryChannelDeleteFailedException < ServiceError
@@ -183,7 +241,6 @@ module Aws::ConfigService
183
241
  def initialize(context, message, data = Aws::EmptyStructure.new)
184
242
  super(context, message, data)
185
243
  end
186
-
187
244
  end
188
245
 
189
246
  class LimitExceededException < ServiceError
@@ -194,7 +251,6 @@ module Aws::ConfigService
194
251
  def initialize(context, message, data = Aws::EmptyStructure.new)
195
252
  super(context, message, data)
196
253
  end
197
-
198
254
  end
199
255
 
200
256
  class MaxActiveResourcesExceededException < ServiceError
@@ -205,7 +261,6 @@ module Aws::ConfigService
205
261
  def initialize(context, message, data = Aws::EmptyStructure.new)
206
262
  super(context, message, data)
207
263
  end
208
-
209
264
  end
210
265
 
211
266
  class MaxNumberOfConfigRulesExceededException < ServiceError
@@ -216,7 +271,6 @@ module Aws::ConfigService
216
271
  def initialize(context, message, data = Aws::EmptyStructure.new)
217
272
  super(context, message, data)
218
273
  end
219
-
220
274
  end
221
275
 
222
276
  class MaxNumberOfConfigurationRecordersExceededException < ServiceError
@@ -227,7 +281,6 @@ module Aws::ConfigService
227
281
  def initialize(context, message, data = Aws::EmptyStructure.new)
228
282
  super(context, message, data)
229
283
  end
230
-
231
284
  end
232
285
 
233
286
  class MaxNumberOfConformancePacksExceededException < ServiceError
@@ -238,7 +291,6 @@ module Aws::ConfigService
238
291
  def initialize(context, message, data = Aws::EmptyStructure.new)
239
292
  super(context, message, data)
240
293
  end
241
-
242
294
  end
243
295
 
244
296
  class MaxNumberOfDeliveryChannelsExceededException < ServiceError
@@ -249,7 +301,6 @@ module Aws::ConfigService
249
301
  def initialize(context, message, data = Aws::EmptyStructure.new)
250
302
  super(context, message, data)
251
303
  end
252
-
253
304
  end
254
305
 
255
306
  class MaxNumberOfOrganizationConfigRulesExceededException < ServiceError
@@ -260,7 +311,6 @@ module Aws::ConfigService
260
311
  def initialize(context, message, data = Aws::EmptyStructure.new)
261
312
  super(context, message, data)
262
313
  end
263
-
264
314
  end
265
315
 
266
316
  class MaxNumberOfOrganizationConformancePacksExceededException < ServiceError
@@ -271,7 +321,6 @@ module Aws::ConfigService
271
321
  def initialize(context, message, data = Aws::EmptyStructure.new)
272
322
  super(context, message, data)
273
323
  end
274
-
275
324
  end
276
325
 
277
326
  class MaxNumberOfRetentionConfigurationsExceededException < ServiceError
@@ -282,7 +331,6 @@ module Aws::ConfigService
282
331
  def initialize(context, message, data = Aws::EmptyStructure.new)
283
332
  super(context, message, data)
284
333
  end
285
-
286
334
  end
287
335
 
288
336
  class NoAvailableConfigurationRecorderException < ServiceError
@@ -293,7 +341,6 @@ module Aws::ConfigService
293
341
  def initialize(context, message, data = Aws::EmptyStructure.new)
294
342
  super(context, message, data)
295
343
  end
296
-
297
344
  end
298
345
 
299
346
  class NoAvailableDeliveryChannelException < ServiceError
@@ -304,7 +351,6 @@ module Aws::ConfigService
304
351
  def initialize(context, message, data = Aws::EmptyStructure.new)
305
352
  super(context, message, data)
306
353
  end
307
-
308
354
  end
309
355
 
310
356
  class NoAvailableOrganizationException < ServiceError
@@ -315,7 +361,6 @@ module Aws::ConfigService
315
361
  def initialize(context, message, data = Aws::EmptyStructure.new)
316
362
  super(context, message, data)
317
363
  end
318
-
319
364
  end
320
365
 
321
366
  class NoRunningConfigurationRecorderException < ServiceError
@@ -326,7 +371,6 @@ module Aws::ConfigService
326
371
  def initialize(context, message, data = Aws::EmptyStructure.new)
327
372
  super(context, message, data)
328
373
  end
329
-
330
374
  end
331
375
 
332
376
  class NoSuchBucketException < ServiceError
@@ -337,7 +381,6 @@ module Aws::ConfigService
337
381
  def initialize(context, message, data = Aws::EmptyStructure.new)
338
382
  super(context, message, data)
339
383
  end
340
-
341
384
  end
342
385
 
343
386
  class NoSuchConfigRuleException < ServiceError
@@ -348,7 +391,6 @@ module Aws::ConfigService
348
391
  def initialize(context, message, data = Aws::EmptyStructure.new)
349
392
  super(context, message, data)
350
393
  end
351
-
352
394
  end
353
395
 
354
396
  class NoSuchConfigRuleInConformancePackException < ServiceError
@@ -359,7 +401,6 @@ module Aws::ConfigService
359
401
  def initialize(context, message, data = Aws::EmptyStructure.new)
360
402
  super(context, message, data)
361
403
  end
362
-
363
404
  end
364
405
 
365
406
  class NoSuchConfigurationAggregatorException < ServiceError
@@ -370,7 +411,6 @@ module Aws::ConfigService
370
411
  def initialize(context, message, data = Aws::EmptyStructure.new)
371
412
  super(context, message, data)
372
413
  end
373
-
374
414
  end
375
415
 
376
416
  class NoSuchConfigurationRecorderException < ServiceError
@@ -381,7 +421,6 @@ module Aws::ConfigService
381
421
  def initialize(context, message, data = Aws::EmptyStructure.new)
382
422
  super(context, message, data)
383
423
  end
384
-
385
424
  end
386
425
 
387
426
  class NoSuchConformancePackException < ServiceError
@@ -392,7 +431,6 @@ module Aws::ConfigService
392
431
  def initialize(context, message, data = Aws::EmptyStructure.new)
393
432
  super(context, message, data)
394
433
  end
395
-
396
434
  end
397
435
 
398
436
  class NoSuchDeliveryChannelException < ServiceError
@@ -403,7 +441,6 @@ module Aws::ConfigService
403
441
  def initialize(context, message, data = Aws::EmptyStructure.new)
404
442
  super(context, message, data)
405
443
  end
406
-
407
444
  end
408
445
 
409
446
  class NoSuchOrganizationConfigRuleException < ServiceError
@@ -414,7 +451,6 @@ module Aws::ConfigService
414
451
  def initialize(context, message, data = Aws::EmptyStructure.new)
415
452
  super(context, message, data)
416
453
  end
417
-
418
454
  end
419
455
 
420
456
  class NoSuchOrganizationConformancePackException < ServiceError
@@ -425,7 +461,6 @@ module Aws::ConfigService
425
461
  def initialize(context, message, data = Aws::EmptyStructure.new)
426
462
  super(context, message, data)
427
463
  end
428
-
429
464
  end
430
465
 
431
466
  class NoSuchRemediationConfigurationException < ServiceError
@@ -436,7 +471,6 @@ module Aws::ConfigService
436
471
  def initialize(context, message, data = Aws::EmptyStructure.new)
437
472
  super(context, message, data)
438
473
  end
439
-
440
474
  end
441
475
 
442
476
  class NoSuchRemediationExceptionException < ServiceError
@@ -447,7 +481,6 @@ module Aws::ConfigService
447
481
  def initialize(context, message, data = Aws::EmptyStructure.new)
448
482
  super(context, message, data)
449
483
  end
450
-
451
484
  end
452
485
 
453
486
  class NoSuchRetentionConfigurationException < ServiceError
@@ -458,7 +491,6 @@ module Aws::ConfigService
458
491
  def initialize(context, message, data = Aws::EmptyStructure.new)
459
492
  super(context, message, data)
460
493
  end
461
-
462
494
  end
463
495
 
464
496
  class OrganizationAccessDeniedException < ServiceError
@@ -469,7 +501,6 @@ module Aws::ConfigService
469
501
  def initialize(context, message, data = Aws::EmptyStructure.new)
470
502
  super(context, message, data)
471
503
  end
472
-
473
504
  end
474
505
 
475
506
  class OrganizationAllFeaturesNotEnabledException < ServiceError
@@ -480,7 +511,6 @@ module Aws::ConfigService
480
511
  def initialize(context, message, data = Aws::EmptyStructure.new)
481
512
  super(context, message, data)
482
513
  end
483
-
484
514
  end
485
515
 
486
516
  class OrganizationConformancePackTemplateValidationException < ServiceError
@@ -491,7 +521,6 @@ module Aws::ConfigService
491
521
  def initialize(context, message, data = Aws::EmptyStructure.new)
492
522
  super(context, message, data)
493
523
  end
494
-
495
524
  end
496
525
 
497
526
  class OversizedConfigurationItemException < ServiceError
@@ -502,7 +531,6 @@ module Aws::ConfigService
502
531
  def initialize(context, message, data = Aws::EmptyStructure.new)
503
532
  super(context, message, data)
504
533
  end
505
-
506
534
  end
507
535
 
508
536
  class RemediationInProgressException < ServiceError
@@ -513,7 +541,6 @@ module Aws::ConfigService
513
541
  def initialize(context, message, data = Aws::EmptyStructure.new)
514
542
  super(context, message, data)
515
543
  end
516
-
517
544
  end
518
545
 
519
546
  class ResourceInUseException < ServiceError
@@ -524,7 +551,6 @@ module Aws::ConfigService
524
551
  def initialize(context, message, data = Aws::EmptyStructure.new)
525
552
  super(context, message, data)
526
553
  end
527
-
528
554
  end
529
555
 
530
556
  class ResourceNotDiscoveredException < ServiceError
@@ -535,7 +561,6 @@ module Aws::ConfigService
535
561
  def initialize(context, message, data = Aws::EmptyStructure.new)
536
562
  super(context, message, data)
537
563
  end
538
-
539
564
  end
540
565
 
541
566
  class ResourceNotFoundException < ServiceError
@@ -546,7 +571,6 @@ module Aws::ConfigService
546
571
  def initialize(context, message, data = Aws::EmptyStructure.new)
547
572
  super(context, message, data)
548
573
  end
549
-
550
574
  end
551
575
 
552
576
  class TooManyTagsException < ServiceError
@@ -557,7 +581,6 @@ module Aws::ConfigService
557
581
  def initialize(context, message, data = Aws::EmptyStructure.new)
558
582
  super(context, message, data)
559
583
  end
560
-
561
584
  end
562
585
 
563
586
  class ValidationException < ServiceError
@@ -568,7 +591,6 @@ module Aws::ConfigService
568
591
  def initialize(context, message, data = Aws::EmptyStructure.new)
569
592
  super(context, message, data)
570
593
  end
571
-
572
594
  end
573
595
 
574
596
  end
@@ -6,6 +6,13 @@
6
6
  # WARNING ABOUT GENERATED CODE
7
7
 
8
8
  module Aws::ConfigService
9
+ # This class provides a resource oriented interface for ConfigService.
10
+ # To create a resource object:
11
+ # resource = Aws::ConfigService::Resource.new(region: 'us-west-2')
12
+ # You can supply a client object with custom configuration that will be used for all resource operations.
13
+ # If you do not pass +:client+, a default client will be constructed.
14
+ # client = Aws::ConfigService::Client.new(region: 'us-west-2')
15
+ # resource = Aws::ConfigService::Resource.new(client: client)
9
16
  class Resource
10
17
 
11
18
  # @param options ({})
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-configservice
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.42.1
4
+ version: 1.43.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: 2020-03-02 00:00:00.000000000 Z
11
+ date: 2020-03-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core