aws-sdk-configservice 1.7.0 → 1.8.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/lib/aws-sdk-configservice.rb +1 -1
- data/lib/aws-sdk-configservice/client.rb +659 -74
- data/lib/aws-sdk-configservice/client_api.rb +374 -0
- data/lib/aws-sdk-configservice/types.rb +1010 -69
- metadata +2 -2
@@ -8,6 +8,222 @@
|
|
8
8
|
module Aws::ConfigService
|
9
9
|
module Types
|
10
10
|
|
11
|
+
# A collection of accounts and regions.
|
12
|
+
#
|
13
|
+
# @note When making an API call, you may pass AccountAggregationSource
|
14
|
+
# data as a hash:
|
15
|
+
#
|
16
|
+
# {
|
17
|
+
# account_ids: ["AccountId"], # required
|
18
|
+
# all_aws_regions: false,
|
19
|
+
# aws_regions: ["String"],
|
20
|
+
# }
|
21
|
+
#
|
22
|
+
# @!attribute [rw] account_ids
|
23
|
+
# The 12-digit account ID of the account being aggregated.
|
24
|
+
# @return [Array<String>]
|
25
|
+
#
|
26
|
+
# @!attribute [rw] all_aws_regions
|
27
|
+
# If true, aggreagate existing AWS Config regions and future regions.
|
28
|
+
# @return [Boolean]
|
29
|
+
#
|
30
|
+
# @!attribute [rw] aws_regions
|
31
|
+
# The source regions being aggregated.
|
32
|
+
# @return [Array<String>]
|
33
|
+
#
|
34
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/AccountAggregationSource AWS API Documentation
|
35
|
+
#
|
36
|
+
class AccountAggregationSource < Struct.new(
|
37
|
+
:account_ids,
|
38
|
+
:all_aws_regions,
|
39
|
+
:aws_regions)
|
40
|
+
include Aws::Structure
|
41
|
+
end
|
42
|
+
|
43
|
+
# Indicates whether an AWS Config rule is compliant based on account ID,
|
44
|
+
# region, compliance, and rule name.
|
45
|
+
#
|
46
|
+
# A rule is compliant if all of the resources that the rule evaluated
|
47
|
+
# comply with it. It is noncompliant if any of these resources do not
|
48
|
+
# comply.
|
49
|
+
#
|
50
|
+
# @!attribute [rw] config_rule_name
|
51
|
+
# The name of the AWS Config rule.
|
52
|
+
# @return [String]
|
53
|
+
#
|
54
|
+
# @!attribute [rw] compliance
|
55
|
+
# Indicates whether an AWS resource or AWS Config rule is compliant
|
56
|
+
# and provides the number of contributors that affect the compliance.
|
57
|
+
# @return [Types::Compliance]
|
58
|
+
#
|
59
|
+
# @!attribute [rw] account_id
|
60
|
+
# The 12-digit account ID of the source account.
|
61
|
+
# @return [String]
|
62
|
+
#
|
63
|
+
# @!attribute [rw] aws_region
|
64
|
+
# The source region from where the data is aggregated.
|
65
|
+
# @return [String]
|
66
|
+
#
|
67
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/AggregateComplianceByConfigRule AWS API Documentation
|
68
|
+
#
|
69
|
+
class AggregateComplianceByConfigRule < Struct.new(
|
70
|
+
:config_rule_name,
|
71
|
+
:compliance,
|
72
|
+
:account_id,
|
73
|
+
:aws_region)
|
74
|
+
include Aws::Structure
|
75
|
+
end
|
76
|
+
|
77
|
+
# Returns the number of compliant and noncompliant rules for one or more
|
78
|
+
# accounts and regions in an aggregator.
|
79
|
+
#
|
80
|
+
# @!attribute [rw] group_name
|
81
|
+
# The 12-digit account ID or region based on the GroupByKey value.
|
82
|
+
# @return [String]
|
83
|
+
#
|
84
|
+
# @!attribute [rw] compliance_summary
|
85
|
+
# The number of compliant and noncompliant AWS Config rules.
|
86
|
+
# @return [Types::ComplianceSummary]
|
87
|
+
#
|
88
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/AggregateComplianceCount AWS API Documentation
|
89
|
+
#
|
90
|
+
class AggregateComplianceCount < Struct.new(
|
91
|
+
:group_name,
|
92
|
+
:compliance_summary)
|
93
|
+
include Aws::Structure
|
94
|
+
end
|
95
|
+
|
96
|
+
# The details of an AWS Config evaluation for an account ID and region
|
97
|
+
# in an aggregator. Provides the AWS resource that was evaluated, the
|
98
|
+
# compliance of the resource, related time stamps, and supplementary
|
99
|
+
# information.
|
100
|
+
#
|
101
|
+
# @!attribute [rw] evaluation_result_identifier
|
102
|
+
# Uniquely identifies the evaluation result.
|
103
|
+
# @return [Types::EvaluationResultIdentifier]
|
104
|
+
#
|
105
|
+
# @!attribute [rw] compliance_type
|
106
|
+
# The resource compliance status.
|
107
|
+
#
|
108
|
+
# For the `AggregationEvaluationResult` data type, AWS Config supports
|
109
|
+
# only the `COMPLIANT` and `NON_COMPLIANT`. AWS Config does not
|
110
|
+
# support the `NOT_APPLICABLE` and `INSUFFICIENT_DATA` value.
|
111
|
+
# @return [String]
|
112
|
+
#
|
113
|
+
# @!attribute [rw] result_recorded_time
|
114
|
+
# The time when AWS Config recorded the aggregate evaluation result.
|
115
|
+
# @return [Time]
|
116
|
+
#
|
117
|
+
# @!attribute [rw] config_rule_invoked_time
|
118
|
+
# The time when the AWS Config rule evaluated the AWS resource.
|
119
|
+
# @return [Time]
|
120
|
+
#
|
121
|
+
# @!attribute [rw] annotation
|
122
|
+
# Supplementary information about how the agrregate evaluation
|
123
|
+
# determined the compliance.
|
124
|
+
# @return [String]
|
125
|
+
#
|
126
|
+
# @!attribute [rw] account_id
|
127
|
+
# The 12-digit account ID of the source account.
|
128
|
+
# @return [String]
|
129
|
+
#
|
130
|
+
# @!attribute [rw] aws_region
|
131
|
+
# The source region from where the data is aggregated.
|
132
|
+
# @return [String]
|
133
|
+
#
|
134
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/AggregateEvaluationResult AWS API Documentation
|
135
|
+
#
|
136
|
+
class AggregateEvaluationResult < Struct.new(
|
137
|
+
:evaluation_result_identifier,
|
138
|
+
:compliance_type,
|
139
|
+
:result_recorded_time,
|
140
|
+
:config_rule_invoked_time,
|
141
|
+
:annotation,
|
142
|
+
:account_id,
|
143
|
+
:aws_region)
|
144
|
+
include Aws::Structure
|
145
|
+
end
|
146
|
+
|
147
|
+
# The current sync status between the source and the aggregator account.
|
148
|
+
#
|
149
|
+
# @!attribute [rw] source_id
|
150
|
+
# The source account ID or an organization.
|
151
|
+
# @return [String]
|
152
|
+
#
|
153
|
+
# @!attribute [rw] source_type
|
154
|
+
# The source account or an organization.
|
155
|
+
# @return [String]
|
156
|
+
#
|
157
|
+
# @!attribute [rw] aws_region
|
158
|
+
# The region authorized to collect aggregated data.
|
159
|
+
# @return [String]
|
160
|
+
#
|
161
|
+
# @!attribute [rw] last_update_status
|
162
|
+
# Filters the last updated status type.
|
163
|
+
#
|
164
|
+
# * Valid value FAILED indicates errors while moving data.
|
165
|
+
#
|
166
|
+
# * Valid value SUCCEEDED indicates the data was successfully moved.
|
167
|
+
#
|
168
|
+
# * Valid value OUTDATED indicates the data is not the most recent.
|
169
|
+
# @return [String]
|
170
|
+
#
|
171
|
+
# @!attribute [rw] last_update_time
|
172
|
+
# The time of the last update.
|
173
|
+
# @return [Time]
|
174
|
+
#
|
175
|
+
# @!attribute [rw] last_error_code
|
176
|
+
# The error code that AWS Config returned when the source account
|
177
|
+
# aggregation last failed.
|
178
|
+
# @return [String]
|
179
|
+
#
|
180
|
+
# @!attribute [rw] last_error_message
|
181
|
+
# The message indicating that the source account aggregation failed
|
182
|
+
# due to an error.
|
183
|
+
# @return [String]
|
184
|
+
#
|
185
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/AggregatedSourceStatus AWS API Documentation
|
186
|
+
#
|
187
|
+
class AggregatedSourceStatus < Struct.new(
|
188
|
+
:source_id,
|
189
|
+
:source_type,
|
190
|
+
:aws_region,
|
191
|
+
:last_update_status,
|
192
|
+
:last_update_time,
|
193
|
+
:last_error_code,
|
194
|
+
:last_error_message)
|
195
|
+
include Aws::Structure
|
196
|
+
end
|
197
|
+
|
198
|
+
# An object that represents the authorizations granted to aggregator
|
199
|
+
# accounts and regions.
|
200
|
+
#
|
201
|
+
# @!attribute [rw] aggregation_authorization_arn
|
202
|
+
# The Amazon Resource Name (ARN) of the aggregation object.
|
203
|
+
# @return [String]
|
204
|
+
#
|
205
|
+
# @!attribute [rw] authorized_account_id
|
206
|
+
# The 12-digit account ID of the account authorized to aggregate data.
|
207
|
+
# @return [String]
|
208
|
+
#
|
209
|
+
# @!attribute [rw] authorized_aws_region
|
210
|
+
# The region authorized to collect aggregated data.
|
211
|
+
# @return [String]
|
212
|
+
#
|
213
|
+
# @!attribute [rw] creation_time
|
214
|
+
# The time stamp when the aggregation authorization was created.
|
215
|
+
# @return [Time]
|
216
|
+
#
|
217
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/AggregationAuthorization AWS API Documentation
|
218
|
+
#
|
219
|
+
class AggregationAuthorization < Struct.new(
|
220
|
+
:aggregation_authorization_arn,
|
221
|
+
:authorized_account_id,
|
222
|
+
:authorized_aws_region,
|
223
|
+
:creation_time)
|
224
|
+
include Aws::Structure
|
225
|
+
end
|
226
|
+
|
11
227
|
# The detailed configuration of a specified resource.
|
12
228
|
#
|
13
229
|
# @!attribute [rw] version
|
@@ -143,15 +359,15 @@ module Aws::ConfigService
|
|
143
359
|
# Indicates whether an AWS resource or AWS Config rule is compliant.
|
144
360
|
#
|
145
361
|
# A resource is compliant if it complies with all of the AWS Config
|
146
|
-
# rules that evaluate it
|
147
|
-
# with one or more of these rules.
|
362
|
+
# rules that evaluate it. A resource is noncompliant if it does not
|
363
|
+
# comply with one or more of these rules.
|
148
364
|
#
|
149
365
|
# A rule is compliant if all of the resources that the rule evaluates
|
150
|
-
# comply with it
|
366
|
+
# comply with it. A rule is noncompliant if any of these resources do
|
151
367
|
# not comply.
|
152
368
|
#
|
153
369
|
# AWS Config returns the `INSUFFICIENT_DATA` value when no evaluation
|
154
|
-
# results are available for the AWS resource or Config rule.
|
370
|
+
# results are available for the AWS resource or AWS Config rule.
|
155
371
|
#
|
156
372
|
# For the `Compliance` data type, AWS Config supports only
|
157
373
|
# `COMPLIANT`, `NON_COMPLIANT`, and `INSUFFICIENT_DATA` values. AWS
|
@@ -173,7 +389,7 @@ module Aws::ConfigService
|
|
173
389
|
end
|
174
390
|
|
175
391
|
# Indicates whether an AWS Config rule is compliant. A rule is compliant
|
176
|
-
# if all of the resources that the rule evaluated comply with it
|
392
|
+
# if all of the resources that the rule evaluated comply with it. A rule
|
177
393
|
# is noncompliant if any of these resources do not comply.
|
178
394
|
#
|
179
395
|
# @!attribute [rw] config_rule_name
|
@@ -194,7 +410,7 @@ module Aws::ConfigService
|
|
194
410
|
|
195
411
|
# Indicates whether an AWS resource that is evaluated according to one
|
196
412
|
# or more AWS Config rules is compliant. A resource is compliant if it
|
197
|
-
# complies with all of the rules that evaluate it
|
413
|
+
# complies with all of the rules that evaluate it. A resource is
|
198
414
|
# noncompliant if it does not comply with one or more of these rules.
|
199
415
|
#
|
200
416
|
# @!attribute [rw] resource_type
|
@@ -266,7 +482,7 @@ module Aws::ConfigService
|
|
266
482
|
end
|
267
483
|
|
268
484
|
# The number of AWS resources of a specific type that are compliant or
|
269
|
-
# noncompliant, up to a maximum of 100 for each
|
485
|
+
# noncompliant, up to a maximum of 100 for each.
|
270
486
|
#
|
271
487
|
# @!attribute [rw] resource_type
|
272
488
|
# The type of AWS resource.
|
@@ -274,7 +490,7 @@ module Aws::ConfigService
|
|
274
490
|
#
|
275
491
|
# @!attribute [rw] compliance_summary
|
276
492
|
# The number of AWS resources that are compliant or noncompliant, up
|
277
|
-
# to a maximum of 100 for each
|
493
|
+
# to a maximum of 100 for each.
|
278
494
|
# @return [Types::ComplianceSummary]
|
279
495
|
#
|
280
496
|
# @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/ComplianceSummaryByResourceType AWS API Documentation
|
@@ -413,8 +629,8 @@ module Aws::ConfigService
|
|
413
629
|
# @return [Types::Source]
|
414
630
|
#
|
415
631
|
# @!attribute [rw] input_parameters
|
416
|
-
# A string in JSON format that is passed to the AWS Config rule
|
417
|
-
# function.
|
632
|
+
# A string, in JSON format, that is passed to the AWS Config rule
|
633
|
+
# Lambda function.
|
418
634
|
# @return [String]
|
419
635
|
#
|
420
636
|
# @!attribute [rw] maximum_execution_frequency
|
@@ -438,17 +654,17 @@ module Aws::ConfigService
|
|
438
654
|
# @!attribute [rw] config_rule_state
|
439
655
|
# Indicates whether the AWS Config rule is active or is currently
|
440
656
|
# being deleted by AWS Config. It can also indicate the evaluation
|
441
|
-
# status for the Config rule.
|
657
|
+
# status for the AWS Config rule.
|
442
658
|
#
|
443
659
|
# AWS Config sets the state of the rule to `EVALUATING` temporarily
|
444
660
|
# after you use the `StartConfigRulesEvaluation` request to evaluate
|
445
|
-
# your resources against the Config rule.
|
661
|
+
# your resources against the AWS Config rule.
|
446
662
|
#
|
447
663
|
# AWS Config sets the state of the rule to `DELETING_RESULTS`
|
448
664
|
# temporarily after you use the `DeleteEvaluationResults` request to
|
449
|
-
# delete the current evaluation results for the Config rule.
|
665
|
+
# delete the current evaluation results for the AWS Config rule.
|
450
666
|
#
|
451
|
-
# AWS Config sets the state of a rule to `DELETING`
|
667
|
+
# AWS Config temporarily sets the state of a rule to `DELETING` after
|
452
668
|
# you use the `DeleteConfigRule` request to delete the rule. After AWS
|
453
669
|
# Config deletes the rule, the rule and all of its evaluations are
|
454
670
|
# erased and are no longer available.
|
@@ -469,11 +685,80 @@ module Aws::ConfigService
|
|
469
685
|
include Aws::Structure
|
470
686
|
end
|
471
687
|
|
688
|
+
# Filters the compliance results based on account ID, region, compliance
|
689
|
+
# type, and rule name.
|
690
|
+
#
|
691
|
+
# @note When making an API call, you may pass ConfigRuleComplianceFilters
|
692
|
+
# data as a hash:
|
693
|
+
#
|
694
|
+
# {
|
695
|
+
# config_rule_name: "ConfigRuleName",
|
696
|
+
# compliance_type: "COMPLIANT", # accepts COMPLIANT, NON_COMPLIANT, NOT_APPLICABLE, INSUFFICIENT_DATA
|
697
|
+
# account_id: "AccountId",
|
698
|
+
# aws_region: "AwsRegion",
|
699
|
+
# }
|
700
|
+
#
|
701
|
+
# @!attribute [rw] config_rule_name
|
702
|
+
# The name of the AWS Config rule.
|
703
|
+
# @return [String]
|
704
|
+
#
|
705
|
+
# @!attribute [rw] compliance_type
|
706
|
+
# The rule compliance status.
|
707
|
+
#
|
708
|
+
# For the `ConfigRuleComplianceFilters` data type, AWS Config supports
|
709
|
+
# only `COMPLIANT` and `NON_COMPLIANT`. AWS Config does not support
|
710
|
+
# the `NOT_APPLICABLE` and the `INSUFFICIENT_DATA` values.
|
711
|
+
# @return [String]
|
712
|
+
#
|
713
|
+
# @!attribute [rw] account_id
|
714
|
+
# The 12-digit account ID of the source account.
|
715
|
+
# @return [String]
|
716
|
+
#
|
717
|
+
# @!attribute [rw] aws_region
|
718
|
+
# The source region where the data is aggregated.
|
719
|
+
# @return [String]
|
720
|
+
#
|
721
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/ConfigRuleComplianceFilters AWS API Documentation
|
722
|
+
#
|
723
|
+
class ConfigRuleComplianceFilters < Struct.new(
|
724
|
+
:config_rule_name,
|
725
|
+
:compliance_type,
|
726
|
+
:account_id,
|
727
|
+
:aws_region)
|
728
|
+
include Aws::Structure
|
729
|
+
end
|
730
|
+
|
731
|
+
# Filters the results based on the account IDs and regions.
|
732
|
+
#
|
733
|
+
# @note When making an API call, you may pass ConfigRuleComplianceSummaryFilters
|
734
|
+
# data as a hash:
|
735
|
+
#
|
736
|
+
# {
|
737
|
+
# account_id: "AccountId",
|
738
|
+
# aws_region: "AwsRegion",
|
739
|
+
# }
|
740
|
+
#
|
741
|
+
# @!attribute [rw] account_id
|
742
|
+
# The 12-digit account ID of the source account.
|
743
|
+
# @return [String]
|
744
|
+
#
|
745
|
+
# @!attribute [rw] aws_region
|
746
|
+
# The source region where the data is aggregated.
|
747
|
+
# @return [String]
|
748
|
+
#
|
749
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/ConfigRuleComplianceSummaryFilters AWS API Documentation
|
750
|
+
#
|
751
|
+
class ConfigRuleComplianceSummaryFilters < Struct.new(
|
752
|
+
:account_id,
|
753
|
+
:aws_region)
|
754
|
+
include Aws::Structure
|
755
|
+
end
|
756
|
+
|
472
757
|
# Status information for your AWS managed Config rules. The status
|
473
758
|
# includes information such as the last time the rule ran, the last time
|
474
759
|
# it failed, and the related error for the last failure.
|
475
760
|
#
|
476
|
-
# This action does not return status information about custom Config
|
761
|
+
# This action does not return status information about custom AWS Config
|
477
762
|
# rules.
|
478
763
|
#
|
479
764
|
# @!attribute [rw] config_rule_name
|
@@ -565,7 +850,7 @@ module Aws::ConfigService
|
|
565
850
|
# * The value for the `deliveryFrequency` parameter within the delivery
|
566
851
|
# channel configuration, which sets how often AWS Config delivers
|
567
852
|
# configuration snapshots. This value also sets how often AWS Config
|
568
|
-
# invokes evaluations for Config rules.
|
853
|
+
# invokes evaluations for AWS Config rules.
|
569
854
|
#
|
570
855
|
# * The value for the `MaximumExecutionFrequency` parameter, which sets
|
571
856
|
# the maximum frequency with which AWS Config invokes evaluations for
|
@@ -651,6 +936,45 @@ module Aws::ConfigService
|
|
651
936
|
include Aws::Structure
|
652
937
|
end
|
653
938
|
|
939
|
+
# The details about the configuration aggregator, including information
|
940
|
+
# about source accounts, regions, and metadata of the aggregator.
|
941
|
+
#
|
942
|
+
# @!attribute [rw] configuration_aggregator_name
|
943
|
+
# The name of the aggregator.
|
944
|
+
# @return [String]
|
945
|
+
#
|
946
|
+
# @!attribute [rw] configuration_aggregator_arn
|
947
|
+
# The Amazon Resource Name (ARN) of the aggregator.
|
948
|
+
# @return [String]
|
949
|
+
#
|
950
|
+
# @!attribute [rw] account_aggregation_sources
|
951
|
+
# Provides a list of source accounts and regions to be aggregated.
|
952
|
+
# @return [Array<Types::AccountAggregationSource>]
|
953
|
+
#
|
954
|
+
# @!attribute [rw] organization_aggregation_source
|
955
|
+
# Provides an organization and list of regions to be aggregated.
|
956
|
+
# @return [Types::OrganizationAggregationSource]
|
957
|
+
#
|
958
|
+
# @!attribute [rw] creation_time
|
959
|
+
# The time stamp when the configuration aggregator was created.
|
960
|
+
# @return [Time]
|
961
|
+
#
|
962
|
+
# @!attribute [rw] last_updated_time
|
963
|
+
# The time of the last update.
|
964
|
+
# @return [Time]
|
965
|
+
#
|
966
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/ConfigurationAggregator AWS API Documentation
|
967
|
+
#
|
968
|
+
class ConfigurationAggregator < Struct.new(
|
969
|
+
:configuration_aggregator_name,
|
970
|
+
:configuration_aggregator_arn,
|
971
|
+
:account_aggregation_sources,
|
972
|
+
:organization_aggregation_source,
|
973
|
+
:creation_time,
|
974
|
+
:last_updated_time)
|
975
|
+
include Aws::Structure
|
976
|
+
end
|
977
|
+
|
654
978
|
# A list that contains detailed configurations of a specified resource.
|
655
979
|
#
|
656
980
|
# @!attribute [rw] version
|
@@ -658,7 +982,7 @@ module Aws::ConfigService
|
|
658
982
|
# @return [String]
|
659
983
|
#
|
660
984
|
# @!attribute [rw] account_id
|
661
|
-
# The 12
|
985
|
+
# The 12-digit AWS account ID associated with the resource.
|
662
986
|
# @return [String]
|
663
987
|
#
|
664
988
|
# @!attribute [rw] configuration_item_capture_time
|
@@ -690,7 +1014,7 @@ module Aws::ConfigService
|
|
690
1014
|
# @return [String]
|
691
1015
|
#
|
692
1016
|
# @!attribute [rw] resource_id
|
693
|
-
# The ID of the resource (for example
|
1017
|
+
# The ID of the resource (for example, `sg-xxxxxx`).
|
694
1018
|
# @return [String]
|
695
1019
|
#
|
696
1020
|
# @!attribute [rw] resource_name
|
@@ -718,7 +1042,7 @@ module Aws::ConfigService
|
|
718
1042
|
#
|
719
1043
|
# A populated field indicates that the current configuration was
|
720
1044
|
# initiated by the events recorded in the CloudTrail log. For more
|
721
|
-
# information about CloudTrail, see [What
|
1045
|
+
# information about CloudTrail, see [What Is AWS CloudTrail][1].
|
722
1046
|
#
|
723
1047
|
# An empty field indicates that the current configuration was not
|
724
1048
|
# initiated by any event.
|
@@ -794,7 +1118,7 @@ module Aws::ConfigService
|
|
794
1118
|
# @return [String]
|
795
1119
|
#
|
796
1120
|
# @!attribute [rw] recording_group
|
797
|
-
# Specifies the types of AWS
|
1121
|
+
# Specifies the types of AWS resources for which AWS Config records
|
798
1122
|
# configuration changes.
|
799
1123
|
# @return [Types::RecordingGroup]
|
800
1124
|
#
|
@@ -822,7 +1146,7 @@ module Aws::ConfigService
|
|
822
1146
|
# @return [Time]
|
823
1147
|
#
|
824
1148
|
# @!attribute [rw] recording
|
825
|
-
# Specifies whether the recorder is currently recording
|
1149
|
+
# Specifies whether or not the recorder is currently recording.
|
826
1150
|
# @return [Boolean]
|
827
1151
|
#
|
828
1152
|
# @!attribute [rw] last_status
|
@@ -855,6 +1179,30 @@ module Aws::ConfigService
|
|
855
1179
|
include Aws::Structure
|
856
1180
|
end
|
857
1181
|
|
1182
|
+
# @note When making an API call, you may pass DeleteAggregationAuthorizationRequest
|
1183
|
+
# data as a hash:
|
1184
|
+
#
|
1185
|
+
# {
|
1186
|
+
# authorized_account_id: "AccountId", # required
|
1187
|
+
# authorized_aws_region: "AwsRegion", # required
|
1188
|
+
# }
|
1189
|
+
#
|
1190
|
+
# @!attribute [rw] authorized_account_id
|
1191
|
+
# The 12-digit account ID of the account authorized to aggregate data.
|
1192
|
+
# @return [String]
|
1193
|
+
#
|
1194
|
+
# @!attribute [rw] authorized_aws_region
|
1195
|
+
# The region authorized to collect aggregated data.
|
1196
|
+
# @return [String]
|
1197
|
+
#
|
1198
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DeleteAggregationAuthorizationRequest AWS API Documentation
|
1199
|
+
#
|
1200
|
+
class DeleteAggregationAuthorizationRequest < Struct.new(
|
1201
|
+
:authorized_account_id,
|
1202
|
+
:authorized_aws_region)
|
1203
|
+
include Aws::Structure
|
1204
|
+
end
|
1205
|
+
|
858
1206
|
# @note When making an API call, you may pass DeleteConfigRuleRequest
|
859
1207
|
# data as a hash:
|
860
1208
|
#
|
@@ -873,6 +1221,24 @@ module Aws::ConfigService
|
|
873
1221
|
include Aws::Structure
|
874
1222
|
end
|
875
1223
|
|
1224
|
+
# @note When making an API call, you may pass DeleteConfigurationAggregatorRequest
|
1225
|
+
# data as a hash:
|
1226
|
+
#
|
1227
|
+
# {
|
1228
|
+
# configuration_aggregator_name: "ConfigurationAggregatorName", # required
|
1229
|
+
# }
|
1230
|
+
#
|
1231
|
+
# @!attribute [rw] configuration_aggregator_name
|
1232
|
+
# The name of the configuration aggregator.
|
1233
|
+
# @return [String]
|
1234
|
+
#
|
1235
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DeleteConfigurationAggregatorRequest AWS API Documentation
|
1236
|
+
#
|
1237
|
+
class DeleteConfigurationAggregatorRequest < Struct.new(
|
1238
|
+
:configuration_aggregator_name)
|
1239
|
+
include Aws::Structure
|
1240
|
+
end
|
1241
|
+
|
876
1242
|
# The request object for the `DeleteConfigurationRecorder` action.
|
877
1243
|
#
|
878
1244
|
# @note When making an API call, you may pass DeleteConfigurationRecorderRequest
|
@@ -896,7 +1262,7 @@ module Aws::ConfigService
|
|
896
1262
|
end
|
897
1263
|
|
898
1264
|
# The input for the DeleteDeliveryChannel action. The action accepts the
|
899
|
-
# following data in JSON format.
|
1265
|
+
# following data, in JSON format.
|
900
1266
|
#
|
901
1267
|
# @note When making an API call, you may pass DeleteDeliveryChannelRequest
|
902
1268
|
# data as a hash:
|
@@ -924,7 +1290,7 @@ module Aws::ConfigService
|
|
924
1290
|
# }
|
925
1291
|
#
|
926
1292
|
# @!attribute [rw] config_rule_name
|
927
|
-
# The name of the Config rule for which you want to delete the
|
1293
|
+
# The name of the AWS Config rule for which you want to delete the
|
928
1294
|
# evaluation results.
|
929
1295
|
# @return [String]
|
930
1296
|
#
|
@@ -936,12 +1302,36 @@ module Aws::ConfigService
|
|
936
1302
|
end
|
937
1303
|
|
938
1304
|
# The output when you delete the evaluation results for the specified
|
939
|
-
# Config rule.
|
1305
|
+
# AWS Config rule.
|
940
1306
|
#
|
941
1307
|
# @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DeleteEvaluationResultsResponse AWS API Documentation
|
942
1308
|
#
|
943
1309
|
class DeleteEvaluationResultsResponse < Aws::EmptyStructure; end
|
944
1310
|
|
1311
|
+
# @note When making an API call, you may pass DeletePendingAggregationRequestRequest
|
1312
|
+
# data as a hash:
|
1313
|
+
#
|
1314
|
+
# {
|
1315
|
+
# requester_account_id: "AccountId", # required
|
1316
|
+
# requester_aws_region: "AwsRegion", # required
|
1317
|
+
# }
|
1318
|
+
#
|
1319
|
+
# @!attribute [rw] requester_account_id
|
1320
|
+
# The 12-digit account ID of the account requesting to aggregate data.
|
1321
|
+
# @return [String]
|
1322
|
+
#
|
1323
|
+
# @!attribute [rw] requester_aws_region
|
1324
|
+
# The region requesting to aggregate data.
|
1325
|
+
# @return [String]
|
1326
|
+
#
|
1327
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DeletePendingAggregationRequestRequest AWS API Documentation
|
1328
|
+
#
|
1329
|
+
class DeletePendingAggregationRequestRequest < Struct.new(
|
1330
|
+
:requester_account_id,
|
1331
|
+
:requester_aws_region)
|
1332
|
+
include Aws::Structure
|
1333
|
+
end
|
1334
|
+
|
945
1335
|
# The input for the DeliverConfigSnapshot action.
|
946
1336
|
#
|
947
1337
|
# @note When making an API call, you may pass DeliverConfigSnapshotRequest
|
@@ -963,7 +1353,7 @@ module Aws::ConfigService
|
|
963
1353
|
include Aws::Structure
|
964
1354
|
end
|
965
1355
|
|
966
|
-
# The output for the DeliverConfigSnapshot action in JSON format.
|
1356
|
+
# The output for the DeliverConfigSnapshot action, in JSON format.
|
967
1357
|
#
|
968
1358
|
# @!attribute [rw] config_snapshot_id
|
969
1359
|
# The ID of the snapshot that is being created.
|
@@ -1082,6 +1472,111 @@ module Aws::ConfigService
|
|
1082
1472
|
include Aws::Structure
|
1083
1473
|
end
|
1084
1474
|
|
1475
|
+
# @note When making an API call, you may pass DescribeAggregateComplianceByConfigRulesRequest
|
1476
|
+
# data as a hash:
|
1477
|
+
#
|
1478
|
+
# {
|
1479
|
+
# configuration_aggregator_name: "ConfigurationAggregatorName", # required
|
1480
|
+
# filters: {
|
1481
|
+
# config_rule_name: "ConfigRuleName",
|
1482
|
+
# compliance_type: "COMPLIANT", # accepts COMPLIANT, NON_COMPLIANT, NOT_APPLICABLE, INSUFFICIENT_DATA
|
1483
|
+
# account_id: "AccountId",
|
1484
|
+
# aws_region: "AwsRegion",
|
1485
|
+
# },
|
1486
|
+
# limit: 1,
|
1487
|
+
# next_token: "NextToken",
|
1488
|
+
# }
|
1489
|
+
#
|
1490
|
+
# @!attribute [rw] configuration_aggregator_name
|
1491
|
+
# The name of the configuration aggregator.
|
1492
|
+
# @return [String]
|
1493
|
+
#
|
1494
|
+
# @!attribute [rw] filters
|
1495
|
+
# Filters the results by ConfigRuleComplianceFilters object.
|
1496
|
+
# @return [Types::ConfigRuleComplianceFilters]
|
1497
|
+
#
|
1498
|
+
# @!attribute [rw] limit
|
1499
|
+
# The maximum number of evaluation results returned on each page. The
|
1500
|
+
# default is maximum. If you specify 0, AWS Config uses the default.
|
1501
|
+
# @return [Integer]
|
1502
|
+
#
|
1503
|
+
# @!attribute [rw] next_token
|
1504
|
+
# The nextToken string returned on a previous page that you use to get
|
1505
|
+
# the next page of results in a paginated response.
|
1506
|
+
# @return [String]
|
1507
|
+
#
|
1508
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DescribeAggregateComplianceByConfigRulesRequest AWS API Documentation
|
1509
|
+
#
|
1510
|
+
class DescribeAggregateComplianceByConfigRulesRequest < Struct.new(
|
1511
|
+
:configuration_aggregator_name,
|
1512
|
+
:filters,
|
1513
|
+
:limit,
|
1514
|
+
:next_token)
|
1515
|
+
include Aws::Structure
|
1516
|
+
end
|
1517
|
+
|
1518
|
+
# @!attribute [rw] aggregate_compliance_by_config_rules
|
1519
|
+
# Returns a list of AggregateComplianceByConfigRule object.
|
1520
|
+
# @return [Array<Types::AggregateComplianceByConfigRule>]
|
1521
|
+
#
|
1522
|
+
# @!attribute [rw] next_token
|
1523
|
+
# The nextToken string returned on a previous page that you use to get
|
1524
|
+
# the next page of results in a paginated response.
|
1525
|
+
# @return [String]
|
1526
|
+
#
|
1527
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DescribeAggregateComplianceByConfigRulesResponse AWS API Documentation
|
1528
|
+
#
|
1529
|
+
class DescribeAggregateComplianceByConfigRulesResponse < Struct.new(
|
1530
|
+
:aggregate_compliance_by_config_rules,
|
1531
|
+
:next_token)
|
1532
|
+
include Aws::Structure
|
1533
|
+
end
|
1534
|
+
|
1535
|
+
# @note When making an API call, you may pass DescribeAggregationAuthorizationsRequest
|
1536
|
+
# data as a hash:
|
1537
|
+
#
|
1538
|
+
# {
|
1539
|
+
# limit: 1,
|
1540
|
+
# next_token: "String",
|
1541
|
+
# }
|
1542
|
+
#
|
1543
|
+
# @!attribute [rw] limit
|
1544
|
+
# The maximum number of AggregationAuthorizations returned on each
|
1545
|
+
# page. The default is maximum. If you specify 0, AWS Config uses the
|
1546
|
+
# default.
|
1547
|
+
# @return [Integer]
|
1548
|
+
#
|
1549
|
+
# @!attribute [rw] next_token
|
1550
|
+
# The nextToken string returned on a previous page that you use to get
|
1551
|
+
# the next page of results in a paginated response.
|
1552
|
+
# @return [String]
|
1553
|
+
#
|
1554
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DescribeAggregationAuthorizationsRequest AWS API Documentation
|
1555
|
+
#
|
1556
|
+
class DescribeAggregationAuthorizationsRequest < Struct.new(
|
1557
|
+
:limit,
|
1558
|
+
:next_token)
|
1559
|
+
include Aws::Structure
|
1560
|
+
end
|
1561
|
+
|
1562
|
+
# @!attribute [rw] aggregation_authorizations
|
1563
|
+
# Returns a list of authorizations granted to various aggregator
|
1564
|
+
# accounts and regions.
|
1565
|
+
# @return [Array<Types::AggregationAuthorization>]
|
1566
|
+
#
|
1567
|
+
# @!attribute [rw] next_token
|
1568
|
+
# The nextToken string returned on a previous page that you use to get
|
1569
|
+
# the next page of results in a paginated response.
|
1570
|
+
# @return [String]
|
1571
|
+
#
|
1572
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DescribeAggregationAuthorizationsResponse AWS API Documentation
|
1573
|
+
#
|
1574
|
+
class DescribeAggregationAuthorizationsResponse < Struct.new(
|
1575
|
+
:aggregation_authorizations,
|
1576
|
+
:next_token)
|
1577
|
+
include Aws::Structure
|
1578
|
+
end
|
1579
|
+
|
1085
1580
|
# @note When making an API call, you may pass DescribeComplianceByConfigRuleRequest
|
1086
1581
|
# data as a hash:
|
1087
1582
|
#
|
@@ -1104,7 +1599,7 @@ module Aws::ConfigService
|
|
1104
1599
|
# @return [Array<String>]
|
1105
1600
|
#
|
1106
1601
|
# @!attribute [rw] next_token
|
1107
|
-
# The `
|
1602
|
+
# The `nextToken` string returned on a previous page that you use to
|
1108
1603
|
# get the next page of results in a paginated response.
|
1109
1604
|
# @return [String]
|
1110
1605
|
#
|
@@ -1147,9 +1642,9 @@ module Aws::ConfigService
|
|
1147
1642
|
# }
|
1148
1643
|
#
|
1149
1644
|
# @!attribute [rw] resource_type
|
1150
|
-
# The types of AWS resources for which you want compliance
|
1151
|
-
#
|
1152
|
-
#
|
1645
|
+
# The types of AWS resources for which you want compliance information
|
1646
|
+
# (for example, `AWS::EC2::Instance`). For this action, you can
|
1647
|
+
# specify that the resource type is an AWS account by specifying
|
1153
1648
|
# `AWS::::Account`.
|
1154
1649
|
# @return [String]
|
1155
1650
|
#
|
@@ -1167,12 +1662,12 @@ module Aws::ConfigService
|
|
1167
1662
|
#
|
1168
1663
|
# @!attribute [rw] limit
|
1169
1664
|
# The maximum number of evaluation results returned on each page. The
|
1170
|
-
# default is 10. You cannot specify a
|
1665
|
+
# default is 10. You cannot specify a number greater than 100. If you
|
1171
1666
|
# specify 0, AWS Config uses the default.
|
1172
1667
|
# @return [Integer]
|
1173
1668
|
#
|
1174
1669
|
# @!attribute [rw] next_token
|
1175
|
-
# The `
|
1670
|
+
# The `nextToken` string returned on a previous page that you use to
|
1176
1671
|
# get the next page of results in a paginated response.
|
1177
1672
|
# @return [String]
|
1178
1673
|
#
|
@@ -1221,7 +1716,7 @@ module Aws::ConfigService
|
|
1221
1716
|
# @return [Array<String>]
|
1222
1717
|
#
|
1223
1718
|
# @!attribute [rw] next_token
|
1224
|
-
# The `
|
1719
|
+
# The `nextToken` string returned on a previous page that you use to
|
1225
1720
|
# get the next page of results in a paginated response.
|
1226
1721
|
# @return [String]
|
1227
1722
|
#
|
@@ -1231,8 +1726,8 @@ module Aws::ConfigService
|
|
1231
1726
|
# This parameter is required if the rule limit for your account is
|
1232
1727
|
# more than the default of 50 rules.
|
1233
1728
|
#
|
1234
|
-
# For
|
1235
|
-
#
|
1729
|
+
# For information about requesting a rule limit increase, see [AWS
|
1730
|
+
# Config Limits][1] in the *AWS General Reference Guide*.
|
1236
1731
|
#
|
1237
1732
|
#
|
1238
1733
|
#
|
@@ -1280,7 +1775,7 @@ module Aws::ConfigService
|
|
1280
1775
|
# @return [Array<String>]
|
1281
1776
|
#
|
1282
1777
|
# @!attribute [rw] next_token
|
1283
|
-
# The `
|
1778
|
+
# The `nextToken` string returned on a previous page that you use to
|
1284
1779
|
# get the next page of results in a paginated response.
|
1285
1780
|
# @return [String]
|
1286
1781
|
#
|
@@ -1309,6 +1804,118 @@ module Aws::ConfigService
|
|
1309
1804
|
include Aws::Structure
|
1310
1805
|
end
|
1311
1806
|
|
1807
|
+
# @note When making an API call, you may pass DescribeConfigurationAggregatorSourcesStatusRequest
|
1808
|
+
# data as a hash:
|
1809
|
+
#
|
1810
|
+
# {
|
1811
|
+
# configuration_aggregator_name: "ConfigurationAggregatorName", # required
|
1812
|
+
# update_status: ["FAILED"], # accepts FAILED, SUCCEEDED, OUTDATED
|
1813
|
+
# next_token: "String",
|
1814
|
+
# limit: 1,
|
1815
|
+
# }
|
1816
|
+
#
|
1817
|
+
# @!attribute [rw] configuration_aggregator_name
|
1818
|
+
# The name of the configuration aggregator.
|
1819
|
+
# @return [String]
|
1820
|
+
#
|
1821
|
+
# @!attribute [rw] update_status
|
1822
|
+
# Filters the status type.
|
1823
|
+
#
|
1824
|
+
# * Valid value FAILED indicates errors while moving data.
|
1825
|
+
#
|
1826
|
+
# * Valid value SUCCEEDED indicates the data was successfully moved.
|
1827
|
+
#
|
1828
|
+
# * Valid value OUTDATED indicates the data is not the most recent.
|
1829
|
+
# @return [Array<String>]
|
1830
|
+
#
|
1831
|
+
# @!attribute [rw] next_token
|
1832
|
+
# The nextToken string returned on a previous page that you use to get
|
1833
|
+
# the next page of results in a paginated response.
|
1834
|
+
# @return [String]
|
1835
|
+
#
|
1836
|
+
# @!attribute [rw] limit
|
1837
|
+
# The maximum number of AggregatorSourceStatus returned on each page.
|
1838
|
+
# The default is maximum. If you specify 0, AWS Config uses the
|
1839
|
+
# default.
|
1840
|
+
# @return [Integer]
|
1841
|
+
#
|
1842
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DescribeConfigurationAggregatorSourcesStatusRequest AWS API Documentation
|
1843
|
+
#
|
1844
|
+
class DescribeConfigurationAggregatorSourcesStatusRequest < Struct.new(
|
1845
|
+
:configuration_aggregator_name,
|
1846
|
+
:update_status,
|
1847
|
+
:next_token,
|
1848
|
+
:limit)
|
1849
|
+
include Aws::Structure
|
1850
|
+
end
|
1851
|
+
|
1852
|
+
# @!attribute [rw] aggregated_source_status_list
|
1853
|
+
# Retuns an AggregatedSourceStatus object.
|
1854
|
+
# @return [Array<Types::AggregatedSourceStatus>]
|
1855
|
+
#
|
1856
|
+
# @!attribute [rw] next_token
|
1857
|
+
# The nextToken string returned on a previous page that you use to get
|
1858
|
+
# the next page of results in a paginated response.
|
1859
|
+
# @return [String]
|
1860
|
+
#
|
1861
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DescribeConfigurationAggregatorSourcesStatusResponse AWS API Documentation
|
1862
|
+
#
|
1863
|
+
class DescribeConfigurationAggregatorSourcesStatusResponse < Struct.new(
|
1864
|
+
:aggregated_source_status_list,
|
1865
|
+
:next_token)
|
1866
|
+
include Aws::Structure
|
1867
|
+
end
|
1868
|
+
|
1869
|
+
# @note When making an API call, you may pass DescribeConfigurationAggregatorsRequest
|
1870
|
+
# data as a hash:
|
1871
|
+
#
|
1872
|
+
# {
|
1873
|
+
# configuration_aggregator_names: ["ConfigurationAggregatorName"],
|
1874
|
+
# next_token: "String",
|
1875
|
+
# limit: 1,
|
1876
|
+
# }
|
1877
|
+
#
|
1878
|
+
# @!attribute [rw] configuration_aggregator_names
|
1879
|
+
# The name of the configuration aggregators.
|
1880
|
+
# @return [Array<String>]
|
1881
|
+
#
|
1882
|
+
# @!attribute [rw] next_token
|
1883
|
+
# The nextToken string returned on a previous page that you use to get
|
1884
|
+
# the next page of results in a paginated response.
|
1885
|
+
# @return [String]
|
1886
|
+
#
|
1887
|
+
# @!attribute [rw] limit
|
1888
|
+
# The maximum number of configuration aggregators returned on each
|
1889
|
+
# page. The default is maximum. If you specify 0, AWS Config uses the
|
1890
|
+
# default.
|
1891
|
+
# @return [Integer]
|
1892
|
+
#
|
1893
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DescribeConfigurationAggregatorsRequest AWS API Documentation
|
1894
|
+
#
|
1895
|
+
class DescribeConfigurationAggregatorsRequest < Struct.new(
|
1896
|
+
:configuration_aggregator_names,
|
1897
|
+
:next_token,
|
1898
|
+
:limit)
|
1899
|
+
include Aws::Structure
|
1900
|
+
end
|
1901
|
+
|
1902
|
+
# @!attribute [rw] configuration_aggregators
|
1903
|
+
# Returns a ConfigurationAggregators object.
|
1904
|
+
# @return [Array<Types::ConfigurationAggregator>]
|
1905
|
+
#
|
1906
|
+
# @!attribute [rw] next_token
|
1907
|
+
# The nextToken string returned on a previous page that you use to get
|
1908
|
+
# the next page of results in a paginated response.
|
1909
|
+
# @return [String]
|
1910
|
+
#
|
1911
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DescribeConfigurationAggregatorsResponse AWS API Documentation
|
1912
|
+
#
|
1913
|
+
class DescribeConfigurationAggregatorsResponse < Struct.new(
|
1914
|
+
:configuration_aggregators,
|
1915
|
+
:next_token)
|
1916
|
+
include Aws::Structure
|
1917
|
+
end
|
1918
|
+
|
1312
1919
|
# The input for the DescribeConfigurationRecorderStatus action.
|
1313
1920
|
#
|
1314
1921
|
# @note When making an API call, you may pass DescribeConfigurationRecorderStatusRequest
|
@@ -1331,7 +1938,7 @@ module Aws::ConfigService
|
|
1331
1938
|
include Aws::Structure
|
1332
1939
|
end
|
1333
1940
|
|
1334
|
-
# The output for the DescribeConfigurationRecorderStatus action in JSON
|
1941
|
+
# The output for the DescribeConfigurationRecorderStatus action, in JSON
|
1335
1942
|
# format.
|
1336
1943
|
#
|
1337
1944
|
# @!attribute [rw] configuration_recorders_status
|
@@ -1446,6 +2053,49 @@ module Aws::ConfigService
|
|
1446
2053
|
include Aws::Structure
|
1447
2054
|
end
|
1448
2055
|
|
2056
|
+
# @note When making an API call, you may pass DescribePendingAggregationRequestsRequest
|
2057
|
+
# data as a hash:
|
2058
|
+
#
|
2059
|
+
# {
|
2060
|
+
# limit: 1,
|
2061
|
+
# next_token: "String",
|
2062
|
+
# }
|
2063
|
+
#
|
2064
|
+
# @!attribute [rw] limit
|
2065
|
+
# The maximum number of evaluation results returned on each page. The
|
2066
|
+
# default is maximum. If you specify 0, AWS Config uses the default.
|
2067
|
+
# @return [Integer]
|
2068
|
+
#
|
2069
|
+
# @!attribute [rw] next_token
|
2070
|
+
# The nextToken string returned on a previous page that you use to get
|
2071
|
+
# the next page of results in a paginated response.
|
2072
|
+
# @return [String]
|
2073
|
+
#
|
2074
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DescribePendingAggregationRequestsRequest AWS API Documentation
|
2075
|
+
#
|
2076
|
+
class DescribePendingAggregationRequestsRequest < Struct.new(
|
2077
|
+
:limit,
|
2078
|
+
:next_token)
|
2079
|
+
include Aws::Structure
|
2080
|
+
end
|
2081
|
+
|
2082
|
+
# @!attribute [rw] pending_aggregation_requests
|
2083
|
+
# Returns a PendingAggregationRequests object.
|
2084
|
+
# @return [Array<Types::PendingAggregationRequest>]
|
2085
|
+
#
|
2086
|
+
# @!attribute [rw] next_token
|
2087
|
+
# The nextToken string returned on a previous page that you use to get
|
2088
|
+
# the next page of results in a paginated response.
|
2089
|
+
# @return [String]
|
2090
|
+
#
|
2091
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DescribePendingAggregationRequestsResponse AWS API Documentation
|
2092
|
+
#
|
2093
|
+
class DescribePendingAggregationRequestsResponse < Struct.new(
|
2094
|
+
:pending_aggregation_requests,
|
2095
|
+
:next_token)
|
2096
|
+
include Aws::Structure
|
2097
|
+
end
|
2098
|
+
|
1449
2099
|
# Identifies an AWS resource and indicates whether it complies with the
|
1450
2100
|
# AWS Config rule that it was evaluated against.
|
1451
2101
|
#
|
@@ -1479,8 +2129,8 @@ module Aws::ConfigService
|
|
1479
2129
|
#
|
1480
2130
|
# Similarly, AWS Config does not accept `INSUFFICIENT_DATA` as the
|
1481
2131
|
# value for `ComplianceType` from a `PutEvaluations` request. For
|
1482
|
-
# example, an AWS Lambda function for a custom Config rule cannot
|
1483
|
-
# an `INSUFFICIENT_DATA` value to AWS Config.
|
2132
|
+
# example, an AWS Lambda function for a custom AWS Config rule cannot
|
2133
|
+
# pass an `INSUFFICIENT_DATA` value to AWS Config.
|
1484
2134
|
# @return [String]
|
1485
2135
|
#
|
1486
2136
|
# @!attribute [rw] annotation
|
@@ -1509,8 +2159,8 @@ module Aws::ConfigService
|
|
1509
2159
|
end
|
1510
2160
|
|
1511
2161
|
# The details of an AWS Config evaluation. Provides the AWS resource
|
1512
|
-
# that was evaluated, the compliance of the resource, related
|
1513
|
-
#
|
2162
|
+
# that was evaluated, the compliance of the resource, related time
|
2163
|
+
# stamps, and supplementary information.
|
1514
2164
|
#
|
1515
2165
|
# @!attribute [rw] evaluation_result_identifier
|
1516
2166
|
# Uniquely identifies the evaluation result.
|
@@ -1604,6 +2254,159 @@ module Aws::ConfigService
|
|
1604
2254
|
include Aws::Structure
|
1605
2255
|
end
|
1606
2256
|
|
2257
|
+
# @note When making an API call, you may pass GetAggregateComplianceDetailsByConfigRuleRequest
|
2258
|
+
# data as a hash:
|
2259
|
+
#
|
2260
|
+
# {
|
2261
|
+
# configuration_aggregator_name: "ConfigurationAggregatorName", # required
|
2262
|
+
# config_rule_name: "ConfigRuleName", # required
|
2263
|
+
# account_id: "AccountId", # required
|
2264
|
+
# aws_region: "AwsRegion", # required
|
2265
|
+
# compliance_type: "COMPLIANT", # accepts COMPLIANT, NON_COMPLIANT, NOT_APPLICABLE, INSUFFICIENT_DATA
|
2266
|
+
# limit: 1,
|
2267
|
+
# next_token: "NextToken",
|
2268
|
+
# }
|
2269
|
+
#
|
2270
|
+
# @!attribute [rw] configuration_aggregator_name
|
2271
|
+
# The name of the configuration aggregator.
|
2272
|
+
# @return [String]
|
2273
|
+
#
|
2274
|
+
# @!attribute [rw] config_rule_name
|
2275
|
+
# The name of the AWS Config rule for which you want compliance
|
2276
|
+
# information.
|
2277
|
+
# @return [String]
|
2278
|
+
#
|
2279
|
+
# @!attribute [rw] account_id
|
2280
|
+
# The 12-digit account ID of the source account.
|
2281
|
+
# @return [String]
|
2282
|
+
#
|
2283
|
+
# @!attribute [rw] aws_region
|
2284
|
+
# The source region from where the data is aggregated.
|
2285
|
+
# @return [String]
|
2286
|
+
#
|
2287
|
+
# @!attribute [rw] compliance_type
|
2288
|
+
# The resource compliance status.
|
2289
|
+
#
|
2290
|
+
# <note markdown="1"> For the `GetAggregateComplianceDetailsByConfigRuleRequest` data
|
2291
|
+
# type, AWS Config supports only the `COMPLIANT` and `NON_COMPLIANT`.
|
2292
|
+
# AWS Config does not support the `NOT_APPLICABLE` and
|
2293
|
+
# `INSUFFICIENT_DATA` values.
|
2294
|
+
#
|
2295
|
+
# </note>
|
2296
|
+
# @return [String]
|
2297
|
+
#
|
2298
|
+
# @!attribute [rw] limit
|
2299
|
+
# The maximum number of evaluation results returned on each page. The
|
2300
|
+
# default is 50. You cannot specify a number greater than 100. If you
|
2301
|
+
# specify 0, AWS Config uses the default.
|
2302
|
+
# @return [Integer]
|
2303
|
+
#
|
2304
|
+
# @!attribute [rw] next_token
|
2305
|
+
# The nextToken string returned on a previous page that you use to get
|
2306
|
+
# the next page of results in a paginated response.
|
2307
|
+
# @return [String]
|
2308
|
+
#
|
2309
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/GetAggregateComplianceDetailsByConfigRuleRequest AWS API Documentation
|
2310
|
+
#
|
2311
|
+
class GetAggregateComplianceDetailsByConfigRuleRequest < Struct.new(
|
2312
|
+
:configuration_aggregator_name,
|
2313
|
+
:config_rule_name,
|
2314
|
+
:account_id,
|
2315
|
+
:aws_region,
|
2316
|
+
:compliance_type,
|
2317
|
+
:limit,
|
2318
|
+
:next_token)
|
2319
|
+
include Aws::Structure
|
2320
|
+
end
|
2321
|
+
|
2322
|
+
# @!attribute [rw] aggregate_evaluation_results
|
2323
|
+
# Returns an AggregateEvaluationResults object.
|
2324
|
+
# @return [Array<Types::AggregateEvaluationResult>]
|
2325
|
+
#
|
2326
|
+
# @!attribute [rw] next_token
|
2327
|
+
# The nextToken string returned on a previous page that you use to get
|
2328
|
+
# the next page of results in a paginated response.
|
2329
|
+
# @return [String]
|
2330
|
+
#
|
2331
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/GetAggregateComplianceDetailsByConfigRuleResponse AWS API Documentation
|
2332
|
+
#
|
2333
|
+
class GetAggregateComplianceDetailsByConfigRuleResponse < Struct.new(
|
2334
|
+
:aggregate_evaluation_results,
|
2335
|
+
:next_token)
|
2336
|
+
include Aws::Structure
|
2337
|
+
end
|
2338
|
+
|
2339
|
+
# @note When making an API call, you may pass GetAggregateConfigRuleComplianceSummaryRequest
|
2340
|
+
# data as a hash:
|
2341
|
+
#
|
2342
|
+
# {
|
2343
|
+
# configuration_aggregator_name: "ConfigurationAggregatorName", # required
|
2344
|
+
# filters: {
|
2345
|
+
# account_id: "AccountId",
|
2346
|
+
# aws_region: "AwsRegion",
|
2347
|
+
# },
|
2348
|
+
# group_by_key: "ACCOUNT_ID", # accepts ACCOUNT_ID, AWS_REGION
|
2349
|
+
# limit: 1,
|
2350
|
+
# next_token: "NextToken",
|
2351
|
+
# }
|
2352
|
+
#
|
2353
|
+
# @!attribute [rw] configuration_aggregator_name
|
2354
|
+
# The name of the configuration aggregator.
|
2355
|
+
# @return [String]
|
2356
|
+
#
|
2357
|
+
# @!attribute [rw] filters
|
2358
|
+
# Filters the results based on the ConfigRuleComplianceSummaryFilters
|
2359
|
+
# object.
|
2360
|
+
# @return [Types::ConfigRuleComplianceSummaryFilters]
|
2361
|
+
#
|
2362
|
+
# @!attribute [rw] group_by_key
|
2363
|
+
# Groups the result based on ACCOUNT\_ID or AWS\_REGION.
|
2364
|
+
# @return [String]
|
2365
|
+
#
|
2366
|
+
# @!attribute [rw] limit
|
2367
|
+
# The maximum number of evaluation results returned on each page. The
|
2368
|
+
# default is 1000. You cannot specify a number greater than 1000. If
|
2369
|
+
# you specify 0, AWS Config uses the default.
|
2370
|
+
# @return [Integer]
|
2371
|
+
#
|
2372
|
+
# @!attribute [rw] next_token
|
2373
|
+
# The nextToken string returned on a previous page that you use to get
|
2374
|
+
# the next page of results in a paginated response.
|
2375
|
+
# @return [String]
|
2376
|
+
#
|
2377
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/GetAggregateConfigRuleComplianceSummaryRequest AWS API Documentation
|
2378
|
+
#
|
2379
|
+
class GetAggregateConfigRuleComplianceSummaryRequest < Struct.new(
|
2380
|
+
:configuration_aggregator_name,
|
2381
|
+
:filters,
|
2382
|
+
:group_by_key,
|
2383
|
+
:limit,
|
2384
|
+
:next_token)
|
2385
|
+
include Aws::Structure
|
2386
|
+
end
|
2387
|
+
|
2388
|
+
# @!attribute [rw] group_by_key
|
2389
|
+
# Groups the result based on ACCOUNT\_ID or AWS\_REGION.
|
2390
|
+
# @return [String]
|
2391
|
+
#
|
2392
|
+
# @!attribute [rw] aggregate_compliance_counts
|
2393
|
+
# Returns a list of AggregateComplianceCounts object.
|
2394
|
+
# @return [Array<Types::AggregateComplianceCount>]
|
2395
|
+
#
|
2396
|
+
# @!attribute [rw] next_token
|
2397
|
+
# The nextToken string returned on a previous page that you use to get
|
2398
|
+
# the next page of results in a paginated response.
|
2399
|
+
# @return [String]
|
2400
|
+
#
|
2401
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/GetAggregateConfigRuleComplianceSummaryResponse AWS API Documentation
|
2402
|
+
#
|
2403
|
+
class GetAggregateConfigRuleComplianceSummaryResponse < Struct.new(
|
2404
|
+
:group_by_key,
|
2405
|
+
:aggregate_compliance_counts,
|
2406
|
+
:next_token)
|
2407
|
+
include Aws::Structure
|
2408
|
+
end
|
2409
|
+
|
1607
2410
|
# @note When making an API call, you may pass GetComplianceDetailsByConfigRuleRequest
|
1608
2411
|
# data as a hash:
|
1609
2412
|
#
|
@@ -1628,12 +2431,12 @@ module Aws::ConfigService
|
|
1628
2431
|
#
|
1629
2432
|
# @!attribute [rw] limit
|
1630
2433
|
# The maximum number of evaluation results returned on each page. The
|
1631
|
-
# default is 10. You cannot specify a
|
2434
|
+
# default is 10. You cannot specify a number greater than 100. If you
|
1632
2435
|
# specify 0, AWS Config uses the default.
|
1633
2436
|
# @return [Integer]
|
1634
2437
|
#
|
1635
2438
|
# @!attribute [rw] next_token
|
1636
|
-
# The `
|
2439
|
+
# The `nextToken` string returned on a previous page that you use to
|
1637
2440
|
# get the next page of results in a paginated response.
|
1638
2441
|
# @return [String]
|
1639
2442
|
#
|
@@ -1693,7 +2496,7 @@ module Aws::ConfigService
|
|
1693
2496
|
# @return [Array<String>]
|
1694
2497
|
#
|
1695
2498
|
# @!attribute [rw] next_token
|
1696
|
-
# The `
|
2499
|
+
# The `nextToken` string returned on a previous page that you use to
|
1697
2500
|
# get the next page of results in a paginated response.
|
1698
2501
|
# @return [String]
|
1699
2502
|
#
|
@@ -1750,8 +2553,8 @@ module Aws::ConfigService
|
|
1750
2553
|
# resource type.
|
1751
2554
|
#
|
1752
2555
|
# For this request, you can specify an AWS resource type such as
|
1753
|
-
# `AWS::EC2::Instance
|
1754
|
-
#
|
2556
|
+
# `AWS::EC2::Instance`. You can specify that the resource type is an
|
2557
|
+
# AWS account by specifying `AWS::::Account`.
|
1755
2558
|
# @return [Array<String>]
|
1756
2559
|
#
|
1757
2560
|
# @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/GetComplianceSummaryByResourceTypeRequest AWS API Documentation
|
@@ -1786,7 +2589,7 @@ module Aws::ConfigService
|
|
1786
2589
|
#
|
1787
2590
|
# @!attribute [rw] resource_types
|
1788
2591
|
# The comma-separated list that specifies the resource types that you
|
1789
|
-
# want
|
2592
|
+
# want AWS Config to return (for example, `"AWS::EC2::Instance"`,
|
1790
2593
|
# `"AWS::IAM::User"`).
|
1791
2594
|
#
|
1792
2595
|
# If a value for `resourceTypes` is not specified, AWS Config returns
|
@@ -1804,7 +2607,7 @@ module Aws::ConfigService
|
|
1804
2607
|
#
|
1805
2608
|
# @!attribute [rw] limit
|
1806
2609
|
# The maximum number of ResourceCount objects returned on each page.
|
1807
|
-
# The default is 100. You cannot specify a
|
2610
|
+
# The default is 100. You cannot specify a number greater than 100. If
|
1808
2611
|
# you specify 0, AWS Config uses the default.
|
1809
2612
|
# @return [Integer]
|
1810
2613
|
#
|
@@ -1835,7 +2638,7 @@ module Aws::ConfigService
|
|
1835
2638
|
# and 15 S3 buckets, for a total of 60 resources.
|
1836
2639
|
#
|
1837
2640
|
# 2. You make a call to the `GetDiscoveredResourceCounts` action and
|
1838
|
-
# specify the resource type, `"AWS::EC2::Instances"
|
2641
|
+
# specify the resource type, `"AWS::EC2::Instances"`, in the
|
1839
2642
|
# request.
|
1840
2643
|
#
|
1841
2644
|
# 3. AWS Config returns 25 for `totalDiscoveredResources`.
|
@@ -1891,17 +2694,17 @@ module Aws::ConfigService
|
|
1891
2694
|
# @!attribute [rw] earlier_time
|
1892
2695
|
# The time stamp that indicates an earlier time. If not specified, the
|
1893
2696
|
# action returns paginated results that contain configuration items
|
1894
|
-
# that start
|
2697
|
+
# that start when the first configuration item was recorded.
|
1895
2698
|
# @return [Time]
|
1896
2699
|
#
|
1897
2700
|
# @!attribute [rw] chronological_order
|
1898
|
-
# The chronological order for configuration items listed. By default
|
2701
|
+
# The chronological order for configuration items listed. By default,
|
1899
2702
|
# the results are listed in reverse chronological order.
|
1900
2703
|
# @return [String]
|
1901
2704
|
#
|
1902
2705
|
# @!attribute [rw] limit
|
1903
2706
|
# The maximum number of configuration items returned on each page. The
|
1904
|
-
# default is 10. You cannot specify a
|
2707
|
+
# default is 10. You cannot specify a number greater than 100. If you
|
1905
2708
|
# specify 0, AWS Config uses the default.
|
1906
2709
|
# @return [Integer]
|
1907
2710
|
#
|
@@ -1975,7 +2778,7 @@ module Aws::ConfigService
|
|
1975
2778
|
#
|
1976
2779
|
# @!attribute [rw] limit
|
1977
2780
|
# The maximum number of resource identifiers returned on each page.
|
1978
|
-
# The default is 100. You cannot specify a
|
2781
|
+
# The default is 100. You cannot specify a number greater than 100. If
|
1979
2782
|
# you specify 0, AWS Config uses the default.
|
1980
2783
|
# @return [Integer]
|
1981
2784
|
#
|
@@ -2020,6 +2823,94 @@ module Aws::ConfigService
|
|
2020
2823
|
include Aws::Structure
|
2021
2824
|
end
|
2022
2825
|
|
2826
|
+
# This object contains regions to setup the aggregator and an IAM role
|
2827
|
+
# to retrieve organization details.
|
2828
|
+
#
|
2829
|
+
# @note When making an API call, you may pass OrganizationAggregationSource
|
2830
|
+
# data as a hash:
|
2831
|
+
#
|
2832
|
+
# {
|
2833
|
+
# role_arn: "String", # required
|
2834
|
+
# aws_regions: ["String"],
|
2835
|
+
# all_aws_regions: false,
|
2836
|
+
# }
|
2837
|
+
#
|
2838
|
+
# @!attribute [rw] role_arn
|
2839
|
+
# ARN of the IAM role used to retreive AWS Organization details
|
2840
|
+
# associated with the aggregator account.
|
2841
|
+
# @return [String]
|
2842
|
+
#
|
2843
|
+
# @!attribute [rw] aws_regions
|
2844
|
+
# The source regions being aggregated.
|
2845
|
+
# @return [Array<String>]
|
2846
|
+
#
|
2847
|
+
# @!attribute [rw] all_aws_regions
|
2848
|
+
# If true, aggreagate existing AWS Config regions and future regions.
|
2849
|
+
# @return [Boolean]
|
2850
|
+
#
|
2851
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/OrganizationAggregationSource AWS API Documentation
|
2852
|
+
#
|
2853
|
+
class OrganizationAggregationSource < Struct.new(
|
2854
|
+
:role_arn,
|
2855
|
+
:aws_regions,
|
2856
|
+
:all_aws_regions)
|
2857
|
+
include Aws::Structure
|
2858
|
+
end
|
2859
|
+
|
2860
|
+
# An object that represents the account ID and region of an aggregator
|
2861
|
+
# account that is requesting authorization but is not yet authorized.
|
2862
|
+
#
|
2863
|
+
# @!attribute [rw] requester_account_id
|
2864
|
+
# The 12-digit account ID of the account requesting to aggregate data.
|
2865
|
+
# @return [String]
|
2866
|
+
#
|
2867
|
+
# @!attribute [rw] requester_aws_region
|
2868
|
+
# The region requesting to aggregate data.
|
2869
|
+
# @return [String]
|
2870
|
+
#
|
2871
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/PendingAggregationRequest AWS API Documentation
|
2872
|
+
#
|
2873
|
+
class PendingAggregationRequest < Struct.new(
|
2874
|
+
:requester_account_id,
|
2875
|
+
:requester_aws_region)
|
2876
|
+
include Aws::Structure
|
2877
|
+
end
|
2878
|
+
|
2879
|
+
# @note When making an API call, you may pass PutAggregationAuthorizationRequest
|
2880
|
+
# data as a hash:
|
2881
|
+
#
|
2882
|
+
# {
|
2883
|
+
# authorized_account_id: "AccountId", # required
|
2884
|
+
# authorized_aws_region: "AwsRegion", # required
|
2885
|
+
# }
|
2886
|
+
#
|
2887
|
+
# @!attribute [rw] authorized_account_id
|
2888
|
+
# The 12-digit account ID of the account authorized to aggregate data.
|
2889
|
+
# @return [String]
|
2890
|
+
#
|
2891
|
+
# @!attribute [rw] authorized_aws_region
|
2892
|
+
# The region authorized to collect aggregated data.
|
2893
|
+
# @return [String]
|
2894
|
+
#
|
2895
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/PutAggregationAuthorizationRequest AWS API Documentation
|
2896
|
+
#
|
2897
|
+
class PutAggregationAuthorizationRequest < Struct.new(
|
2898
|
+
:authorized_account_id,
|
2899
|
+
:authorized_aws_region)
|
2900
|
+
include Aws::Structure
|
2901
|
+
end
|
2902
|
+
|
2903
|
+
# @!attribute [rw] aggregation_authorization
|
2904
|
+
# Returns an AggregationAuthorization object.
|
2905
|
+
# @return [Types::AggregationAuthorization]
|
2906
|
+
#
|
2907
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/PutAggregationAuthorizationResponse AWS API Documentation
|
2908
|
+
#
|
2909
|
+
class PutAggregationAuthorizationResponse < Struct.new(
|
2910
|
+
:aggregation_authorization)
|
2911
|
+
include Aws::Structure
|
2912
|
+
end
|
2913
|
+
|
2023
2914
|
# @note When making an API call, you may pass PutConfigRuleRequest
|
2024
2915
|
# data as a hash:
|
2025
2916
|
#
|
@@ -2063,6 +2954,57 @@ module Aws::ConfigService
|
|
2063
2954
|
include Aws::Structure
|
2064
2955
|
end
|
2065
2956
|
|
2957
|
+
# @note When making an API call, you may pass PutConfigurationAggregatorRequest
|
2958
|
+
# data as a hash:
|
2959
|
+
#
|
2960
|
+
# {
|
2961
|
+
# configuration_aggregator_name: "ConfigurationAggregatorName", # required
|
2962
|
+
# account_aggregation_sources: [
|
2963
|
+
# {
|
2964
|
+
# account_ids: ["AccountId"], # required
|
2965
|
+
# all_aws_regions: false,
|
2966
|
+
# aws_regions: ["String"],
|
2967
|
+
# },
|
2968
|
+
# ],
|
2969
|
+
# organization_aggregation_source: {
|
2970
|
+
# role_arn: "String", # required
|
2971
|
+
# aws_regions: ["String"],
|
2972
|
+
# all_aws_regions: false,
|
2973
|
+
# },
|
2974
|
+
# }
|
2975
|
+
#
|
2976
|
+
# @!attribute [rw] configuration_aggregator_name
|
2977
|
+
# The name of the configuration aggregator.
|
2978
|
+
# @return [String]
|
2979
|
+
#
|
2980
|
+
# @!attribute [rw] account_aggregation_sources
|
2981
|
+
# A list of AccountAggregationSource object.
|
2982
|
+
# @return [Array<Types::AccountAggregationSource>]
|
2983
|
+
#
|
2984
|
+
# @!attribute [rw] organization_aggregation_source
|
2985
|
+
# An OrganizationAggregationSource object.
|
2986
|
+
# @return [Types::OrganizationAggregationSource]
|
2987
|
+
#
|
2988
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/PutConfigurationAggregatorRequest AWS API Documentation
|
2989
|
+
#
|
2990
|
+
class PutConfigurationAggregatorRequest < Struct.new(
|
2991
|
+
:configuration_aggregator_name,
|
2992
|
+
:account_aggregation_sources,
|
2993
|
+
:organization_aggregation_source)
|
2994
|
+
include Aws::Structure
|
2995
|
+
end
|
2996
|
+
|
2997
|
+
# @!attribute [rw] configuration_aggregator
|
2998
|
+
# Returns a ConfigurationAggregator object.
|
2999
|
+
# @return [Types::ConfigurationAggregator]
|
3000
|
+
#
|
3001
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/PutConfigurationAggregatorResponse AWS API Documentation
|
3002
|
+
#
|
3003
|
+
class PutConfigurationAggregatorResponse < Struct.new(
|
3004
|
+
:configuration_aggregator)
|
3005
|
+
include Aws::Structure
|
3006
|
+
end
|
3007
|
+
|
2066
3008
|
# The input for the PutConfigurationRecorder action.
|
2067
3009
|
#
|
2068
3010
|
# @note When making an API call, you may pass PutConfigurationRecorderRequest
|
@@ -2111,7 +3053,7 @@ module Aws::ConfigService
|
|
2111
3053
|
#
|
2112
3054
|
# @!attribute [rw] delivery_channel
|
2113
3055
|
# The configuration delivery channel object that delivers the
|
2114
|
-
# configuration information to an Amazon S3 bucket
|
3056
|
+
# configuration information to an Amazon S3 bucket and to an Amazon
|
2115
3057
|
# SNS topic.
|
2116
3058
|
# @return [Types::DeliveryChannel]
|
2117
3059
|
#
|
@@ -2149,7 +3091,7 @@ module Aws::ConfigService
|
|
2149
3091
|
# @!attribute [rw] result_token
|
2150
3092
|
# An encrypted token that associates an evaluation with an AWS Config
|
2151
3093
|
# rule. Identifies the rule and the event that triggered the
|
2152
|
-
# evaluation
|
3094
|
+
# evaluation.
|
2153
3095
|
# @return [String]
|
2154
3096
|
#
|
2155
3097
|
# @!attribute [rw] test_mode
|
@@ -2214,8 +3156,8 @@ module Aws::ConfigService
|
|
2214
3156
|
# which types of resources it will record with the `resourceTypes`
|
2215
3157
|
# parameter.
|
2216
3158
|
#
|
2217
|
-
# For a list of supported resource types, see [Supported
|
2218
|
-
#
|
3159
|
+
# For a list of supported resource types, see [Supported Resource
|
3160
|
+
# Types][1].
|
2219
3161
|
#
|
2220
3162
|
# For more information, see [Selecting Which Resources AWS Config
|
2221
3163
|
# Records][2].
|
@@ -2239,8 +3181,8 @@ module Aws::ConfigService
|
|
2239
3181
|
# supported type of regional resource.
|
2240
3182
|
#
|
2241
3183
|
# If you set this option to `true`, when AWS Config adds support for a
|
2242
|
-
# new type of regional resource, it
|
2243
|
-
#
|
3184
|
+
# new type of regional resource, it starts recording resources of that
|
3185
|
+
# type automatically.
|
2244
3186
|
#
|
2245
3187
|
# If you set this option to `true`, you cannot enumerate a list of
|
2246
3188
|
# `resourceTypes`.
|
@@ -2255,8 +3197,8 @@ module Aws::ConfigService
|
|
2255
3197
|
# `allSupported` option to `true`.
|
2256
3198
|
#
|
2257
3199
|
# If you set this option to `true`, when AWS Config adds support for a
|
2258
|
-
# new type of global resource, it
|
2259
|
-
#
|
3200
|
+
# new type of global resource, it starts recording resources of that
|
3201
|
+
# type automatically.
|
2260
3202
|
#
|
2261
3203
|
# The configuration details for any global resource are the same in
|
2262
3204
|
# all regions. To prevent duplicate configuration items, you should
|
@@ -2324,7 +3266,7 @@ module Aws::ConfigService
|
|
2324
3266
|
# An object that contains the resource type and the number of resources.
|
2325
3267
|
#
|
2326
3268
|
# @!attribute [rw] resource_type
|
2327
|
-
# The resource type
|
3269
|
+
# The resource type (for example, `"AWS::EC2::Instance"`).
|
2328
3270
|
# @return [String]
|
2329
3271
|
#
|
2330
3272
|
# @!attribute [rw] count
|
@@ -2348,7 +3290,7 @@ module Aws::ConfigService
|
|
2348
3290
|
# @return [String]
|
2349
3291
|
#
|
2350
3292
|
# @!attribute [rw] resource_id
|
2351
|
-
# The ID of the resource (for example
|
3293
|
+
# The ID of the resource (for example, `sg-xxxxxx`).
|
2352
3294
|
# @return [String]
|
2353
3295
|
#
|
2354
3296
|
# @!attribute [rw] resource_name
|
@@ -2432,7 +3374,7 @@ module Aws::ConfigService
|
|
2432
3374
|
# @return [String]
|
2433
3375
|
#
|
2434
3376
|
# @!attribute [rw] compliance_resource_id
|
2435
|
-
# The
|
3377
|
+
# The ID of the only AWS resource that you want to trigger an
|
2436
3378
|
# evaluation for the rule. If you specify a resource ID, you must
|
2437
3379
|
# specify one resource type for `ComplianceResourceTypes`.
|
2438
3380
|
# @return [String]
|
@@ -2541,13 +3483,12 @@ module Aws::ConfigService
|
|
2541
3483
|
# evaluation when AWS Config delivers a configuration snapshot.
|
2542
3484
|
#
|
2543
3485
|
# If you want your custom rule to be triggered by configuration
|
2544
|
-
# changes, specify
|
2545
|
-
# `ConfigurationItemChangeNotification` and one for
|
3486
|
+
# changes, specify both `ConfigurationItemChangeNotification` and
|
2546
3487
|
# `OversizedConfigurationItemChangeNotification`.
|
2547
3488
|
# @return [String]
|
2548
3489
|
#
|
2549
3490
|
# @!attribute [rw] maximum_execution_frequency
|
2550
|
-
# The frequency
|
3491
|
+
# The frequency at which you want AWS Config to run evaluations for a
|
2551
3492
|
# custom rule with a periodic trigger. If you specify a value for
|
2552
3493
|
# `MaximumExecutionFrequency`, then `MessageType` must use the
|
2553
3494
|
# `ScheduledNotification` value.
|
@@ -2581,8 +3522,8 @@ module Aws::ConfigService
|
|
2581
3522
|
# }
|
2582
3523
|
#
|
2583
3524
|
# @!attribute [rw] config_rule_names
|
2584
|
-
# The list of names of Config rules that you want to run
|
2585
|
-
# for.
|
3525
|
+
# The list of names of AWS Config rules that you want to run
|
3526
|
+
# evaluations for.
|
2586
3527
|
# @return [Array<String>]
|
2587
3528
|
#
|
2588
3529
|
# @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/StartConfigRulesEvaluationRequest AWS API Documentation
|
@@ -2592,7 +3533,7 @@ module Aws::ConfigService
|
|
2592
3533
|
include Aws::Structure
|
2593
3534
|
end
|
2594
3535
|
|
2595
|
-
# The output when you start the evaluation for the specified Config
|
3536
|
+
# The output when you start the evaluation for the specified AWS Config
|
2596
3537
|
# rule.
|
2597
3538
|
#
|
2598
3539
|
# @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/StartConfigRulesEvaluationResponse AWS API Documentation
|