aws-sdk-configservice 1.42.1 → 1.47.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-configservice.rb +9 -4
- data/lib/aws-sdk-configservice/client.rb +80 -14
- data/lib/aws-sdk-configservice/client_api.rb +2 -0
- data/lib/aws-sdk-configservice/customizations.rb +1 -0
- data/lib/aws-sdk-configservice/errors.rb +75 -51
- data/lib/aws-sdk-configservice/resource.rb +3 -0
- data/lib/aws-sdk-configservice/types.rb +216 -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: a5b6d2f64c52a2077052df9bfccd4adc5b43cde8132a85cd8bb9465cf1dc2aff
|
4
|
+
data.tar.gz: 38e63bb77446f6292c336875b1e17a80a1e54132b932ea031206d88e236f9932
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ef29709d0487c8405563715f7e983c7db6492d13d9e42196a84c9ae9bec39786912745644d088324c3839924924ddbbf25bf1c54ccda2ec7391b85b0bb42ebe9
|
7
|
+
data.tar.gz: e0132fc0a5a828b4bc9db014b8831ad2717f7f9ef83984732f80b94c3ca509935e6b7fb43cb9eaa4106af8e76d1e4c9f1da1754e47784fbec025eefd1a934396
|
@@ -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-configservice/customizations'
|
|
24
26
|
# methods each accept a hash of request parameters and return a response
|
25
27
|
# structure.
|
26
28
|
#
|
29
|
+
# config_service = Aws::ConfigService::Client.new
|
30
|
+
# resp = config_service.batch_get_aggregate_resource_config(params)
|
31
|
+
#
|
27
32
|
# See {Client} for more information.
|
28
33
|
#
|
29
34
|
# # Errors
|
30
35
|
#
|
31
|
-
# Errors returned from AWS Config
|
32
|
-
# extend {Errors::ServiceError}.
|
36
|
+
# Errors returned from AWS Config 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::ConfigService::Errors::ServiceError
|
37
|
-
# # rescues all
|
42
|
+
# # rescues all AWS Config API errors
|
38
43
|
# end
|
39
44
|
#
|
40
45
|
# See {Errors} for more information.
|
@@ -42,6 +47,6 @@ require_relative 'aws-sdk-configservice/customizations'
|
|
42
47
|
# @service
|
43
48
|
module Aws::ConfigService
|
44
49
|
|
45
|
-
GEM_VERSION = '1.
|
50
|
+
GEM_VERSION = '1.47.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/json_rpc.rb'
|
29
32
|
|
30
33
|
Aws::Plugins::GlobalConfiguration.add_identifier(:configservice)
|
31
34
|
|
32
35
|
module Aws::ConfigService
|
36
|
+
# An API client for ConfigService. To construct a client, you need to configure a `:region` and `:credentials`.
|
37
|
+
#
|
38
|
+
# client = Aws::ConfigService::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::ConfigService
|
|
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::ConfigService
|
|
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::ConfigService
|
|
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::ConfigService
|
|
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::ConfigService
|
|
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::ConfigService
|
|
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::ConfigService
|
|
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::ConfigService
|
|
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::ConfigService
|
|
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::ConfigService
|
|
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`.
|
@@ -2056,6 +2114,8 @@ module Aws::ConfigService
|
|
2056
2114
|
# * {Types::DescribeRemediationExceptionsResponse#remediation_exceptions #remediation_exceptions} => Array<Types::RemediationException>
|
2057
2115
|
# * {Types::DescribeRemediationExceptionsResponse#next_token #next_token} => String
|
2058
2116
|
#
|
2117
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2118
|
+
#
|
2059
2119
|
# @example Request syntax with placeholder values
|
2060
2120
|
#
|
2061
2121
|
# resp = client.describe_remediation_exceptions({
|
@@ -2116,6 +2176,8 @@ module Aws::ConfigService
|
|
2116
2176
|
# * {Types::DescribeRemediationExecutionStatusResponse#remediation_execution_statuses #remediation_execution_statuses} => Array<Types::RemediationExecutionStatus>
|
2117
2177
|
# * {Types::DescribeRemediationExecutionStatusResponse#next_token #next_token} => String
|
2118
2178
|
#
|
2179
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2180
|
+
#
|
2119
2181
|
# @example Request syntax with placeholder values
|
2120
2182
|
#
|
2121
2183
|
# resp = client.describe_remediation_execution_status({
|
@@ -3045,6 +3107,8 @@ module Aws::ConfigService
|
|
3045
3107
|
# * {Types::GetResourceConfigHistoryResponse#configuration_items #configuration_items} => Array<Types::ConfigurationItem>
|
3046
3108
|
# * {Types::GetResourceConfigHistoryResponse#next_token #next_token} => String
|
3047
3109
|
#
|
3110
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3111
|
+
#
|
3048
3112
|
# @example Request syntax with placeholder values
|
3049
3113
|
#
|
3050
3114
|
# resp = client.get_resource_config_history({
|
@@ -4222,6 +4286,8 @@ module Aws::ConfigService
|
|
4222
4286
|
# * {Types::SelectAggregateResourceConfigResponse#query_info #query_info} => Types::QueryInfo
|
4223
4287
|
# * {Types::SelectAggregateResourceConfigResponse#next_token #next_token} => String
|
4224
4288
|
#
|
4289
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
4290
|
+
#
|
4225
4291
|
# @example Request syntax with placeholder values
|
4226
4292
|
#
|
4227
4293
|
# resp = client.select_aggregate_resource_config({
|
@@ -4538,7 +4604,7 @@ module Aws::ConfigService
|
|
4538
4604
|
params: params,
|
4539
4605
|
config: config)
|
4540
4606
|
context[:gem_name] = 'aws-sdk-configservice'
|
4541
|
-
context[:gem_version] = '1.
|
4607
|
+
context[:gem_version] = '1.47.0'
|
4542
4608
|
Seahorse::Client::Request.new(handlers, context)
|
4543
4609
|
end
|
4544
4610
|
|
@@ -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,79 @@
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
8
10
|
module Aws::ConfigService
|
11
|
+
|
12
|
+
# When ConfigService returns an error response, the Ruby SDK constructs and raises an error.
|
13
|
+
# These errors all extend Aws::ConfigService::Errors::ServiceError < {Aws::Errors::ServiceError}
|
14
|
+
#
|
15
|
+
# You can rescue all ConfigService errors using ServiceError:
|
16
|
+
#
|
17
|
+
# begin
|
18
|
+
# # do stuff
|
19
|
+
# rescue Aws::ConfigService::Errors::ServiceError
|
20
|
+
# # rescues all ConfigService 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
|
+
# * {ConformancePackTemplateValidationException}
|
31
|
+
# * {InsufficientDeliveryPolicyException}
|
32
|
+
# * {InsufficientPermissionsException}
|
33
|
+
# * {InvalidConfigurationRecorderNameException}
|
34
|
+
# * {InvalidDeliveryChannelNameException}
|
35
|
+
# * {InvalidExpressionException}
|
36
|
+
# * {InvalidLimitException}
|
37
|
+
# * {InvalidNextTokenException}
|
38
|
+
# * {InvalidParameterValueException}
|
39
|
+
# * {InvalidRecordingGroupException}
|
40
|
+
# * {InvalidResultTokenException}
|
41
|
+
# * {InvalidRoleException}
|
42
|
+
# * {InvalidS3KeyPrefixException}
|
43
|
+
# * {InvalidSNSTopicARNException}
|
44
|
+
# * {InvalidTimeRangeException}
|
45
|
+
# * {LastDeliveryChannelDeleteFailedException}
|
46
|
+
# * {LimitExceededException}
|
47
|
+
# * {MaxActiveResourcesExceededException}
|
48
|
+
# * {MaxNumberOfConfigRulesExceededException}
|
49
|
+
# * {MaxNumberOfConfigurationRecordersExceededException}
|
50
|
+
# * {MaxNumberOfConformancePacksExceededException}
|
51
|
+
# * {MaxNumberOfDeliveryChannelsExceededException}
|
52
|
+
# * {MaxNumberOfOrganizationConfigRulesExceededException}
|
53
|
+
# * {MaxNumberOfOrganizationConformancePacksExceededException}
|
54
|
+
# * {MaxNumberOfRetentionConfigurationsExceededException}
|
55
|
+
# * {NoAvailableConfigurationRecorderException}
|
56
|
+
# * {NoAvailableDeliveryChannelException}
|
57
|
+
# * {NoAvailableOrganizationException}
|
58
|
+
# * {NoRunningConfigurationRecorderException}
|
59
|
+
# * {NoSuchBucketException}
|
60
|
+
# * {NoSuchConfigRuleException}
|
61
|
+
# * {NoSuchConfigRuleInConformancePackException}
|
62
|
+
# * {NoSuchConfigurationAggregatorException}
|
63
|
+
# * {NoSuchConfigurationRecorderException}
|
64
|
+
# * {NoSuchConformancePackException}
|
65
|
+
# * {NoSuchDeliveryChannelException}
|
66
|
+
# * {NoSuchOrganizationConfigRuleException}
|
67
|
+
# * {NoSuchOrganizationConformancePackException}
|
68
|
+
# * {NoSuchRemediationConfigurationException}
|
69
|
+
# * {NoSuchRemediationExceptionException}
|
70
|
+
# * {NoSuchRetentionConfigurationException}
|
71
|
+
# * {OrganizationAccessDeniedException}
|
72
|
+
# * {OrganizationAllFeaturesNotEnabledException}
|
73
|
+
# * {OrganizationConformancePackTemplateValidationException}
|
74
|
+
# * {OversizedConfigurationItemException}
|
75
|
+
# * {RemediationInProgressException}
|
76
|
+
# * {ResourceInUseException}
|
77
|
+
# * {ResourceNotDiscoveredException}
|
78
|
+
# * {ResourceNotFoundException}
|
79
|
+
# * {TooManyTagsException}
|
80
|
+
# * {ValidationException}
|
81
|
+
#
|
82
|
+
# Additionally, error classes are dynamically generated for service errors based on the error code
|
83
|
+
# if they are not defined above.
|
9
84
|
module Errors
|
10
85
|
|
11
86
|
extend Aws::Errors::DynamicErrors
|
@@ -18,7 +93,6 @@ module Aws::ConfigService
|
|
18
93
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
19
94
|
super(context, message, data)
|
20
95
|
end
|
21
|
-
|
22
96
|
end
|
23
97
|
|
24
98
|
class InsufficientDeliveryPolicyException < ServiceError
|
@@ -29,7 +103,6 @@ module Aws::ConfigService
|
|
29
103
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
30
104
|
super(context, message, data)
|
31
105
|
end
|
32
|
-
|
33
106
|
end
|
34
107
|
|
35
108
|
class InsufficientPermissionsException < ServiceError
|
@@ -40,7 +113,6 @@ module Aws::ConfigService
|
|
40
113
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
41
114
|
super(context, message, data)
|
42
115
|
end
|
43
|
-
|
44
116
|
end
|
45
117
|
|
46
118
|
class InvalidConfigurationRecorderNameException < ServiceError
|
@@ -51,7 +123,6 @@ module Aws::ConfigService
|
|
51
123
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
52
124
|
super(context, message, data)
|
53
125
|
end
|
54
|
-
|
55
126
|
end
|
56
127
|
|
57
128
|
class InvalidDeliveryChannelNameException < ServiceError
|
@@ -62,7 +133,6 @@ module Aws::ConfigService
|
|
62
133
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
63
134
|
super(context, message, data)
|
64
135
|
end
|
65
|
-
|
66
136
|
end
|
67
137
|
|
68
138
|
class InvalidExpressionException < ServiceError
|
@@ -73,7 +143,6 @@ module Aws::ConfigService
|
|
73
143
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
74
144
|
super(context, message, data)
|
75
145
|
end
|
76
|
-
|
77
146
|
end
|
78
147
|
|
79
148
|
class InvalidLimitException < ServiceError
|
@@ -84,7 +153,6 @@ module Aws::ConfigService
|
|
84
153
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
85
154
|
super(context, message, data)
|
86
155
|
end
|
87
|
-
|
88
156
|
end
|
89
157
|
|
90
158
|
class InvalidNextTokenException < ServiceError
|
@@ -95,7 +163,6 @@ module Aws::ConfigService
|
|
95
163
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
96
164
|
super(context, message, data)
|
97
165
|
end
|
98
|
-
|
99
166
|
end
|
100
167
|
|
101
168
|
class InvalidParameterValueException < ServiceError
|
@@ -106,7 +173,6 @@ module Aws::ConfigService
|
|
106
173
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
107
174
|
super(context, message, data)
|
108
175
|
end
|
109
|
-
|
110
176
|
end
|
111
177
|
|
112
178
|
class InvalidRecordingGroupException < ServiceError
|
@@ -117,7 +183,6 @@ module Aws::ConfigService
|
|
117
183
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
118
184
|
super(context, message, data)
|
119
185
|
end
|
120
|
-
|
121
186
|
end
|
122
187
|
|
123
188
|
class InvalidResultTokenException < ServiceError
|
@@ -128,7 +193,6 @@ module Aws::ConfigService
|
|
128
193
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
129
194
|
super(context, message, data)
|
130
195
|
end
|
131
|
-
|
132
196
|
end
|
133
197
|
|
134
198
|
class InvalidRoleException < ServiceError
|
@@ -139,7 +203,6 @@ module Aws::ConfigService
|
|
139
203
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
140
204
|
super(context, message, data)
|
141
205
|
end
|
142
|
-
|
143
206
|
end
|
144
207
|
|
145
208
|
class InvalidS3KeyPrefixException < ServiceError
|
@@ -150,7 +213,6 @@ module Aws::ConfigService
|
|
150
213
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
151
214
|
super(context, message, data)
|
152
215
|
end
|
153
|
-
|
154
216
|
end
|
155
217
|
|
156
218
|
class InvalidSNSTopicARNException < ServiceError
|
@@ -161,7 +223,6 @@ module Aws::ConfigService
|
|
161
223
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
162
224
|
super(context, message, data)
|
163
225
|
end
|
164
|
-
|
165
226
|
end
|
166
227
|
|
167
228
|
class InvalidTimeRangeException < ServiceError
|
@@ -172,7 +233,6 @@ module Aws::ConfigService
|
|
172
233
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
173
234
|
super(context, message, data)
|
174
235
|
end
|
175
|
-
|
176
236
|
end
|
177
237
|
|
178
238
|
class LastDeliveryChannelDeleteFailedException < ServiceError
|
@@ -183,7 +243,6 @@ module Aws::ConfigService
|
|
183
243
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
184
244
|
super(context, message, data)
|
185
245
|
end
|
186
|
-
|
187
246
|
end
|
188
247
|
|
189
248
|
class LimitExceededException < ServiceError
|
@@ -194,7 +253,6 @@ module Aws::ConfigService
|
|
194
253
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
195
254
|
super(context, message, data)
|
196
255
|
end
|
197
|
-
|
198
256
|
end
|
199
257
|
|
200
258
|
class MaxActiveResourcesExceededException < ServiceError
|
@@ -205,7 +263,6 @@ module Aws::ConfigService
|
|
205
263
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
206
264
|
super(context, message, data)
|
207
265
|
end
|
208
|
-
|
209
266
|
end
|
210
267
|
|
211
268
|
class MaxNumberOfConfigRulesExceededException < ServiceError
|
@@ -216,7 +273,6 @@ module Aws::ConfigService
|
|
216
273
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
217
274
|
super(context, message, data)
|
218
275
|
end
|
219
|
-
|
220
276
|
end
|
221
277
|
|
222
278
|
class MaxNumberOfConfigurationRecordersExceededException < ServiceError
|
@@ -227,7 +283,6 @@ module Aws::ConfigService
|
|
227
283
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
228
284
|
super(context, message, data)
|
229
285
|
end
|
230
|
-
|
231
286
|
end
|
232
287
|
|
233
288
|
class MaxNumberOfConformancePacksExceededException < ServiceError
|
@@ -238,7 +293,6 @@ module Aws::ConfigService
|
|
238
293
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
239
294
|
super(context, message, data)
|
240
295
|
end
|
241
|
-
|
242
296
|
end
|
243
297
|
|
244
298
|
class MaxNumberOfDeliveryChannelsExceededException < ServiceError
|
@@ -249,7 +303,6 @@ module Aws::ConfigService
|
|
249
303
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
250
304
|
super(context, message, data)
|
251
305
|
end
|
252
|
-
|
253
306
|
end
|
254
307
|
|
255
308
|
class MaxNumberOfOrganizationConfigRulesExceededException < ServiceError
|
@@ -260,7 +313,6 @@ module Aws::ConfigService
|
|
260
313
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
261
314
|
super(context, message, data)
|
262
315
|
end
|
263
|
-
|
264
316
|
end
|
265
317
|
|
266
318
|
class MaxNumberOfOrganizationConformancePacksExceededException < ServiceError
|
@@ -271,7 +323,6 @@ module Aws::ConfigService
|
|
271
323
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
272
324
|
super(context, message, data)
|
273
325
|
end
|
274
|
-
|
275
326
|
end
|
276
327
|
|
277
328
|
class MaxNumberOfRetentionConfigurationsExceededException < ServiceError
|
@@ -282,7 +333,6 @@ module Aws::ConfigService
|
|
282
333
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
283
334
|
super(context, message, data)
|
284
335
|
end
|
285
|
-
|
286
336
|
end
|
287
337
|
|
288
338
|
class NoAvailableConfigurationRecorderException < ServiceError
|
@@ -293,7 +343,6 @@ module Aws::ConfigService
|
|
293
343
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
294
344
|
super(context, message, data)
|
295
345
|
end
|
296
|
-
|
297
346
|
end
|
298
347
|
|
299
348
|
class NoAvailableDeliveryChannelException < ServiceError
|
@@ -304,7 +353,6 @@ module Aws::ConfigService
|
|
304
353
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
305
354
|
super(context, message, data)
|
306
355
|
end
|
307
|
-
|
308
356
|
end
|
309
357
|
|
310
358
|
class NoAvailableOrganizationException < ServiceError
|
@@ -315,7 +363,6 @@ module Aws::ConfigService
|
|
315
363
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
316
364
|
super(context, message, data)
|
317
365
|
end
|
318
|
-
|
319
366
|
end
|
320
367
|
|
321
368
|
class NoRunningConfigurationRecorderException < ServiceError
|
@@ -326,7 +373,6 @@ module Aws::ConfigService
|
|
326
373
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
327
374
|
super(context, message, data)
|
328
375
|
end
|
329
|
-
|
330
376
|
end
|
331
377
|
|
332
378
|
class NoSuchBucketException < ServiceError
|
@@ -337,7 +383,6 @@ module Aws::ConfigService
|
|
337
383
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
338
384
|
super(context, message, data)
|
339
385
|
end
|
340
|
-
|
341
386
|
end
|
342
387
|
|
343
388
|
class NoSuchConfigRuleException < ServiceError
|
@@ -348,7 +393,6 @@ module Aws::ConfigService
|
|
348
393
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
349
394
|
super(context, message, data)
|
350
395
|
end
|
351
|
-
|
352
396
|
end
|
353
397
|
|
354
398
|
class NoSuchConfigRuleInConformancePackException < ServiceError
|
@@ -359,7 +403,6 @@ module Aws::ConfigService
|
|
359
403
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
360
404
|
super(context, message, data)
|
361
405
|
end
|
362
|
-
|
363
406
|
end
|
364
407
|
|
365
408
|
class NoSuchConfigurationAggregatorException < ServiceError
|
@@ -370,7 +413,6 @@ module Aws::ConfigService
|
|
370
413
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
371
414
|
super(context, message, data)
|
372
415
|
end
|
373
|
-
|
374
416
|
end
|
375
417
|
|
376
418
|
class NoSuchConfigurationRecorderException < ServiceError
|
@@ -381,7 +423,6 @@ module Aws::ConfigService
|
|
381
423
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
382
424
|
super(context, message, data)
|
383
425
|
end
|
384
|
-
|
385
426
|
end
|
386
427
|
|
387
428
|
class NoSuchConformancePackException < ServiceError
|
@@ -392,7 +433,6 @@ module Aws::ConfigService
|
|
392
433
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
393
434
|
super(context, message, data)
|
394
435
|
end
|
395
|
-
|
396
436
|
end
|
397
437
|
|
398
438
|
class NoSuchDeliveryChannelException < ServiceError
|
@@ -403,7 +443,6 @@ module Aws::ConfigService
|
|
403
443
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
404
444
|
super(context, message, data)
|
405
445
|
end
|
406
|
-
|
407
446
|
end
|
408
447
|
|
409
448
|
class NoSuchOrganizationConfigRuleException < ServiceError
|
@@ -414,7 +453,6 @@ module Aws::ConfigService
|
|
414
453
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
415
454
|
super(context, message, data)
|
416
455
|
end
|
417
|
-
|
418
456
|
end
|
419
457
|
|
420
458
|
class NoSuchOrganizationConformancePackException < ServiceError
|
@@ -425,7 +463,6 @@ module Aws::ConfigService
|
|
425
463
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
426
464
|
super(context, message, data)
|
427
465
|
end
|
428
|
-
|
429
466
|
end
|
430
467
|
|
431
468
|
class NoSuchRemediationConfigurationException < ServiceError
|
@@ -436,7 +473,6 @@ module Aws::ConfigService
|
|
436
473
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
437
474
|
super(context, message, data)
|
438
475
|
end
|
439
|
-
|
440
476
|
end
|
441
477
|
|
442
478
|
class NoSuchRemediationExceptionException < ServiceError
|
@@ -447,7 +483,6 @@ module Aws::ConfigService
|
|
447
483
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
448
484
|
super(context, message, data)
|
449
485
|
end
|
450
|
-
|
451
486
|
end
|
452
487
|
|
453
488
|
class NoSuchRetentionConfigurationException < ServiceError
|
@@ -458,7 +493,6 @@ module Aws::ConfigService
|
|
458
493
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
459
494
|
super(context, message, data)
|
460
495
|
end
|
461
|
-
|
462
496
|
end
|
463
497
|
|
464
498
|
class OrganizationAccessDeniedException < ServiceError
|
@@ -469,7 +503,6 @@ module Aws::ConfigService
|
|
469
503
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
470
504
|
super(context, message, data)
|
471
505
|
end
|
472
|
-
|
473
506
|
end
|
474
507
|
|
475
508
|
class OrganizationAllFeaturesNotEnabledException < ServiceError
|
@@ -480,7 +513,6 @@ module Aws::ConfigService
|
|
480
513
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
481
514
|
super(context, message, data)
|
482
515
|
end
|
483
|
-
|
484
516
|
end
|
485
517
|
|
486
518
|
class OrganizationConformancePackTemplateValidationException < ServiceError
|
@@ -491,7 +523,6 @@ module Aws::ConfigService
|
|
491
523
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
492
524
|
super(context, message, data)
|
493
525
|
end
|
494
|
-
|
495
526
|
end
|
496
527
|
|
497
528
|
class OversizedConfigurationItemException < ServiceError
|
@@ -502,7 +533,6 @@ module Aws::ConfigService
|
|
502
533
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
503
534
|
super(context, message, data)
|
504
535
|
end
|
505
|
-
|
506
536
|
end
|
507
537
|
|
508
538
|
class RemediationInProgressException < ServiceError
|
@@ -513,7 +543,6 @@ module Aws::ConfigService
|
|
513
543
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
514
544
|
super(context, message, data)
|
515
545
|
end
|
516
|
-
|
517
546
|
end
|
518
547
|
|
519
548
|
class ResourceInUseException < ServiceError
|
@@ -524,7 +553,6 @@ module Aws::ConfigService
|
|
524
553
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
525
554
|
super(context, message, data)
|
526
555
|
end
|
527
|
-
|
528
556
|
end
|
529
557
|
|
530
558
|
class ResourceNotDiscoveredException < ServiceError
|
@@ -535,7 +563,6 @@ module Aws::ConfigService
|
|
535
563
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
536
564
|
super(context, message, data)
|
537
565
|
end
|
538
|
-
|
539
566
|
end
|
540
567
|
|
541
568
|
class ResourceNotFoundException < ServiceError
|
@@ -546,7 +573,6 @@ module Aws::ConfigService
|
|
546
573
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
547
574
|
super(context, message, data)
|
548
575
|
end
|
549
|
-
|
550
576
|
end
|
551
577
|
|
552
578
|
class TooManyTagsException < ServiceError
|
@@ -557,7 +583,6 @@ module Aws::ConfigService
|
|
557
583
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
558
584
|
super(context, message, data)
|
559
585
|
end
|
560
|
-
|
561
586
|
end
|
562
587
|
|
563
588
|
class ValidationException < ServiceError
|
@@ -568,7 +593,6 @@ module Aws::ConfigService
|
|
568
593
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
569
594
|
super(context, message, data)
|
570
595
|
end
|
571
|
-
|
572
596
|
end
|
573
597
|
|
574
598
|
end
|