aws-sdk-configservice 1.102.0 → 1.104.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-configservice/client.rb +29 -29
- data/lib/aws-sdk-configservice/plugins/endpoints.rb +3 -2
- data/lib/aws-sdk-configservice/types.rb +22 -12
- data/lib/aws-sdk-configservice.rb +1 -1
- metadata +2 -2
@@ -25,16 +25,17 @@ module Aws::ConfigService
|
|
25
25
|
# @api private
|
26
26
|
class Handler < Seahorse::Client::Handler
|
27
27
|
def call(context)
|
28
|
-
# If endpoint was discovered, do not resolve or apply the endpoint.
|
29
28
|
unless context[:discovered_endpoint]
|
30
29
|
params = parameters_for_operation(context)
|
31
30
|
endpoint = context.config.endpoint_provider.resolve_endpoint(params)
|
32
31
|
|
33
32
|
context.http_request.endpoint = endpoint.url
|
34
33
|
apply_endpoint_headers(context, endpoint.headers)
|
34
|
+
|
35
|
+
context[:endpoint_params] = params
|
36
|
+
context[:endpoint_properties] = endpoint.properties
|
35
37
|
end
|
36
38
|
|
37
|
-
context[:endpoint_params] = params
|
38
39
|
context[:auth_scheme] =
|
39
40
|
Aws::Endpoints.resolve_auth_scheme(context, endpoint)
|
40
41
|
|
@@ -1497,8 +1497,10 @@ module Aws::ConfigService
|
|
1497
1497
|
# * Continuous recording allows you to record configuration changes
|
1498
1498
|
# continuously whenever a change occurs.
|
1499
1499
|
#
|
1500
|
-
# * Daily recording allows you
|
1501
|
-
#
|
1500
|
+
# * Daily recording allows you to receive a configuration item (CI)
|
1501
|
+
# representing the most recent state of your resources over the last
|
1502
|
+
# 24-hour period, only if it’s different from the previous CI
|
1503
|
+
# recorded.
|
1502
1504
|
#
|
1503
1505
|
# <note markdown="1"> Firewall Manager depends on continuous recording to monitor your
|
1504
1506
|
# resources. If you are using Firewall Manager, it is recommended that
|
@@ -7323,8 +7325,10 @@ module Aws::ConfigService
|
|
7323
7325
|
# * Continuous recording allows you to record configuration changes
|
7324
7326
|
# continuously whenever a change occurs.
|
7325
7327
|
#
|
7326
|
-
# * Daily recording allows you
|
7327
|
-
#
|
7328
|
+
# * Daily recording allows you to receive a configuration item (CI)
|
7329
|
+
# representing the most recent state of your resources over the last
|
7330
|
+
# 24-hour period, only if it’s different from the previous CI
|
7331
|
+
# recorded.
|
7328
7332
|
#
|
7329
7333
|
# <note markdown="1"> Firewall Manager depends on continuous recording to monitor your
|
7330
7334
|
# resources. If you are using Firewall Manager, it is recommended that
|
@@ -7394,8 +7398,10 @@ module Aws::ConfigService
|
|
7394
7398
|
# * Continuous recording allows you to record configuration changes
|
7395
7399
|
# continuously whenever a change occurs.
|
7396
7400
|
#
|
7397
|
-
# * Daily recording allows you
|
7398
|
-
#
|
7401
|
+
# * Daily recording allows you to receive a configuration item (CI)
|
7402
|
+
# representing the most recent state of your resources over the last
|
7403
|
+
# 24-hour period, only if it’s different from the previous CI
|
7404
|
+
# recorded.
|
7399
7405
|
#
|
7400
7406
|
# <note markdown="1"> Firewall Manager depends on continuous recording to monitor your
|
7401
7407
|
# resources. If you are using Firewall Manager, it is recommended that
|
@@ -7597,12 +7603,16 @@ module Aws::ConfigService
|
|
7597
7603
|
# @return [Integer]
|
7598
7604
|
#
|
7599
7605
|
# @!attribute [rw] retry_attempt_seconds
|
7600
|
-
#
|
7601
|
-
#
|
7602
|
-
#
|
7603
|
-
#
|
7604
|
-
#
|
7605
|
-
#
|
7606
|
+
# Time window to determine whether or not to add a remediation
|
7607
|
+
# exception to prevent infinite remediation attempts. If
|
7608
|
+
# `MaximumAutomaticAttempts` remediation attempts have been made under
|
7609
|
+
# `RetryAttemptSeconds`, a remediation exception will be added to the
|
7610
|
+
# resource. If you do not select a number, the default is 60 seconds.
|
7611
|
+
#
|
7612
|
+
# For example, if you specify `RetryAttemptSeconds` as 50 seconds and
|
7613
|
+
# `MaximumAutomaticAttempts` as 5, Config will run auto-remediations 5
|
7614
|
+
# times within 50 seconds before adding a remediation exception to the
|
7615
|
+
# resource.
|
7606
7616
|
# @return [Integer]
|
7607
7617
|
#
|
7608
7618
|
# @!attribute [rw] arn
|
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.104.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: 2024-01-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|