aws-sdk-configservice 1.105.0 → 1.107.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-configservice/client.rb +129 -54
- data/lib/aws-sdk-configservice/types.rb +71 -9
- data/lib/aws-sdk-configservice.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c1a35f7009ca588a9704b40c107686ec7d46ed5565867f7a5cd968f4735c3dc0
|
4
|
+
data.tar.gz: 3f14ec8055b3e52f11a87880252c6d9985a13489f3df7944120821a4c4b7c9e7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1b6e82a46945df6feeadea875d4a8f8927c4c90ff6cbaf078f5e27119eed128783686416c41a43120388118bfaad0830dddb1c867f948a8c6ddf1b17054b3d49
|
7
|
+
data.tar.gz: 1d20c086951af9afafd704149d403a1fd304dcb76a1feca3f855f3dc067ae07f7a412c2e028731d342f1410dfe359db3715079a4ffafe4a7ba65a416f208c333
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.107.0 (2024-04-25)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.106.0 (2024-04-12)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Updates documentation for AWS Config
|
13
|
+
|
4
14
|
1.105.0 (2024-01-26)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.107.0
|
@@ -22,6 +22,7 @@ require 'aws-sdk-core/plugins/endpoint_pattern.rb'
|
|
22
22
|
require 'aws-sdk-core/plugins/response_paging.rb'
|
23
23
|
require 'aws-sdk-core/plugins/stub_responses.rb'
|
24
24
|
require 'aws-sdk-core/plugins/idempotency_token.rb'
|
25
|
+
require 'aws-sdk-core/plugins/invocation_id.rb'
|
25
26
|
require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
26
27
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
27
28
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
@@ -72,6 +73,7 @@ module Aws::ConfigService
|
|
72
73
|
add_plugin(Aws::Plugins::ResponsePaging)
|
73
74
|
add_plugin(Aws::Plugins::StubResponses)
|
74
75
|
add_plugin(Aws::Plugins::IdempotencyToken)
|
76
|
+
add_plugin(Aws::Plugins::InvocationId)
|
75
77
|
add_plugin(Aws::Plugins::JsonvalueConverter)
|
76
78
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
77
79
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
@@ -196,10 +198,17 @@ module Aws::ConfigService
|
|
196
198
|
# When set to 'true' the request body will not be compressed
|
197
199
|
# for supported operations.
|
198
200
|
#
|
199
|
-
# @option options [String] :endpoint
|
200
|
-
#
|
201
|
-
#
|
202
|
-
#
|
201
|
+
# @option options [String, URI::HTTPS, URI::HTTP] :endpoint
|
202
|
+
# Normally you should not configure the `:endpoint` option
|
203
|
+
# directly. This is normally constructed from the `:region`
|
204
|
+
# option. Configuring `:endpoint` is normally reserved for
|
205
|
+
# connecting to test or custom endpoints. The endpoint should
|
206
|
+
# be a URI formatted like:
|
207
|
+
#
|
208
|
+
# 'http://example.com'
|
209
|
+
# 'https://example.com'
|
210
|
+
# 'http://example.com:123'
|
211
|
+
#
|
203
212
|
#
|
204
213
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
205
214
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -347,50 +356,65 @@ module Aws::ConfigService
|
|
347
356
|
# @option options [Aws::ConfigService::EndpointProvider] :endpoint_provider
|
348
357
|
# The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::ConfigService::EndpointParameters`
|
349
358
|
#
|
350
|
-
# @option options [
|
351
|
-
#
|
352
|
-
#
|
353
|
-
#
|
354
|
-
#
|
355
|
-
#
|
356
|
-
#
|
357
|
-
#
|
358
|
-
#
|
359
|
-
#
|
360
|
-
#
|
361
|
-
# @option options [Float] :
|
362
|
-
#
|
363
|
-
#
|
364
|
-
#
|
365
|
-
#
|
366
|
-
#
|
367
|
-
#
|
368
|
-
#
|
369
|
-
#
|
370
|
-
#
|
371
|
-
#
|
372
|
-
#
|
373
|
-
#
|
374
|
-
#
|
375
|
-
#
|
376
|
-
#
|
377
|
-
#
|
359
|
+
# @option options [Float] :http_continue_timeout (1)
|
360
|
+
# The number of seconds to wait for a 100-continue response before sending the
|
361
|
+
# request body. This option has no effect unless the request has "Expect"
|
362
|
+
# header set to "100-continue". Defaults to `nil` which disables this
|
363
|
+
# behaviour. This value can safely be set per request on the session.
|
364
|
+
#
|
365
|
+
# @option options [Float] :http_idle_timeout (5)
|
366
|
+
# The number of seconds a connection is allowed to sit idle before it
|
367
|
+
# is considered stale. Stale connections are closed and removed from the
|
368
|
+
# pool before making a request.
|
369
|
+
#
|
370
|
+
# @option options [Float] :http_open_timeout (15)
|
371
|
+
# The default number of seconds to wait for response data.
|
372
|
+
# This value can safely be set per-request on the session.
|
373
|
+
#
|
374
|
+
# @option options [URI::HTTP,String] :http_proxy
|
375
|
+
# A proxy to send requests through. Formatted like 'http://proxy.com:123'.
|
376
|
+
#
|
377
|
+
# @option options [Float] :http_read_timeout (60)
|
378
|
+
# The default number of seconds to wait for response data.
|
379
|
+
# This value can safely be set per-request on the session.
|
380
|
+
#
|
381
|
+
# @option options [Boolean] :http_wire_trace (false)
|
382
|
+
# When `true`, HTTP debug output will be sent to the `:logger`.
|
383
|
+
#
|
384
|
+
# @option options [Proc] :on_chunk_received
|
385
|
+
# When a Proc object is provided, it will be used as callback when each chunk
|
386
|
+
# of the response body is received. It provides three arguments: the chunk,
|
387
|
+
# the number of bytes received, and the total number of
|
388
|
+
# bytes in the response (or nil if the server did not send a `content-length`).
|
389
|
+
#
|
390
|
+
# @option options [Proc] :on_chunk_sent
|
391
|
+
# When a Proc object is provided, it will be used as callback when each chunk
|
392
|
+
# of the request body is sent. It provides three arguments: the chunk,
|
393
|
+
# the number of bytes read from the body, and the total number of
|
394
|
+
# bytes in the body.
|
395
|
+
#
|
396
|
+
# @option options [Boolean] :raise_response_errors (true)
|
397
|
+
# When `true`, response errors are raised.
|
398
|
+
#
|
399
|
+
# @option options [String] :ssl_ca_bundle
|
400
|
+
# Full path to the SSL certificate authority bundle file that should be used when
|
401
|
+
# verifying peer certificates. If you do not pass `:ssl_ca_bundle` or
|
402
|
+
# `:ssl_ca_directory` the the system default will be used if available.
|
403
|
+
#
|
404
|
+
# @option options [String] :ssl_ca_directory
|
405
|
+
# Full path of the directory that contains the unbundled SSL certificate
|
406
|
+
# authority files for verifying peer certificates. If you do
|
407
|
+
# not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the system
|
408
|
+
# default will be used if available.
|
378
409
|
#
|
379
|
-
# @option options [
|
380
|
-
#
|
381
|
-
# connection.
|
410
|
+
# @option options [String] :ssl_ca_store
|
411
|
+
# Sets the X509::Store to verify peer certificate.
|
382
412
|
#
|
383
|
-
# @option options [
|
384
|
-
#
|
385
|
-
# verifying peer certificates. If you do not pass
|
386
|
-
# `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
|
387
|
-
# will be used if available.
|
413
|
+
# @option options [Float] :ssl_timeout
|
414
|
+
# Sets the SSL timeout in seconds
|
388
415
|
#
|
389
|
-
# @option options [
|
390
|
-
#
|
391
|
-
# authority files for verifying peer certificates. If you do
|
392
|
-
# not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
|
393
|
-
# system default will be used if available.
|
416
|
+
# @option options [Boolean] :ssl_verify_peer (true)
|
417
|
+
# When `true`, SSL peer certificates are verified when establishing a connection.
|
394
418
|
#
|
395
419
|
def initialize(*args)
|
396
420
|
super
|
@@ -1365,7 +1389,7 @@ module Aws::ConfigService
|
|
1365
1389
|
# The number of rule evaluation results that you want returned.
|
1366
1390
|
#
|
1367
1391
|
# This parameter is required if the rule limit for your account is more
|
1368
|
-
# than the default of
|
1392
|
+
# than the default of 1000 rules.
|
1369
1393
|
#
|
1370
1394
|
# For information about requesting a rule limit increase, see [Config
|
1371
1395
|
# Limits][1] in the *Amazon Web Services General Reference Guide*.
|
@@ -2045,7 +2069,7 @@ module Aws::ConfigService
|
|
2045
2069
|
# Config rule names. It is only applicable, when you request all the
|
2046
2070
|
# organization Config rules.
|
2047
2071
|
#
|
2048
|
-
# *For accounts within an
|
2072
|
+
# *For accounts within an organization*
|
2049
2073
|
#
|
2050
2074
|
# If you deploy an organizational rule or conformance pack in an
|
2051
2075
|
# organization administrator account, and then establish a delegated
|
@@ -2214,7 +2238,7 @@ module Aws::ConfigService
|
|
2214
2238
|
# conformance packs names. They are only applicable, when you request
|
2215
2239
|
# all the organization conformance packs.
|
2216
2240
|
#
|
2217
|
-
# *For accounts within an
|
2241
|
+
# *For accounts within an organization*
|
2218
2242
|
#
|
2219
2243
|
# If you deploy an organizational rule or conformance pack in an
|
2220
2244
|
# organization administrator account, and then establish a delegated
|
@@ -4991,7 +5015,9 @@ module Aws::ConfigService
|
|
4991
5015
|
# target (SSM document) must exist and have permissions to use the
|
4992
5016
|
# target.
|
4993
5017
|
#
|
4994
|
-
# <note markdown="1">
|
5018
|
+
# <note markdown="1"> **Be aware of backward incompatible changes**
|
5019
|
+
#
|
5020
|
+
# If you make backward incompatible changes to the SSM document, you
|
4995
5021
|
# must call this again to ensure the remediations can run.
|
4996
5022
|
#
|
4997
5023
|
# This API does not support adding remediation configurations for
|
@@ -5001,7 +5027,9 @@ module Aws::ConfigService
|
|
5001
5027
|
#
|
5002
5028
|
# </note>
|
5003
5029
|
#
|
5004
|
-
# <note markdown="1">
|
5030
|
+
# <note markdown="1"> **Required fields**
|
5031
|
+
#
|
5032
|
+
# For manual remediation configuration, you need to provide a value for
|
5005
5033
|
# `automationAssumeRole` or use a value in the `assumeRole`field to
|
5006
5034
|
# remediate your resources. The SSM automation document can use either
|
5007
5035
|
# as long as it maps to a valid parameter.
|
@@ -5013,6 +5041,28 @@ module Aws::ConfigService
|
|
5013
5041
|
#
|
5014
5042
|
# </note>
|
5015
5043
|
#
|
5044
|
+
# <note markdown="1"> **Auto remediation can be initiated even for compliant resources**
|
5045
|
+
#
|
5046
|
+
# If you enable auto remediation for a specific Config rule using the
|
5047
|
+
# [PutRemediationConfigurations][1] API or the Config console, it
|
5048
|
+
# initiates the remediation process for all non-compliant resources for
|
5049
|
+
# that specific rule. The auto remediation process relies on the
|
5050
|
+
# compliance data snapshot which is captured on a periodic basis. Any
|
5051
|
+
# non-compliant resource that is updated between the snapshot schedule
|
5052
|
+
# will continue to be remediated based on the last known compliance data
|
5053
|
+
# snapshot.
|
5054
|
+
#
|
5055
|
+
# This means that in some cases auto remediation can be initiated even
|
5056
|
+
# for compliant resources, since the bootstrap processor uses a database
|
5057
|
+
# that can have stale evaluation results based on the last known
|
5058
|
+
# compliance data snapshot.
|
5059
|
+
#
|
5060
|
+
# </note>
|
5061
|
+
#
|
5062
|
+
#
|
5063
|
+
#
|
5064
|
+
# [1]: https://docs.aws.amazon.com/config/latest/APIReference/emAPI_PutRemediationConfigurations.html
|
5065
|
+
#
|
5016
5066
|
# @option params [required, Array<Types::RemediationConfiguration>] :remediation_configurations
|
5017
5067
|
# A list of remediation configuration objects.
|
5018
5068
|
#
|
@@ -5091,13 +5141,17 @@ module Aws::ConfigService
|
|
5091
5141
|
# updates an existing exception for a specified resource with a
|
5092
5142
|
# specified Config rule.
|
5093
5143
|
#
|
5094
|
-
# <note markdown="1">
|
5144
|
+
# <note markdown="1"> **Exceptions block auto remediation**
|
5145
|
+
#
|
5146
|
+
# Config generates a remediation exception when a problem occurs running
|
5095
5147
|
# a remediation action for a specified resource. Remediation exceptions
|
5096
5148
|
# blocks auto-remediation until the exception is cleared.
|
5097
5149
|
#
|
5098
5150
|
# </note>
|
5099
5151
|
#
|
5100
|
-
# <note markdown="1">
|
5152
|
+
# <note markdown="1"> **Manual remediation is recommended when placing an exception**
|
5153
|
+
#
|
5154
|
+
# When placing an exception on an Amazon Web Services resource, it is
|
5101
5155
|
# recommended that remediation is set as manual remediation until the
|
5102
5156
|
# given Config rule for the specified resource evaluates the resource as
|
5103
5157
|
# `NON_COMPLIANT`. Once the resource has been evaluated as
|
@@ -5109,7 +5163,9 @@ module Aws::ConfigService
|
|
5109
5163
|
#
|
5110
5164
|
# </note>
|
5111
5165
|
#
|
5112
|
-
# <note markdown="1">
|
5166
|
+
# <note markdown="1"> **Exceptions can only be performed on non-compliant resources**
|
5167
|
+
#
|
5168
|
+
# Placing an exception can only be performed on resources that are
|
5113
5169
|
# `NON_COMPLIANT`. If you use this API for `COMPLIANT` resources or
|
5114
5170
|
# resources that are `NOT_APPLICABLE`, a remediation exception will not
|
5115
5171
|
# be generated. For more information on the conditions that initiate the
|
@@ -5118,9 +5174,28 @@ module Aws::ConfigService
|
|
5118
5174
|
#
|
5119
5175
|
# </note>
|
5120
5176
|
#
|
5177
|
+
# <note markdown="1"> **Auto remediation can be initiated even for compliant resources**
|
5178
|
+
#
|
5179
|
+
# If you enable auto remediation for a specific Config rule using the
|
5180
|
+
# [PutRemediationConfigurations][2] API or the Config console, it
|
5181
|
+
# initiates the remediation process for all non-compliant resources for
|
5182
|
+
# that specific rule. The auto remediation process relies on the
|
5183
|
+
# compliance data snapshot which is captured on a periodic basis. Any
|
5184
|
+
# non-compliant resource that is updated between the snapshot schedule
|
5185
|
+
# will continue to be remediated based on the last known compliance data
|
5186
|
+
# snapshot.
|
5187
|
+
#
|
5188
|
+
# This means that in some cases auto remediation can be initiated even
|
5189
|
+
# for compliant resources, since the bootstrap processor uses a database
|
5190
|
+
# that can have stale evaluation results based on the last known
|
5191
|
+
# compliance data snapshot.
|
5192
|
+
#
|
5193
|
+
# </note>
|
5194
|
+
#
|
5121
5195
|
#
|
5122
5196
|
#
|
5123
5197
|
# [1]: https://docs.aws.amazon.com/config/latest/developerguide/config-concepts.html#aws-config-rules
|
5198
|
+
# [2]: https://docs.aws.amazon.com/config/latest/APIReference/emAPI_PutRemediationConfigurations.html
|
5124
5199
|
#
|
5125
5200
|
# @option params [required, String] :config_rule_name
|
5126
5201
|
# The name of the Config rule for which you want to create remediation
|
@@ -5822,7 +5897,7 @@ module Aws::ConfigService
|
|
5822
5897
|
params: params,
|
5823
5898
|
config: config)
|
5824
5899
|
context[:gem_name] = 'aws-sdk-configservice'
|
5825
|
-
context[:gem_version] = '1.
|
5900
|
+
context[:gem_version] = '1.107.0'
|
5826
5901
|
Seahorse::Client::Request.new(handlers, context)
|
5827
5902
|
end
|
5828
5903
|
|
@@ -520,6 +520,20 @@ module Aws::ConfigService
|
|
520
520
|
#
|
521
521
|
# @!attribute [rw] configuration_item_delivery_time
|
522
522
|
# The time when configuration changes for the resource were delivered.
|
523
|
+
#
|
524
|
+
# <note markdown="1"> This field is optional and is not guaranteed to be present in a
|
525
|
+
# configuration item (CI). If you are using daily recording, this
|
526
|
+
# field will be populated. However, if you are using continuous
|
527
|
+
# recording, this field will be omitted since the delivery time is
|
528
|
+
# instantaneous as the CI is available right away. For more
|
529
|
+
# information on daily recording and continuous recording, see
|
530
|
+
# [Recording Frequency][1] in the *Config Developer Guide*.
|
531
|
+
#
|
532
|
+
# </note>
|
533
|
+
#
|
534
|
+
#
|
535
|
+
#
|
536
|
+
# [1]: https://docs.aws.amazon.com/config/latest/developerguide/select-resources.html#select-resources-recording-frequency
|
523
537
|
# @return [Time]
|
524
538
|
#
|
525
539
|
# @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/BaseConfigurationItem AWS API Documentation
|
@@ -1380,6 +1394,20 @@ module Aws::ConfigService
|
|
1380
1394
|
#
|
1381
1395
|
# @!attribute [rw] configuration_item_delivery_time
|
1382
1396
|
# The time when configuration changes for the resource were delivered.
|
1397
|
+
#
|
1398
|
+
# <note markdown="1"> This field is optional and is not guaranteed to be present in a
|
1399
|
+
# configuration item (CI). If you are using daily recording, this
|
1400
|
+
# field will be populated. However, if you are using continuous
|
1401
|
+
# recording, this field will be omitted since the delivery time is
|
1402
|
+
# instantaneous as the CI is available right away. For more
|
1403
|
+
# information on daily recording and continuous recording, see
|
1404
|
+
# [Recording Frequency][1] in the *Config Developer Guide*.
|
1405
|
+
#
|
1406
|
+
# </note>
|
1407
|
+
#
|
1408
|
+
#
|
1409
|
+
#
|
1410
|
+
# [1]: https://docs.aws.amazon.com/config/latest/developerguide/select-resources.html#select-resources-recording-frequency
|
1383
1411
|
# @return [Time]
|
1384
1412
|
#
|
1385
1413
|
# @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/ConfigurationItem AWS API Documentation
|
@@ -2604,7 +2632,7 @@ module Aws::ConfigService
|
|
2604
2632
|
# The number of rule evaluation results that you want returned.
|
2605
2633
|
#
|
2606
2634
|
# This parameter is required if the rule limit for your account is
|
2607
|
-
# more than the default of
|
2635
|
+
# more than the default of 1000 rules.
|
2608
2636
|
#
|
2609
2637
|
# For information about requesting a rule limit increase, see [Config
|
2610
2638
|
# Limits][1] in the *Amazon Web Services General Reference Guide*.
|
@@ -3698,6 +3726,8 @@ module Aws::ConfigService
|
|
3698
3726
|
#
|
3699
3727
|
# * Asia Pacific (Melbourne)
|
3700
3728
|
#
|
3729
|
+
# * Canada West (Calgary)
|
3730
|
+
#
|
3701
3731
|
# * Europe (Spain)
|
3702
3732
|
#
|
3703
3733
|
# * Europe (Zurich)
|
@@ -5311,7 +5341,7 @@ module Aws::ConfigService
|
|
5311
5341
|
class MaxActiveResourcesExceededException < Aws::EmptyStructure; end
|
5312
5342
|
|
5313
5343
|
# Failed to add the Config rule because the account already contains the
|
5314
|
-
# maximum number of
|
5344
|
+
# maximum number of 1000 rules. Consider deleting any deactivated rules
|
5315
5345
|
# before you add new rules.
|
5316
5346
|
#
|
5317
5347
|
# @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/MaxNumberOfConfigRulesExceededException AWS API Documentation
|
@@ -7096,6 +7126,8 @@ module Aws::ConfigService
|
|
7096
7126
|
#
|
7097
7127
|
# * Asia Pacific (Melbourne)
|
7098
7128
|
#
|
7129
|
+
# * Canada West (Calgary)
|
7130
|
+
#
|
7099
7131
|
# * Europe (Spain)
|
7100
7132
|
#
|
7101
7133
|
# * Europe (Zurich)
|
@@ -7108,9 +7140,9 @@ module Aws::ConfigService
|
|
7108
7140
|
#
|
7109
7141
|
# The `AWS::RDS::GlobalCluster` resource type will be recorded in all
|
7110
7142
|
# supported Config Regions where the configuration recorder is
|
7111
|
-
# enabled, even if `includeGlobalResourceTypes` is
|
7112
|
-
#
|
7113
|
-
#
|
7143
|
+
# enabled, even if `includeGlobalResourceTypes` is set`false`. The
|
7144
|
+
# `includeGlobalResourceTypes` option is a bundle which only applies
|
7145
|
+
# to IAM users, groups, roles, and customer managed policies.
|
7114
7146
|
#
|
7115
7147
|
# If you do not want to record `AWS::RDS::GlobalCluster` in all
|
7116
7148
|
# enabled Regions, use one of the following recording strategies:
|
@@ -7125,7 +7157,31 @@ module Aws::ConfigService
|
|
7125
7157
|
# For more information, see [Selecting Which Resources are
|
7126
7158
|
# Recorded][1] in the *Config developer guide*.
|
7127
7159
|
#
|
7128
|
-
#
|
7160
|
+
# **includeGlobalResourceTypes and the exclusion recording strategy**
|
7161
|
+
#
|
7162
|
+
# The `includeGlobalResourceTypes` field has no impact on the
|
7163
|
+
# `EXCLUSION_BY_RESOURCE_TYPES` recording strategy. This means that
|
7164
|
+
# the global IAM resource types (IAM users, groups, roles, and
|
7165
|
+
# customer managed policies) will not be automatically added as
|
7166
|
+
# exclusions for `exclusionByResourceTypes` when
|
7167
|
+
# `includeGlobalResourceTypes` is set to `false`.
|
7168
|
+
#
|
7169
|
+
# The `includeGlobalResourceTypes` field should only be used to
|
7170
|
+
# modify
|
7171
|
+
# the `AllSupported` field, as the default for the `AllSupported`
|
7172
|
+
# field is to record configuration changes for all supported resource
|
7173
|
+
# types excluding the global IAM resource types. To include the global
|
7174
|
+
# IAM resource types when `AllSupported` is set to `true`, make sure
|
7175
|
+
# to set `includeGlobalResourceTypes` to `true`.
|
7176
|
+
#
|
7177
|
+
# To exclude the global IAM resource types for the
|
7178
|
+
# `EXCLUSION_BY_RESOURCE_TYPES` recording strategy, you need to
|
7179
|
+
# manually add them to the `resourceTypes` field of
|
7180
|
+
# `exclusionByResourceTypes`.
|
7181
|
+
#
|
7182
|
+
# <note markdown="1"> **Required and optional fields**
|
7183
|
+
#
|
7184
|
+
# Before you set this field to `true`, set the `allSupported` field of
|
7129
7185
|
# [RecordingGroup][2] to `true`. Optionally, you can set the `useOnly`
|
7130
7186
|
# field of [RecordingStrategy][3] to `ALL_SUPPORTED_RESOURCE_TYPES`.
|
7131
7187
|
#
|
@@ -7289,6 +7345,8 @@ module Aws::ConfigService
|
|
7289
7345
|
#
|
7290
7346
|
# * Asia Pacific (Melbourne)
|
7291
7347
|
#
|
7348
|
+
# * Canada West (Calgary)
|
7349
|
+
#
|
7292
7350
|
# * Europe (Spain)
|
7293
7351
|
#
|
7294
7352
|
# * Europe (Zurich)
|
@@ -7495,6 +7553,8 @@ module Aws::ConfigService
|
|
7495
7553
|
#
|
7496
7554
|
# * Asia Pacific (Melbourne)
|
7497
7555
|
#
|
7556
|
+
# * Canada West (Calgary)
|
7557
|
+
#
|
7498
7558
|
# * Europe (Spain)
|
7499
7559
|
#
|
7500
7560
|
# * Europe (Zurich)
|
@@ -7932,7 +7992,10 @@ module Aws::ConfigService
|
|
7932
7992
|
#
|
7933
7993
|
# @!attribute [rw] evaluation_mode
|
7934
7994
|
# Filters all resource evaluations results based on an evaluation
|
7935
|
-
# mode.
|
7995
|
+
# mode.
|
7996
|
+
#
|
7997
|
+
# Currently, `DECTECTIVE` is not supported as a valid value. Ignore
|
7998
|
+
# other documentation stating otherwise.
|
7936
7999
|
# @return [String]
|
7937
8000
|
#
|
7938
8001
|
# @!attribute [rw] time_window
|
@@ -8775,8 +8838,7 @@ module Aws::ConfigService
|
|
8775
8838
|
# The name or Amazon Resource Name (ARN) of the SSM document to use to
|
8776
8839
|
# create a conformance pack. If you use the document name, Config
|
8777
8840
|
# checks only your account and Amazon Web Services Region for the SSM
|
8778
|
-
# document.
|
8779
|
-
# account, you must provide the ARN.
|
8841
|
+
# document.
|
8780
8842
|
# @return [String]
|
8781
8843
|
#
|
8782
8844
|
# @!attribute [rw] document_version
|
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.
|
4
|
+
version: 1.107.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: 2024-
|
11
|
+
date: 2024-04-25 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.193.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.193.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|