aws-sdk-configservice 1.87.0 → 1.89.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 +205 -104
- data/lib/aws-sdk-configservice/endpoint_parameters.rb +0 -3
- data/lib/aws-sdk-configservice/endpoint_provider.rb +29 -26
- data/lib/aws-sdk-configservice/types.rb +97 -62
- data/lib/aws-sdk-configservice.rb +1 -1
- metadata +2 -2
@@ -50,9 +50,6 @@ module Aws::ConfigService
|
|
50
50
|
|
51
51
|
def initialize(options = {})
|
52
52
|
self[:region] = options[:region]
|
53
|
-
if self[:region].nil?
|
54
|
-
raise ArgumentError, "Missing required EndpointParameter: :region"
|
55
|
-
end
|
56
53
|
self[:use_dual_stack] = options[:use_dual_stack]
|
57
54
|
self[:use_dual_stack] = false if self[:use_dual_stack].nil?
|
58
55
|
if self[:use_dual_stack].nil?
|
@@ -14,39 +14,42 @@ module Aws::ConfigService
|
|
14
14
|
use_dual_stack = parameters.use_dual_stack
|
15
15
|
use_fips = parameters.use_fips
|
16
16
|
endpoint = parameters.endpoint
|
17
|
-
if
|
18
|
-
if Aws::Endpoints::Matchers.
|
19
|
-
|
20
|
-
raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
|
21
|
-
end
|
22
|
-
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
23
|
-
raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
|
24
|
-
end
|
25
|
-
return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
|
17
|
+
if Aws::Endpoints::Matchers.set?(endpoint)
|
18
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
19
|
+
raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
|
26
20
|
end
|
27
|
-
if Aws::Endpoints::Matchers.boolean_equals?(
|
28
|
-
|
29
|
-
return Aws::Endpoints::Endpoint.new(url: "https://config-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
30
|
-
end
|
31
|
-
raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
|
21
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
22
|
+
raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
|
32
23
|
end
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
24
|
+
return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
|
25
|
+
end
|
26
|
+
if Aws::Endpoints::Matchers.set?(region)
|
27
|
+
if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
|
28
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
29
|
+
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
|
30
|
+
return Aws::Endpoints::Endpoint.new(url: "https://config-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
37
31
|
end
|
38
|
-
|
32
|
+
raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
|
39
33
|
end
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
34
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
35
|
+
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
|
36
|
+
if Aws::Endpoints::Matchers.string_equals?("aws-us-gov", Aws::Endpoints::Matchers.attr(partition_result, "name"))
|
37
|
+
return Aws::Endpoints::Endpoint.new(url: "https://config.#{region}.amazonaws.com", headers: {}, properties: {})
|
38
|
+
end
|
39
|
+
return Aws::Endpoints::Endpoint.new(url: "https://config-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
40
|
+
end
|
41
|
+
raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
|
42
|
+
end
|
43
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
44
|
+
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
|
45
|
+
return Aws::Endpoints::Endpoint.new(url: "https://config.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
46
|
+
end
|
47
|
+
raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
|
45
48
|
end
|
46
|
-
|
49
|
+
return Aws::Endpoints::Endpoint.new(url: "https://config.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
47
50
|
end
|
48
|
-
return Aws::Endpoints::Endpoint.new(url: "https://config.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
49
51
|
end
|
52
|
+
raise ArgumentError, "Invalid Configuration: Missing Region"
|
50
53
|
raise ArgumentError, 'No endpoint could be resolved'
|
51
54
|
|
52
55
|
end
|
@@ -815,21 +815,23 @@ module Aws::ConfigService
|
|
815
815
|
# Services resources. A rule can run when Config detects a configuration
|
816
816
|
# change to an Amazon Web Services resource or at a periodic frequency
|
817
817
|
# that you choose (for example, every 24 hours). There are two types of
|
818
|
-
# rules: Config Managed Rules and Config Custom Rules
|
819
|
-
#
|
820
|
-
#
|
821
|
-
#
|
822
|
-
#
|
823
|
-
#
|
824
|
-
#
|
825
|
-
#
|
826
|
-
#
|
827
|
-
#
|
828
|
-
#
|
818
|
+
# rules: *Config Managed Rules* and *Config Custom Rules*.
|
819
|
+
#
|
820
|
+
# Config Managed Rules are predefined, customizable rules created by
|
821
|
+
# Config. For a list of managed rules, see [List of Config Managed
|
822
|
+
# Rules][1].
|
823
|
+
#
|
824
|
+
# Config Custom Rules are rules that you create from scratch. There are
|
825
|
+
# two ways to create Config custom rules: with Lambda functions ([
|
826
|
+
# Lambda Developer Guide][2]) and with Guard ([Guard GitHub
|
827
|
+
# Repository][3]), a policy-as-code language. Config custom rules
|
828
|
+
# created with Lambda are called *Config Custom Lambda Rules* and Config
|
829
|
+
# custom rules created with Guard are called *Config Custom Policy
|
830
|
+
# Rules*.
|
829
831
|
#
|
830
832
|
# For more information about developing and using Config rules, see
|
831
|
-
# [Evaluating
|
832
|
-
#
|
833
|
+
# [Evaluating Resource with Config Rules][4] in the *Config Developer
|
834
|
+
# Guide*.
|
833
835
|
#
|
834
836
|
# <note markdown="1"> You can use the Amazon Web Services CLI and Amazon Web Services SDKs
|
835
837
|
# if you want to create a rule that triggers evaluations for your
|
@@ -841,8 +843,9 @@ module Aws::ConfigService
|
|
841
843
|
#
|
842
844
|
#
|
843
845
|
# [1]: https://docs.aws.amazon.com/config/latest/developerguide/managed-rules-by-aws-config.html
|
844
|
-
# [2]: https://
|
845
|
-
# [3]: https://
|
846
|
+
# [2]: https://docs.aws.amazon.com/config/latest/developerguide/gettingstarted-concepts.html#gettingstarted-concepts-function
|
847
|
+
# [3]: https://github.com/aws-cloudformation/cloudformation-guard
|
848
|
+
# [4]: https://docs.aws.amazon.com/config/latest/developerguide/evaluate-config.html
|
846
849
|
#
|
847
850
|
# @!attribute [rw] config_rule_name
|
848
851
|
# The name that you assign to the Config rule. The name is required if
|
@@ -1427,6 +1430,11 @@ module Aws::ConfigService
|
|
1427
1430
|
|
1428
1431
|
# The current status of the configuration recorder.
|
1429
1432
|
#
|
1433
|
+
# <note markdown="1"> For a detailed status of recording events over time, add your Config
|
1434
|
+
# events to CloudWatch metrics and use CloudWatch metrics.
|
1435
|
+
#
|
1436
|
+
# </note>
|
1437
|
+
#
|
1430
1438
|
# @!attribute [rw] name
|
1431
1439
|
# The name of the configuration recorder.
|
1432
1440
|
# @return [String]
|
@@ -1444,19 +1452,20 @@ module Aws::ConfigService
|
|
1444
1452
|
# @return [Boolean]
|
1445
1453
|
#
|
1446
1454
|
# @!attribute [rw] last_status
|
1447
|
-
# The
|
1455
|
+
# The status of the latest recording event processed by the recorder.
|
1448
1456
|
# @return [String]
|
1449
1457
|
#
|
1450
1458
|
# @!attribute [rw] last_error_code
|
1451
|
-
# The error code
|
1459
|
+
# The latest error code from when the recorder last failed.
|
1452
1460
|
# @return [String]
|
1453
1461
|
#
|
1454
1462
|
# @!attribute [rw] last_error_message
|
1455
|
-
# The message
|
1463
|
+
# The latest error message from when the recorder last failed.
|
1456
1464
|
# @return [String]
|
1457
1465
|
#
|
1458
1466
|
# @!attribute [rw] last_status_change_time
|
1459
|
-
# The time
|
1467
|
+
# The time of the latest change in status of an recording event
|
1468
|
+
# processed by the recorder.
|
1460
1469
|
# @return [Time]
|
1461
1470
|
#
|
1462
1471
|
# @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/ConfigurationRecorderStatus AWS API Documentation
|
@@ -1556,8 +1565,7 @@ module Aws::ConfigService
|
|
1556
1565
|
# @return [String]
|
1557
1566
|
#
|
1558
1567
|
# @!attribute [rw] conformance_pack_compliance_status
|
1559
|
-
# The status of the conformance pack.
|
1560
|
-
# `COMPLIANT`, `NON_COMPLIANT` and `INSUFFICIENT_DATA`.
|
1568
|
+
# The status of the conformance pack.
|
1561
1569
|
# @return [String]
|
1562
1570
|
#
|
1563
1571
|
# @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/ConformancePackComplianceSummary AWS API Documentation
|
@@ -1747,9 +1755,6 @@ module Aws::ConfigService
|
|
1747
1755
|
#
|
1748
1756
|
# @!attribute [rw] compliance_type
|
1749
1757
|
# Compliance of the Config rule.
|
1750
|
-
#
|
1751
|
-
# The allowed values are `COMPLIANT`, `NON_COMPLIANT`, and
|
1752
|
-
# `INSUFFICIENT_DATA`.
|
1753
1758
|
# @return [String]
|
1754
1759
|
#
|
1755
1760
|
# @!attribute [rw] controls
|
@@ -1835,7 +1840,7 @@ module Aws::ConfigService
|
|
1835
1840
|
include Aws::Structure
|
1836
1841
|
end
|
1837
1842
|
|
1838
|
-
# You have specified a template that is
|
1843
|
+
# You have specified a template that is not valid or supported.
|
1839
1844
|
#
|
1840
1845
|
# @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/ConformancePackTemplateValidationException AWS API Documentation
|
1841
1846
|
#
|
@@ -2394,8 +2399,6 @@ module Aws::ConfigService
|
|
2394
2399
|
#
|
2395
2400
|
# @!attribute [rw] compliance_types
|
2396
2401
|
# Filters the results by compliance.
|
2397
|
-
#
|
2398
|
-
# The allowed values are `COMPLIANT` and `NON_COMPLIANT`.
|
2399
2402
|
# @return [Array<String>]
|
2400
2403
|
#
|
2401
2404
|
# @!attribute [rw] next_token
|
@@ -2447,9 +2450,6 @@ module Aws::ConfigService
|
|
2447
2450
|
#
|
2448
2451
|
# @!attribute [rw] compliance_types
|
2449
2452
|
# Filters the results by compliance.
|
2450
|
-
#
|
2451
|
-
# The allowed values are `COMPLIANT`, `NON_COMPLIANT`, and
|
2452
|
-
# `INSUFFICIENT_DATA`.
|
2453
2453
|
# @return [Array<String>]
|
2454
2454
|
#
|
2455
2455
|
# @!attribute [rw] limit
|
@@ -2549,7 +2549,12 @@ module Aws::ConfigService
|
|
2549
2549
|
|
2550
2550
|
# Returns a filtered list of Detective or Proactive Config rules. By
|
2551
2551
|
# default, if the filter is not defined, this API returns an unfiltered
|
2552
|
-
# list.
|
2552
|
+
# list. For more information on Detective or Proactive Config rules, see
|
2553
|
+
# [ **Evaluation Mode** ][1] in the Config Developer Guide.
|
2554
|
+
#
|
2555
|
+
#
|
2556
|
+
#
|
2557
|
+
# [1]: https://docs.aws.amazon.com/config/latest/developerguide/evaluate-config-rules.html
|
2553
2558
|
#
|
2554
2559
|
# @!attribute [rw] evaluation_mode
|
2555
2560
|
# The mode of an evaluation. The valid values are Detective or
|
@@ -2575,8 +2580,14 @@ module Aws::ConfigService
|
|
2575
2580
|
# @return [String]
|
2576
2581
|
#
|
2577
2582
|
# @!attribute [rw] filters
|
2578
|
-
# Returns a list of
|
2579
|
-
# this API returns an unfiltered list.
|
2583
|
+
# Returns a list of Detective or Proactive Config rules. By default,
|
2584
|
+
# this API returns an unfiltered list. For more information on
|
2585
|
+
# Detective or Proactive Config rules, see [ **Evaluation Mode** ][1]
|
2586
|
+
# in the Config Developer Guide.
|
2587
|
+
#
|
2588
|
+
#
|
2589
|
+
#
|
2590
|
+
# [1]: https://docs.aws.amazon.com/config/latest/developerguide/evaluate-config-rules.html
|
2580
2591
|
# @return [Types::DescribeConfigRulesFilters]
|
2581
2592
|
#
|
2582
2593
|
# @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DescribeConfigRulesRequest AWS API Documentation
|
@@ -3980,8 +3991,10 @@ module Aws::ConfigService
|
|
3980
3991
|
# @!attribute [rw] compliance_types
|
3981
3992
|
# Filters the results by compliance.
|
3982
3993
|
#
|
3983
|
-
#
|
3984
|
-
#
|
3994
|
+
# `INSUFFICIENT_DATA` is a valid `ComplianceType` that is returned
|
3995
|
+
# when an Config rule cannot be evaluated. However,
|
3996
|
+
# `INSUFFICIENT_DATA` cannot be used as a `ComplianceType` for
|
3997
|
+
# filtering results.
|
3985
3998
|
# @return [Array<String>]
|
3986
3999
|
#
|
3987
4000
|
# @!attribute [rw] limit
|
@@ -4038,8 +4051,10 @@ module Aws::ConfigService
|
|
4038
4051
|
# @!attribute [rw] compliance_types
|
4039
4052
|
# Filters the results by compliance.
|
4040
4053
|
#
|
4041
|
-
#
|
4042
|
-
#
|
4054
|
+
# `INSUFFICIENT_DATA` is a valid `ComplianceType` that is returned
|
4055
|
+
# when an Config rule cannot be evaluated. However,
|
4056
|
+
# `INSUFFICIENT_DATA` cannot be used as a `ComplianceType` for
|
4057
|
+
# filtering results.
|
4043
4058
|
# @return [Array<String>]
|
4044
4059
|
#
|
4045
4060
|
# @!attribute [rw] next_token
|
@@ -4683,7 +4698,7 @@ module Aws::ConfigService
|
|
4683
4698
|
#
|
4684
4699
|
class InvalidConfigurationRecorderNameException < Aws::EmptyStructure; end
|
4685
4700
|
|
4686
|
-
# The specified delivery channel name is
|
4701
|
+
# The specified delivery channel name is not valid.
|
4687
4702
|
#
|
4688
4703
|
# @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/InvalidDeliveryChannelNameException AWS API Documentation
|
4689
4704
|
#
|
@@ -4701,7 +4716,7 @@ module Aws::ConfigService
|
|
4701
4716
|
#
|
4702
4717
|
class InvalidLimitException < Aws::EmptyStructure; end
|
4703
4718
|
|
4704
|
-
# The specified next token is
|
4719
|
+
# The specified next token is not valid. Specify the `nextToken` string
|
4705
4720
|
# that was returned in the previous response to get the next page of
|
4706
4721
|
# results.
|
4707
4722
|
#
|
@@ -4709,22 +4724,22 @@ module Aws::ConfigService
|
|
4709
4724
|
#
|
4710
4725
|
class InvalidNextTokenException < Aws::EmptyStructure; end
|
4711
4726
|
|
4712
|
-
# One or more of the specified parameters are
|
4713
|
-
# parameters are valid and try again.
|
4727
|
+
# One or more of the specified parameters are not valid. Verify that
|
4728
|
+
# your parameters are valid and try again.
|
4714
4729
|
#
|
4715
4730
|
# @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/InvalidParameterValueException AWS API Documentation
|
4716
4731
|
#
|
4717
4732
|
class InvalidParameterValueException < Aws::EmptyStructure; end
|
4718
4733
|
|
4719
4734
|
# Config throws an exception if the recording group does not contain a
|
4720
|
-
# valid list of resource types.
|
4721
|
-
# formatted.
|
4735
|
+
# valid list of resource types. Values that are not valid might also be
|
4736
|
+
# incorrectly formatted.
|
4722
4737
|
#
|
4723
4738
|
# @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/InvalidRecordingGroupException AWS API Documentation
|
4724
4739
|
#
|
4725
4740
|
class InvalidRecordingGroupException < Aws::EmptyStructure; end
|
4726
4741
|
|
4727
|
-
# The specified `ResultToken` is
|
4742
|
+
# The specified `ResultToken` is not valid.
|
4728
4743
|
#
|
4729
4744
|
# @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/InvalidResultTokenException AWS API Documentation
|
4730
4745
|
#
|
@@ -4736,13 +4751,13 @@ module Aws::ConfigService
|
|
4736
4751
|
#
|
4737
4752
|
class InvalidRoleException < Aws::EmptyStructure; end
|
4738
4753
|
|
4739
|
-
# The specified Amazon S3 key prefix is
|
4754
|
+
# The specified Amazon S3 key prefix is not valid.
|
4740
4755
|
#
|
4741
4756
|
# @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/InvalidS3KeyPrefixException AWS API Documentation
|
4742
4757
|
#
|
4743
4758
|
class InvalidS3KeyPrefixException < Aws::EmptyStructure; end
|
4744
4759
|
|
4745
|
-
# The specified Amazon KMS Key ARN is
|
4760
|
+
# The specified Amazon KMS Key ARN is not valid.
|
4746
4761
|
#
|
4747
4762
|
# @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/InvalidS3KmsKeyArnException AWS API Documentation
|
4748
4763
|
#
|
@@ -4754,7 +4769,7 @@ module Aws::ConfigService
|
|
4754
4769
|
#
|
4755
4770
|
class InvalidSNSTopicARNException < Aws::EmptyStructure; end
|
4756
4771
|
|
4757
|
-
# The specified time range is
|
4772
|
+
# The specified time range is not valid. The earlier time is not
|
4758
4773
|
# chronologically before the later time.
|
4759
4774
|
#
|
4760
4775
|
# @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/InvalidTimeRangeException AWS API Documentation
|
@@ -4871,8 +4886,8 @@ module Aws::ConfigService
|
|
4871
4886
|
#
|
4872
4887
|
# @!attribute [rw] next_token
|
4873
4888
|
# The `nextToken` string in a prior request that you can use to get
|
4874
|
-
# the paginated response for next set of conformance pack
|
4875
|
-
# scores.
|
4889
|
+
# the paginated response for the next set of conformance pack
|
4890
|
+
# compliance scores.
|
4876
4891
|
# @return [String]
|
4877
4892
|
#
|
4878
4893
|
# @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/ListConformancePackComplianceScoresRequest AWS API Documentation
|
@@ -4912,7 +4927,8 @@ module Aws::ConfigService
|
|
4912
4927
|
# @!attribute [rw] resource_ids
|
4913
4928
|
# The IDs of only those resources that you want Config to list in the
|
4914
4929
|
# response. If you do not specify this parameter, Config lists all
|
4915
|
-
# resources of the specified type that it has discovered.
|
4930
|
+
# resources of the specified type that it has discovered. You can list
|
4931
|
+
# a minimum of 1 resourceID and a maximum of 20 resourceIds.
|
4916
4932
|
# @return [Array<String>]
|
4917
4933
|
#
|
4918
4934
|
# @!attribute [rw] resource_name
|
@@ -5285,8 +5301,8 @@ module Aws::ConfigService
|
|
5285
5301
|
#
|
5286
5302
|
class NoSuchBucketException < Aws::EmptyStructure; end
|
5287
5303
|
|
5288
|
-
# The Config rule in the request is
|
5289
|
-
# Config
|
5304
|
+
# The Config rule in the request is not valid. Verify that the rule is
|
5305
|
+
# an Config Process Check rule, that the rule name is correct, and that
|
5290
5306
|
# valid Amazon Resouce Names (ARNs) are used before trying again.
|
5291
5307
|
#
|
5292
5308
|
# @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/NoSuchConfigRuleException AWS API Documentation
|
@@ -5323,10 +5339,10 @@ module Aws::ConfigService
|
|
5323
5339
|
#
|
5324
5340
|
class NoSuchDeliveryChannelException < Aws::EmptyStructure; end
|
5325
5341
|
|
5326
|
-
# The Config rule in the request is
|
5327
|
-
# organization Config
|
5328
|
-
# and that valid Amazon Resouce Names (ARNs) are used before
|
5329
|
-
# again.
|
5342
|
+
# The Config rule in the request is not valid. Verify that the rule is
|
5343
|
+
# an organization Config Process Check rule, that the rule name is
|
5344
|
+
# correct, and that valid Amazon Resouce Names (ARNs) are used before
|
5345
|
+
# trying again.
|
5330
5346
|
#
|
5331
5347
|
# @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/NoSuchOrganizationConfigRuleException AWS API Documentation
|
5332
5348
|
#
|
@@ -5760,7 +5776,7 @@ module Aws::ConfigService
|
|
5760
5776
|
include Aws::Structure
|
5761
5777
|
end
|
5762
5778
|
|
5763
|
-
# You have specified a template that is
|
5779
|
+
# You have specified a template that is not valid or supported.
|
5764
5780
|
#
|
5765
5781
|
# @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/OrganizationConformancePackTemplateValidationException AWS API Documentation
|
5766
5782
|
#
|
@@ -6891,7 +6907,8 @@ module Aws::ConfigService
|
|
6891
6907
|
# To record all configuration changes, you must set the `allSupported`
|
6892
6908
|
# option to `true`.
|
6893
6909
|
#
|
6894
|
-
# If you set
|
6910
|
+
# If you set the `AllSupported` option to false and populate the
|
6911
|
+
# `ResourceTypes` option with values, when Config adds support for a
|
6895
6912
|
# new type of resource, it will not record resources of that type
|
6896
6913
|
# unless you manually add that type to your recording group.
|
6897
6914
|
#
|
@@ -6956,7 +6973,7 @@ module Aws::ConfigService
|
|
6956
6973
|
# @return [String]
|
6957
6974
|
#
|
6958
6975
|
# @!attribute [rw] target_id
|
6959
|
-
# Target ID is the name of the
|
6976
|
+
# Target ID is the name of the SSM document.
|
6960
6977
|
# @return [String]
|
6961
6978
|
#
|
6962
6979
|
# @!attribute [rw] target_version
|
@@ -7261,6 +7278,24 @@ module Aws::ConfigService
|
|
7261
7278
|
#
|
7262
7279
|
# @!attribute [rw] resource_configuration_schema_type
|
7263
7280
|
# The schema type of the resource configuration.
|
7281
|
+
#
|
7282
|
+
# <note markdown="1"> You can find the [Resource type schema][1], or
|
7283
|
+
# `CFN_RESOURCE_SCHEMA`, in "*Amazon Web Services public
|
7284
|
+
# extensions*" within the CloudFormation registry or with the
|
7285
|
+
# following CLI commmand: `aws cloudformation describe-type
|
7286
|
+
# --type-name "AWS::S3::Bucket" --type RESOURCE`.
|
7287
|
+
#
|
7288
|
+
# For more information, see [Managing extensions through the
|
7289
|
+
# CloudFormation registry][2] and [Amazon Web Services resource and
|
7290
|
+
# property types reference][3] in the CloudFormation User Guide.
|
7291
|
+
#
|
7292
|
+
# </note>
|
7293
|
+
#
|
7294
|
+
#
|
7295
|
+
#
|
7296
|
+
# [1]: https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/resource-type-schema.html
|
7297
|
+
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/registry.html#registry-view
|
7298
|
+
# [3]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html
|
7264
7299
|
# @return [String]
|
7265
7300
|
#
|
7266
7301
|
# @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/ResourceDetails AWS API Documentation
|
@@ -7876,8 +7911,8 @@ module Aws::ConfigService
|
|
7876
7911
|
# @return [Types::EvaluationContext]
|
7877
7912
|
#
|
7878
7913
|
# @!attribute [rw] evaluation_mode
|
7879
|
-
# The mode of an evaluation. The valid
|
7880
|
-
# `
|
7914
|
+
# The mode of an evaluation. The valid values for this API are
|
7915
|
+
# `DETECTIVE` and `PROACTIVE`.
|
7881
7916
|
# @return [String]
|
7882
7917
|
#
|
7883
7918
|
# @!attribute [rw] evaluation_timeout
|
@@ -8220,7 +8255,7 @@ module Aws::ConfigService
|
|
8220
8255
|
include Aws::Structure
|
8221
8256
|
end
|
8222
8257
|
|
8223
|
-
# The requested action is
|
8258
|
+
# The requested action is not valid.
|
8224
8259
|
#
|
8225
8260
|
# For PutStoredQuery, you will see this exception if there are missing
|
8226
8261
|
# required fields or if the input value fails the validation, or if you
|
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.89.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: 2023-
|
11
|
+
date: 2023-04-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|