aws-sdk-configservice 1.32.0 → 1.33.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b23e6c44c356a2a9e6b1c07fa514e5af5066a590
4
- data.tar.gz: 7e5beeb537448404115275958c0599ddaebcc4c1
3
+ metadata.gz: cb65e1c0d47add19f528ae02bdc91d9cfe110296
4
+ data.tar.gz: 4d06f8655518db51bc848548970a129d16f9961c
5
5
  SHA512:
6
- metadata.gz: c3fd03ffd3a5bc7724c8ec7563ce411751122edca781368b38ba4eb4b7b40f2da2dc47bd574cc77314018215a5157d99e89ea72d45d42dd846172468b72c8d26
7
- data.tar.gz: 61d5766b1a18298f679f5d37ed37d44c9193027f85a6c4e101c86b7177cbc3d1f7a3d62484f03feb17e704b484942588427c3e5588347dcef4289c069892fa92
6
+ metadata.gz: 0db7285cd95aabedff87741ebec15443609ab69dafeacc737d6058f8c4e3b7c7fb94906b7e3f26a35df8e4450c3a360aa0b2e8ac438d85f695d5d637c022ec03
7
+ data.tar.gz: 489b35c68813b411f2a2e717686848e017a95fed5f95617efd6201f8d35266be4f480d6c1bd17172f70bbe22dad980d96d5d1677c77513e5d857c7b23807fed9
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-configservice/customizations'
42
42
  # @service
43
43
  module Aws::ConfigService
44
44
 
45
- GEM_VERSION = '1.32.0'
45
+ GEM_VERSION = '1.33.0'
46
46
 
47
47
  end
@@ -566,6 +566,25 @@ module Aws::ConfigService
566
566
  req.send_request(options)
567
567
  end
568
568
 
569
+ # @option params [required, String] :organization_config_rule_name
570
+ #
571
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
572
+ #
573
+ # @example Request syntax with placeholder values
574
+ #
575
+ # resp = client.delete_organization_config_rule({
576
+ # organization_config_rule_name: "StringWithCharLimit64", # required
577
+ # })
578
+ #
579
+ # @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DeleteOrganizationConfigRule AWS API Documentation
580
+ #
581
+ # @overload delete_organization_config_rule(params = {})
582
+ # @param [Hash] params ({})
583
+ def delete_organization_config_rule(params = {}, options = {})
584
+ req = build_request(:delete_organization_config_rule, params)
585
+ req.send_request(options)
586
+ end
587
+
569
588
  # Deletes pending authorization requests for a specified aggregator
570
589
  # account in a specified region.
571
590
  #
@@ -1357,6 +1376,102 @@ module Aws::ConfigService
1357
1376
  req.send_request(options)
1358
1377
  end
1359
1378
 
1379
+ # @option params [Array<String>] :organization_config_rule_names
1380
+ #
1381
+ # @option params [Integer] :limit
1382
+ #
1383
+ # @option params [String] :next_token
1384
+ #
1385
+ # @return [Types::DescribeOrganizationConfigRuleStatusesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1386
+ #
1387
+ # * {Types::DescribeOrganizationConfigRuleStatusesResponse#organization_config_rule_statuses #organization_config_rule_statuses} => Array&lt;Types::OrganizationConfigRuleStatus&gt;
1388
+ # * {Types::DescribeOrganizationConfigRuleStatusesResponse#next_token #next_token} => String
1389
+ #
1390
+ # @example Request syntax with placeholder values
1391
+ #
1392
+ # resp = client.describe_organization_config_rule_statuses({
1393
+ # organization_config_rule_names: ["StringWithCharLimit64"],
1394
+ # limit: 1,
1395
+ # next_token: "String",
1396
+ # })
1397
+ #
1398
+ # @example Response structure
1399
+ #
1400
+ # resp.organization_config_rule_statuses #=> Array
1401
+ # resp.organization_config_rule_statuses[0].organization_config_rule_name #=> String
1402
+ # resp.organization_config_rule_statuses[0].organization_rule_status #=> String, one of "CREATE_SUCCESSFUL", "CREATE_IN_PROGRESS", "CREATE_FAILED", "DELETE_SUCCESSFUL", "DELETE_FAILED", "DELETE_IN_PROGRESS"
1403
+ # resp.organization_config_rule_statuses[0].error_code #=> String
1404
+ # resp.organization_config_rule_statuses[0].error_message #=> String
1405
+ # resp.organization_config_rule_statuses[0].last_update_time #=> Time
1406
+ # resp.next_token #=> String
1407
+ #
1408
+ # @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DescribeOrganizationConfigRuleStatuses AWS API Documentation
1409
+ #
1410
+ # @overload describe_organization_config_rule_statuses(params = {})
1411
+ # @param [Hash] params ({})
1412
+ def describe_organization_config_rule_statuses(params = {}, options = {})
1413
+ req = build_request(:describe_organization_config_rule_statuses, params)
1414
+ req.send_request(options)
1415
+ end
1416
+
1417
+ # @option params [Array<String>] :organization_config_rule_names
1418
+ #
1419
+ # @option params [Integer] :limit
1420
+ #
1421
+ # @option params [String] :next_token
1422
+ #
1423
+ # @return [Types::DescribeOrganizationConfigRulesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1424
+ #
1425
+ # * {Types::DescribeOrganizationConfigRulesResponse#organization_config_rules #organization_config_rules} => Array&lt;Types::OrganizationConfigRule&gt;
1426
+ # * {Types::DescribeOrganizationConfigRulesResponse#next_token #next_token} => String
1427
+ #
1428
+ # @example Request syntax with placeholder values
1429
+ #
1430
+ # resp = client.describe_organization_config_rules({
1431
+ # organization_config_rule_names: ["StringWithCharLimit64"],
1432
+ # limit: 1,
1433
+ # next_token: "String",
1434
+ # })
1435
+ #
1436
+ # @example Response structure
1437
+ #
1438
+ # resp.organization_config_rules #=> Array
1439
+ # resp.organization_config_rules[0].organization_config_rule_name #=> String
1440
+ # resp.organization_config_rules[0].organization_config_rule_arn #=> String
1441
+ # resp.organization_config_rules[0].organization_managed_rule_metadata.description #=> String
1442
+ # resp.organization_config_rules[0].organization_managed_rule_metadata.rule_identifier #=> String
1443
+ # resp.organization_config_rules[0].organization_managed_rule_metadata.input_parameters #=> String
1444
+ # resp.organization_config_rules[0].organization_managed_rule_metadata.maximum_execution_frequency #=> String, one of "One_Hour", "Three_Hours", "Six_Hours", "Twelve_Hours", "TwentyFour_Hours"
1445
+ # resp.organization_config_rules[0].organization_managed_rule_metadata.resource_types_scope #=> Array
1446
+ # resp.organization_config_rules[0].organization_managed_rule_metadata.resource_types_scope[0] #=> String
1447
+ # resp.organization_config_rules[0].organization_managed_rule_metadata.resource_id_scope #=> String
1448
+ # resp.organization_config_rules[0].organization_managed_rule_metadata.tag_key_scope #=> String
1449
+ # resp.organization_config_rules[0].organization_managed_rule_metadata.tag_value_scope #=> String
1450
+ # resp.organization_config_rules[0].organization_custom_rule_metadata.description #=> String
1451
+ # resp.organization_config_rules[0].organization_custom_rule_metadata.lambda_function_arn #=> String
1452
+ # resp.organization_config_rules[0].organization_custom_rule_metadata.organization_config_rule_trigger_types #=> Array
1453
+ # resp.organization_config_rules[0].organization_custom_rule_metadata.organization_config_rule_trigger_types[0] #=> String, one of "ConfigurationItemChangeNotification", "OversizedConfigurationItemChangeNotification", "ScheduledNotification"
1454
+ # resp.organization_config_rules[0].organization_custom_rule_metadata.input_parameters #=> String
1455
+ # resp.organization_config_rules[0].organization_custom_rule_metadata.maximum_execution_frequency #=> String, one of "One_Hour", "Three_Hours", "Six_Hours", "Twelve_Hours", "TwentyFour_Hours"
1456
+ # resp.organization_config_rules[0].organization_custom_rule_metadata.resource_types_scope #=> Array
1457
+ # resp.organization_config_rules[0].organization_custom_rule_metadata.resource_types_scope[0] #=> String
1458
+ # resp.organization_config_rules[0].organization_custom_rule_metadata.resource_id_scope #=> String
1459
+ # resp.organization_config_rules[0].organization_custom_rule_metadata.tag_key_scope #=> String
1460
+ # resp.organization_config_rules[0].organization_custom_rule_metadata.tag_value_scope #=> String
1461
+ # resp.organization_config_rules[0].excluded_accounts #=> Array
1462
+ # resp.organization_config_rules[0].excluded_accounts[0] #=> String
1463
+ # resp.organization_config_rules[0].last_update_time #=> Time
1464
+ # resp.next_token #=> String
1465
+ #
1466
+ # @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DescribeOrganizationConfigRules AWS API Documentation
1467
+ #
1468
+ # @overload describe_organization_config_rules(params = {})
1469
+ # @param [Hash] params ({})
1470
+ def describe_organization_config_rules(params = {}, options = {})
1471
+ req = build_request(:describe_organization_config_rules, params)
1472
+ req.send_request(options)
1473
+ end
1474
+
1360
1475
  # Returns a list of all pending aggregation requests.
1361
1476
  #
1362
1477
  # @option params [Integer] :limit
@@ -2114,6 +2229,51 @@ module Aws::ConfigService
2114
2229
  req.send_request(options)
2115
2230
  end
2116
2231
 
2232
+ # @option params [required, String] :organization_config_rule_name
2233
+ #
2234
+ # @option params [Types::StatusDetailFilters] :filters
2235
+ #
2236
+ # @option params [Integer] :limit
2237
+ #
2238
+ # @option params [String] :next_token
2239
+ #
2240
+ # @return [Types::GetOrganizationConfigRuleDetailedStatusResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2241
+ #
2242
+ # * {Types::GetOrganizationConfigRuleDetailedStatusResponse#organization_config_rule_detailed_status #organization_config_rule_detailed_status} => Array&lt;Types::MemberAccountStatus&gt;
2243
+ # * {Types::GetOrganizationConfigRuleDetailedStatusResponse#next_token #next_token} => String
2244
+ #
2245
+ # @example Request syntax with placeholder values
2246
+ #
2247
+ # resp = client.get_organization_config_rule_detailed_status({
2248
+ # organization_config_rule_name: "StringWithCharLimit64", # required
2249
+ # filters: {
2250
+ # account_id: "AccountId",
2251
+ # member_account_rule_status: "CREATE_SUCCESSFUL", # accepts CREATE_SUCCESSFUL, CREATE_IN_PROGRESS, CREATE_FAILED, DELETE_SUCCESSFUL, DELETE_FAILED, DELETE_IN_PROGRESS
2252
+ # },
2253
+ # limit: 1,
2254
+ # next_token: "String",
2255
+ # })
2256
+ #
2257
+ # @example Response structure
2258
+ #
2259
+ # resp.organization_config_rule_detailed_status #=> Array
2260
+ # resp.organization_config_rule_detailed_status[0].account_id #=> String
2261
+ # resp.organization_config_rule_detailed_status[0].config_rule_name #=> String
2262
+ # resp.organization_config_rule_detailed_status[0].member_account_rule_status #=> String, one of "CREATE_SUCCESSFUL", "CREATE_IN_PROGRESS", "CREATE_FAILED", "DELETE_SUCCESSFUL", "DELETE_FAILED", "DELETE_IN_PROGRESS"
2263
+ # resp.organization_config_rule_detailed_status[0].error_code #=> String
2264
+ # resp.organization_config_rule_detailed_status[0].error_message #=> String
2265
+ # resp.organization_config_rule_detailed_status[0].last_update_time #=> Time
2266
+ # resp.next_token #=> String
2267
+ #
2268
+ # @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/GetOrganizationConfigRuleDetailedStatus AWS API Documentation
2269
+ #
2270
+ # @overload get_organization_config_rule_detailed_status(params = {})
2271
+ # @param [Hash] params ({})
2272
+ def get_organization_config_rule_detailed_status(params = {}, options = {})
2273
+ req = build_request(:get_organization_config_rule_detailed_status, params)
2274
+ req.send_request(options)
2275
+ end
2276
+
2117
2277
  # Returns a list of configuration items for the specified resource. The
2118
2278
  # list contains details about each state of the resource during the
2119
2279
  # specified time interval. If you specified a retention period to retain
@@ -2789,6 +2949,59 @@ module Aws::ConfigService
2789
2949
  req.send_request(options)
2790
2950
  end
2791
2951
 
2952
+ # @option params [required, String] :organization_config_rule_name
2953
+ #
2954
+ # @option params [Types::OrganizationManagedRuleMetadata] :organization_managed_rule_metadata
2955
+ #
2956
+ # @option params [Types::OrganizationCustomRuleMetadata] :organization_custom_rule_metadata
2957
+ #
2958
+ # @option params [Array<String>] :excluded_accounts
2959
+ #
2960
+ # @return [Types::PutOrganizationConfigRuleResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2961
+ #
2962
+ # * {Types::PutOrganizationConfigRuleResponse#organization_config_rule_arn #organization_config_rule_arn} => String
2963
+ #
2964
+ # @example Request syntax with placeholder values
2965
+ #
2966
+ # resp = client.put_organization_config_rule({
2967
+ # organization_config_rule_name: "StringWithCharLimit64", # required
2968
+ # organization_managed_rule_metadata: {
2969
+ # description: "StringWithCharLimit256Min0",
2970
+ # rule_identifier: "StringWithCharLimit256", # required
2971
+ # input_parameters: "StringWithCharLimit2048",
2972
+ # maximum_execution_frequency: "One_Hour", # accepts One_Hour, Three_Hours, Six_Hours, Twelve_Hours, TwentyFour_Hours
2973
+ # resource_types_scope: ["StringWithCharLimit256"],
2974
+ # resource_id_scope: "StringWithCharLimit768",
2975
+ # tag_key_scope: "StringWithCharLimit128",
2976
+ # tag_value_scope: "StringWithCharLimit256",
2977
+ # },
2978
+ # organization_custom_rule_metadata: {
2979
+ # description: "StringWithCharLimit256Min0",
2980
+ # lambda_function_arn: "StringWithCharLimit256", # required
2981
+ # organization_config_rule_trigger_types: ["ConfigurationItemChangeNotification"], # required, accepts ConfigurationItemChangeNotification, OversizedConfigurationItemChangeNotification, ScheduledNotification
2982
+ # input_parameters: "StringWithCharLimit2048",
2983
+ # maximum_execution_frequency: "One_Hour", # accepts One_Hour, Three_Hours, Six_Hours, Twelve_Hours, TwentyFour_Hours
2984
+ # resource_types_scope: ["StringWithCharLimit256"],
2985
+ # resource_id_scope: "StringWithCharLimit768",
2986
+ # tag_key_scope: "StringWithCharLimit128",
2987
+ # tag_value_scope: "StringWithCharLimit256",
2988
+ # },
2989
+ # excluded_accounts: ["AccountId"],
2990
+ # })
2991
+ #
2992
+ # @example Response structure
2993
+ #
2994
+ # resp.organization_config_rule_arn #=> String
2995
+ #
2996
+ # @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/PutOrganizationConfigRule AWS API Documentation
2997
+ #
2998
+ # @overload put_organization_config_rule(params = {})
2999
+ # @param [Hash] params ({})
3000
+ def put_organization_config_rule(params = {}, options = {})
3001
+ req = build_request(:put_organization_config_rule, params)
3002
+ req.send_request(options)
3003
+ end
3004
+
2792
3005
  # Adds or updates the remediation configuration with a specific AWS
2793
3006
  # Config rule with the selected target or action. The API creates the
2794
3007
  # `RemediationConfiguration` object for the AWS Config rule. The AWS
@@ -3183,7 +3396,7 @@ module Aws::ConfigService
3183
3396
  params: params,
3184
3397
  config: config)
3185
3398
  context[:gem_name] = 'aws-sdk-configservice'
3186
- context[:gem_version] = '1.32.0'
3399
+ context[:gem_version] = '1.33.0'
3187
3400
  Seahorse::Client::Request.new(handlers, context)
3188
3401
  end
3189
3402
 
@@ -87,6 +87,7 @@ module Aws::ConfigService
87
87
  ConfigurationRecorderStatus = Shapes::StructureShape.new(name: 'ConfigurationRecorderStatus')
88
88
  ConfigurationRecorderStatusList = Shapes::ListShape.new(name: 'ConfigurationRecorderStatusList')
89
89
  ConfigurationStateId = Shapes::StringShape.new(name: 'ConfigurationStateId')
90
+ CosmosPageLimit = Shapes::IntegerShape.new(name: 'CosmosPageLimit')
90
91
  Date = Shapes::TimestampShape.new(name: 'Date')
91
92
  DeleteAggregationAuthorizationRequest = Shapes::StructureShape.new(name: 'DeleteAggregationAuthorizationRequest')
92
93
  DeleteConfigRuleRequest = Shapes::StructureShape.new(name: 'DeleteConfigRuleRequest')
@@ -95,6 +96,7 @@ module Aws::ConfigService
95
96
  DeleteDeliveryChannelRequest = Shapes::StructureShape.new(name: 'DeleteDeliveryChannelRequest')
96
97
  DeleteEvaluationResultsRequest = Shapes::StructureShape.new(name: 'DeleteEvaluationResultsRequest')
97
98
  DeleteEvaluationResultsResponse = Shapes::StructureShape.new(name: 'DeleteEvaluationResultsResponse')
99
+ DeleteOrganizationConfigRuleRequest = Shapes::StructureShape.new(name: 'DeleteOrganizationConfigRuleRequest')
98
100
  DeletePendingAggregationRequestRequest = Shapes::StructureShape.new(name: 'DeletePendingAggregationRequestRequest')
99
101
  DeleteRemediationConfigurationRequest = Shapes::StructureShape.new(name: 'DeleteRemediationConfigurationRequest')
100
102
  DeleteRemediationConfigurationResponse = Shapes::StructureShape.new(name: 'DeleteRemediationConfigurationResponse')
@@ -131,6 +133,10 @@ module Aws::ConfigService
131
133
  DescribeDeliveryChannelStatusResponse = Shapes::StructureShape.new(name: 'DescribeDeliveryChannelStatusResponse')
132
134
  DescribeDeliveryChannelsRequest = Shapes::StructureShape.new(name: 'DescribeDeliveryChannelsRequest')
133
135
  DescribeDeliveryChannelsResponse = Shapes::StructureShape.new(name: 'DescribeDeliveryChannelsResponse')
136
+ DescribeOrganizationConfigRuleStatusesRequest = Shapes::StructureShape.new(name: 'DescribeOrganizationConfigRuleStatusesRequest')
137
+ DescribeOrganizationConfigRuleStatusesResponse = Shapes::StructureShape.new(name: 'DescribeOrganizationConfigRuleStatusesResponse')
138
+ DescribeOrganizationConfigRulesRequest = Shapes::StructureShape.new(name: 'DescribeOrganizationConfigRulesRequest')
139
+ DescribeOrganizationConfigRulesResponse = Shapes::StructureShape.new(name: 'DescribeOrganizationConfigRulesResponse')
134
140
  DescribePendingAggregationRequestsLimit = Shapes::IntegerShape.new(name: 'DescribePendingAggregationRequestsLimit')
135
141
  DescribePendingAggregationRequestsRequest = Shapes::StructureShape.new(name: 'DescribePendingAggregationRequestsRequest')
136
142
  DescribePendingAggregationRequestsResponse = Shapes::StructureShape.new(name: 'DescribePendingAggregationRequestsResponse')
@@ -150,6 +156,7 @@ module Aws::ConfigService
150
156
  EvaluationResults = Shapes::ListShape.new(name: 'EvaluationResults')
151
157
  Evaluations = Shapes::ListShape.new(name: 'Evaluations')
152
158
  EventSource = Shapes::StringShape.new(name: 'EventSource')
159
+ ExcludedAccounts = Shapes::ListShape.new(name: 'ExcludedAccounts')
153
160
  Expression = Shapes::StringShape.new(name: 'Expression')
154
161
  FailedRemediationBatch = Shapes::StructureShape.new(name: 'FailedRemediationBatch')
155
162
  FailedRemediationBatches = Shapes::ListShape.new(name: 'FailedRemediationBatches')
@@ -173,6 +180,8 @@ module Aws::ConfigService
173
180
  GetComplianceSummaryByResourceTypeResponse = Shapes::StructureShape.new(name: 'GetComplianceSummaryByResourceTypeResponse')
174
181
  GetDiscoveredResourceCountsRequest = Shapes::StructureShape.new(name: 'GetDiscoveredResourceCountsRequest')
175
182
  GetDiscoveredResourceCountsResponse = Shapes::StructureShape.new(name: 'GetDiscoveredResourceCountsResponse')
183
+ GetOrganizationConfigRuleDetailedStatusRequest = Shapes::StructureShape.new(name: 'GetOrganizationConfigRuleDetailedStatusRequest')
184
+ GetOrganizationConfigRuleDetailedStatusResponse = Shapes::StructureShape.new(name: 'GetOrganizationConfigRuleDetailedStatusResponse')
176
185
  GetResourceConfigHistoryRequest = Shapes::StructureShape.new(name: 'GetResourceConfigHistoryRequest')
177
186
  GetResourceConfigHistoryResponse = Shapes::StructureShape.new(name: 'GetResourceConfigHistoryResponse')
178
187
  GroupByAPILimit = Shapes::IntegerShape.new(name: 'GroupByAPILimit')
@@ -208,8 +217,11 @@ module Aws::ConfigService
208
217
  MaxNumberOfConfigRulesExceededException = Shapes::StructureShape.new(name: 'MaxNumberOfConfigRulesExceededException')
209
218
  MaxNumberOfConfigurationRecordersExceededException = Shapes::StructureShape.new(name: 'MaxNumberOfConfigurationRecordersExceededException')
210
219
  MaxNumberOfDeliveryChannelsExceededException = Shapes::StructureShape.new(name: 'MaxNumberOfDeliveryChannelsExceededException')
220
+ MaxNumberOfOrganizationConfigRulesExceededException = Shapes::StructureShape.new(name: 'MaxNumberOfOrganizationConfigRulesExceededException')
211
221
  MaxNumberOfRetentionConfigurationsExceededException = Shapes::StructureShape.new(name: 'MaxNumberOfRetentionConfigurationsExceededException')
212
222
  MaximumExecutionFrequency = Shapes::StringShape.new(name: 'MaximumExecutionFrequency')
223
+ MemberAccountRuleStatus = Shapes::StringShape.new(name: 'MemberAccountRuleStatus')
224
+ MemberAccountStatus = Shapes::StructureShape.new(name: 'MemberAccountStatus')
213
225
  MessageType = Shapes::StringShape.new(name: 'MessageType')
214
226
  Name = Shapes::StringShape.new(name: 'Name')
215
227
  NextToken = Shapes::StringShape.new(name: 'NextToken')
@@ -222,12 +234,24 @@ module Aws::ConfigService
222
234
  NoSuchConfigurationAggregatorException = Shapes::StructureShape.new(name: 'NoSuchConfigurationAggregatorException')
223
235
  NoSuchConfigurationRecorderException = Shapes::StructureShape.new(name: 'NoSuchConfigurationRecorderException')
224
236
  NoSuchDeliveryChannelException = Shapes::StructureShape.new(name: 'NoSuchDeliveryChannelException')
237
+ NoSuchOrganizationConfigRuleException = Shapes::StructureShape.new(name: 'NoSuchOrganizationConfigRuleException')
225
238
  NoSuchRemediationConfigurationException = Shapes::StructureShape.new(name: 'NoSuchRemediationConfigurationException')
226
239
  NoSuchRetentionConfigurationException = Shapes::StructureShape.new(name: 'NoSuchRetentionConfigurationException')
227
240
  OrderingTimestamp = Shapes::TimestampShape.new(name: 'OrderingTimestamp')
228
241
  OrganizationAccessDeniedException = Shapes::StructureShape.new(name: 'OrganizationAccessDeniedException')
229
242
  OrganizationAggregationSource = Shapes::StructureShape.new(name: 'OrganizationAggregationSource')
230
243
  OrganizationAllFeaturesNotEnabledException = Shapes::StructureShape.new(name: 'OrganizationAllFeaturesNotEnabledException')
244
+ OrganizationConfigRule = Shapes::StructureShape.new(name: 'OrganizationConfigRule')
245
+ OrganizationConfigRuleDetailedStatus = Shapes::ListShape.new(name: 'OrganizationConfigRuleDetailedStatus')
246
+ OrganizationConfigRuleNames = Shapes::ListShape.new(name: 'OrganizationConfigRuleNames')
247
+ OrganizationConfigRuleStatus = Shapes::StructureShape.new(name: 'OrganizationConfigRuleStatus')
248
+ OrganizationConfigRuleStatuses = Shapes::ListShape.new(name: 'OrganizationConfigRuleStatuses')
249
+ OrganizationConfigRuleTriggerType = Shapes::StringShape.new(name: 'OrganizationConfigRuleTriggerType')
250
+ OrganizationConfigRuleTriggerTypes = Shapes::ListShape.new(name: 'OrganizationConfigRuleTriggerTypes')
251
+ OrganizationConfigRules = Shapes::ListShape.new(name: 'OrganizationConfigRules')
252
+ OrganizationCustomRuleMetadata = Shapes::StructureShape.new(name: 'OrganizationCustomRuleMetadata')
253
+ OrganizationManagedRuleMetadata = Shapes::StructureShape.new(name: 'OrganizationManagedRuleMetadata')
254
+ OrganizationRuleStatus = Shapes::StringShape.new(name: 'OrganizationRuleStatus')
231
255
  OversizedConfigurationItemException = Shapes::StructureShape.new(name: 'OversizedConfigurationItemException')
232
256
  Owner = Shapes::StringShape.new(name: 'Owner')
233
257
  PendingAggregationRequest = Shapes::StructureShape.new(name: 'PendingAggregationRequest')
@@ -241,6 +265,8 @@ module Aws::ConfigService
241
265
  PutDeliveryChannelRequest = Shapes::StructureShape.new(name: 'PutDeliveryChannelRequest')
242
266
  PutEvaluationsRequest = Shapes::StructureShape.new(name: 'PutEvaluationsRequest')
243
267
  PutEvaluationsResponse = Shapes::StructureShape.new(name: 'PutEvaluationsResponse')
268
+ PutOrganizationConfigRuleRequest = Shapes::StructureShape.new(name: 'PutOrganizationConfigRuleRequest')
269
+ PutOrganizationConfigRuleResponse = Shapes::StructureShape.new(name: 'PutOrganizationConfigRuleResponse')
244
270
  PutRemediationConfigurationsRequest = Shapes::StructureShape.new(name: 'PutRemediationConfigurationsRequest')
245
271
  PutRemediationConfigurationsResponse = Shapes::StructureShape.new(name: 'PutRemediationConfigurationsResponse')
246
272
  PutRetentionConfigurationRequest = Shapes::StructureShape.new(name: 'PutRetentionConfigurationRequest')
@@ -263,6 +289,7 @@ module Aws::ConfigService
263
289
  RemediationExecutionStep = Shapes::StructureShape.new(name: 'RemediationExecutionStep')
264
290
  RemediationExecutionStepState = Shapes::StringShape.new(name: 'RemediationExecutionStepState')
265
291
  RemediationExecutionSteps = Shapes::ListShape.new(name: 'RemediationExecutionSteps')
292
+ RemediationInProgressException = Shapes::StructureShape.new(name: 'RemediationInProgressException')
266
293
  RemediationParameterValue = Shapes::StructureShape.new(name: 'RemediationParameterValue')
267
294
  RemediationParameters = Shapes::MapShape.new(name: 'RemediationParameters')
268
295
  RemediationTargetType = Shapes::StringShape.new(name: 'RemediationTargetType')
@@ -287,6 +314,7 @@ module Aws::ConfigService
287
314
  ResourceType = Shapes::StringShape.new(name: 'ResourceType')
288
315
  ResourceTypeList = Shapes::ListShape.new(name: 'ResourceTypeList')
289
316
  ResourceTypes = Shapes::ListShape.new(name: 'ResourceTypes')
317
+ ResourceTypesScope = Shapes::ListShape.new(name: 'ResourceTypesScope')
290
318
  ResourceValue = Shapes::StructureShape.new(name: 'ResourceValue')
291
319
  ResourceValueType = Shapes::StringShape.new(name: 'ResourceValueType')
292
320
  Results = Shapes::ListShape.new(name: 'Results')
@@ -309,12 +337,16 @@ module Aws::ConfigService
309
337
  StartRemediationExecutionResponse = Shapes::StructureShape.new(name: 'StartRemediationExecutionResponse')
310
338
  StaticParameterValues = Shapes::ListShape.new(name: 'StaticParameterValues')
311
339
  StaticValue = Shapes::StructureShape.new(name: 'StaticValue')
340
+ StatusDetailFilters = Shapes::StructureShape.new(name: 'StatusDetailFilters')
312
341
  StopConfigurationRecorderRequest = Shapes::StructureShape.new(name: 'StopConfigurationRecorderRequest')
313
342
  String = Shapes::StringShape.new(name: 'String')
314
343
  StringWithCharLimit1024 = Shapes::StringShape.new(name: 'StringWithCharLimit1024')
315
344
  StringWithCharLimit128 = Shapes::StringShape.new(name: 'StringWithCharLimit128')
345
+ StringWithCharLimit2048 = Shapes::StringShape.new(name: 'StringWithCharLimit2048')
316
346
  StringWithCharLimit256 = Shapes::StringShape.new(name: 'StringWithCharLimit256')
347
+ StringWithCharLimit256Min0 = Shapes::StringShape.new(name: 'StringWithCharLimit256Min0')
317
348
  StringWithCharLimit64 = Shapes::StringShape.new(name: 'StringWithCharLimit64')
349
+ StringWithCharLimit768 = Shapes::StringShape.new(name: 'StringWithCharLimit768')
318
350
  SupplementaryConfiguration = Shapes::MapShape.new(name: 'SupplementaryConfiguration')
319
351
  SupplementaryConfigurationName = Shapes::StringShape.new(name: 'SupplementaryConfigurationName')
320
352
  SupplementaryConfigurationValue = Shapes::StringShape.new(name: 'SupplementaryConfigurationValue')
@@ -600,6 +632,9 @@ module Aws::ConfigService
600
632
 
601
633
  DeleteEvaluationResultsResponse.struct_class = Types::DeleteEvaluationResultsResponse
602
634
 
635
+ DeleteOrganizationConfigRuleRequest.add_member(:organization_config_rule_name, Shapes::ShapeRef.new(shape: StringWithCharLimit64, required: true, location_name: "OrganizationConfigRuleName"))
636
+ DeleteOrganizationConfigRuleRequest.struct_class = Types::DeleteOrganizationConfigRuleRequest
637
+
603
638
  DeletePendingAggregationRequestRequest.add_member(:requester_account_id, Shapes::ShapeRef.new(shape: AccountId, required: true, location_name: "RequesterAccountId"))
604
639
  DeletePendingAggregationRequestRequest.add_member(:requester_aws_region, Shapes::ShapeRef.new(shape: AwsRegion, required: true, location_name: "RequesterAwsRegion"))
605
640
  DeletePendingAggregationRequestRequest.struct_class = Types::DeletePendingAggregationRequestRequest
@@ -736,6 +771,24 @@ module Aws::ConfigService
736
771
  DescribeDeliveryChannelsResponse.add_member(:delivery_channels, Shapes::ShapeRef.new(shape: DeliveryChannelList, location_name: "DeliveryChannels"))
737
772
  DescribeDeliveryChannelsResponse.struct_class = Types::DescribeDeliveryChannelsResponse
738
773
 
774
+ DescribeOrganizationConfigRuleStatusesRequest.add_member(:organization_config_rule_names, Shapes::ShapeRef.new(shape: OrganizationConfigRuleNames, location_name: "OrganizationConfigRuleNames"))
775
+ DescribeOrganizationConfigRuleStatusesRequest.add_member(:limit, Shapes::ShapeRef.new(shape: CosmosPageLimit, location_name: "Limit"))
776
+ DescribeOrganizationConfigRuleStatusesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
777
+ DescribeOrganizationConfigRuleStatusesRequest.struct_class = Types::DescribeOrganizationConfigRuleStatusesRequest
778
+
779
+ DescribeOrganizationConfigRuleStatusesResponse.add_member(:organization_config_rule_statuses, Shapes::ShapeRef.new(shape: OrganizationConfigRuleStatuses, location_name: "OrganizationConfigRuleStatuses"))
780
+ DescribeOrganizationConfigRuleStatusesResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
781
+ DescribeOrganizationConfigRuleStatusesResponse.struct_class = Types::DescribeOrganizationConfigRuleStatusesResponse
782
+
783
+ DescribeOrganizationConfigRulesRequest.add_member(:organization_config_rule_names, Shapes::ShapeRef.new(shape: OrganizationConfigRuleNames, location_name: "OrganizationConfigRuleNames"))
784
+ DescribeOrganizationConfigRulesRequest.add_member(:limit, Shapes::ShapeRef.new(shape: CosmosPageLimit, location_name: "Limit"))
785
+ DescribeOrganizationConfigRulesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
786
+ DescribeOrganizationConfigRulesRequest.struct_class = Types::DescribeOrganizationConfigRulesRequest
787
+
788
+ DescribeOrganizationConfigRulesResponse.add_member(:organization_config_rules, Shapes::ShapeRef.new(shape: OrganizationConfigRules, location_name: "OrganizationConfigRules"))
789
+ DescribeOrganizationConfigRulesResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
790
+ DescribeOrganizationConfigRulesResponse.struct_class = Types::DescribeOrganizationConfigRulesResponse
791
+
739
792
  DescribePendingAggregationRequestsRequest.add_member(:limit, Shapes::ShapeRef.new(shape: DescribePendingAggregationRequestsLimit, location_name: "Limit"))
740
793
  DescribePendingAggregationRequestsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
741
794
  DescribePendingAggregationRequestsRequest.struct_class = Types::DescribePendingAggregationRequestsRequest
@@ -798,6 +851,8 @@ module Aws::ConfigService
798
851
 
799
852
  Evaluations.member = Shapes::ShapeRef.new(shape: Evaluation)
800
853
 
854
+ ExcludedAccounts.member = Shapes::ShapeRef.new(shape: AccountId)
855
+
801
856
  FailedRemediationBatch.add_member(:failure_message, Shapes::ShapeRef.new(shape: String, location_name: "FailureMessage"))
802
857
  FailedRemediationBatch.add_member(:failed_items, Shapes::ShapeRef.new(shape: RemediationConfigurations, location_name: "FailedItems"))
803
858
  FailedRemediationBatch.struct_class = Types::FailedRemediationBatch
@@ -893,6 +948,16 @@ module Aws::ConfigService
893
948
  GetDiscoveredResourceCountsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
894
949
  GetDiscoveredResourceCountsResponse.struct_class = Types::GetDiscoveredResourceCountsResponse
895
950
 
951
+ GetOrganizationConfigRuleDetailedStatusRequest.add_member(:organization_config_rule_name, Shapes::ShapeRef.new(shape: StringWithCharLimit64, required: true, location_name: "OrganizationConfigRuleName"))
952
+ GetOrganizationConfigRuleDetailedStatusRequest.add_member(:filters, Shapes::ShapeRef.new(shape: StatusDetailFilters, location_name: "Filters"))
953
+ GetOrganizationConfigRuleDetailedStatusRequest.add_member(:limit, Shapes::ShapeRef.new(shape: CosmosPageLimit, location_name: "Limit"))
954
+ GetOrganizationConfigRuleDetailedStatusRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
955
+ GetOrganizationConfigRuleDetailedStatusRequest.struct_class = Types::GetOrganizationConfigRuleDetailedStatusRequest
956
+
957
+ GetOrganizationConfigRuleDetailedStatusResponse.add_member(:organization_config_rule_detailed_status, Shapes::ShapeRef.new(shape: OrganizationConfigRuleDetailedStatus, location_name: "OrganizationConfigRuleDetailedStatus"))
958
+ GetOrganizationConfigRuleDetailedStatusResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
959
+ GetOrganizationConfigRuleDetailedStatusResponse.struct_class = Types::GetOrganizationConfigRuleDetailedStatusResponse
960
+
896
961
  GetResourceConfigHistoryRequest.add_member(:resource_type, Shapes::ShapeRef.new(shape: ResourceType, required: true, location_name: "resourceType"))
897
962
  GetResourceConfigHistoryRequest.add_member(:resource_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location_name: "resourceId"))
898
963
  GetResourceConfigHistoryRequest.add_member(:later_time, Shapes::ShapeRef.new(shape: LaterTime, location_name: "laterTime"))
@@ -944,11 +1009,65 @@ module Aws::ConfigService
944
1009
  ListTagsForResourceResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
945
1010
  ListTagsForResourceResponse.struct_class = Types::ListTagsForResourceResponse
946
1011
 
1012
+ MemberAccountStatus.add_member(:account_id, Shapes::ShapeRef.new(shape: AccountId, required: true, location_name: "AccountId"))
1013
+ MemberAccountStatus.add_member(:config_rule_name, Shapes::ShapeRef.new(shape: StringWithCharLimit64, required: true, location_name: "ConfigRuleName"))
1014
+ MemberAccountStatus.add_member(:member_account_rule_status, Shapes::ShapeRef.new(shape: MemberAccountRuleStatus, required: true, location_name: "MemberAccountRuleStatus"))
1015
+ MemberAccountStatus.add_member(:error_code, Shapes::ShapeRef.new(shape: String, location_name: "ErrorCode"))
1016
+ MemberAccountStatus.add_member(:error_message, Shapes::ShapeRef.new(shape: String, location_name: "ErrorMessage"))
1017
+ MemberAccountStatus.add_member(:last_update_time, Shapes::ShapeRef.new(shape: Date, location_name: "LastUpdateTime"))
1018
+ MemberAccountStatus.struct_class = Types::MemberAccountStatus
1019
+
947
1020
  OrganizationAggregationSource.add_member(:role_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "RoleArn"))
948
1021
  OrganizationAggregationSource.add_member(:aws_regions, Shapes::ShapeRef.new(shape: AggregatorRegionList, location_name: "AwsRegions"))
949
1022
  OrganizationAggregationSource.add_member(:all_aws_regions, Shapes::ShapeRef.new(shape: Boolean, location_name: "AllAwsRegions"))
950
1023
  OrganizationAggregationSource.struct_class = Types::OrganizationAggregationSource
951
1024
 
1025
+ OrganizationConfigRule.add_member(:organization_config_rule_name, Shapes::ShapeRef.new(shape: StringWithCharLimit64, required: true, location_name: "OrganizationConfigRuleName"))
1026
+ OrganizationConfigRule.add_member(:organization_config_rule_arn, Shapes::ShapeRef.new(shape: StringWithCharLimit256, required: true, location_name: "OrganizationConfigRuleArn"))
1027
+ OrganizationConfigRule.add_member(:organization_managed_rule_metadata, Shapes::ShapeRef.new(shape: OrganizationManagedRuleMetadata, location_name: "OrganizationManagedRuleMetadata"))
1028
+ OrganizationConfigRule.add_member(:organization_custom_rule_metadata, Shapes::ShapeRef.new(shape: OrganizationCustomRuleMetadata, location_name: "OrganizationCustomRuleMetadata"))
1029
+ OrganizationConfigRule.add_member(:excluded_accounts, Shapes::ShapeRef.new(shape: ExcludedAccounts, location_name: "ExcludedAccounts"))
1030
+ OrganizationConfigRule.add_member(:last_update_time, Shapes::ShapeRef.new(shape: Date, location_name: "LastUpdateTime"))
1031
+ OrganizationConfigRule.struct_class = Types::OrganizationConfigRule
1032
+
1033
+ OrganizationConfigRuleDetailedStatus.member = Shapes::ShapeRef.new(shape: MemberAccountStatus)
1034
+
1035
+ OrganizationConfigRuleNames.member = Shapes::ShapeRef.new(shape: StringWithCharLimit64)
1036
+
1037
+ OrganizationConfigRuleStatus.add_member(:organization_config_rule_name, Shapes::ShapeRef.new(shape: StringWithCharLimit64, required: true, location_name: "OrganizationConfigRuleName"))
1038
+ OrganizationConfigRuleStatus.add_member(:organization_rule_status, Shapes::ShapeRef.new(shape: OrganizationRuleStatus, required: true, location_name: "OrganizationRuleStatus"))
1039
+ OrganizationConfigRuleStatus.add_member(:error_code, Shapes::ShapeRef.new(shape: String, location_name: "ErrorCode"))
1040
+ OrganizationConfigRuleStatus.add_member(:error_message, Shapes::ShapeRef.new(shape: String, location_name: "ErrorMessage"))
1041
+ OrganizationConfigRuleStatus.add_member(:last_update_time, Shapes::ShapeRef.new(shape: Date, location_name: "LastUpdateTime"))
1042
+ OrganizationConfigRuleStatus.struct_class = Types::OrganizationConfigRuleStatus
1043
+
1044
+ OrganizationConfigRuleStatuses.member = Shapes::ShapeRef.new(shape: OrganizationConfigRuleStatus)
1045
+
1046
+ OrganizationConfigRuleTriggerTypes.member = Shapes::ShapeRef.new(shape: OrganizationConfigRuleTriggerType)
1047
+
1048
+ OrganizationConfigRules.member = Shapes::ShapeRef.new(shape: OrganizationConfigRule)
1049
+
1050
+ OrganizationCustomRuleMetadata.add_member(:description, Shapes::ShapeRef.new(shape: StringWithCharLimit256Min0, location_name: "Description"))
1051
+ OrganizationCustomRuleMetadata.add_member(:lambda_function_arn, Shapes::ShapeRef.new(shape: StringWithCharLimit256, required: true, location_name: "LambdaFunctionArn"))
1052
+ OrganizationCustomRuleMetadata.add_member(:organization_config_rule_trigger_types, Shapes::ShapeRef.new(shape: OrganizationConfigRuleTriggerTypes, required: true, location_name: "OrganizationConfigRuleTriggerTypes"))
1053
+ OrganizationCustomRuleMetadata.add_member(:input_parameters, Shapes::ShapeRef.new(shape: StringWithCharLimit2048, location_name: "InputParameters"))
1054
+ OrganizationCustomRuleMetadata.add_member(:maximum_execution_frequency, Shapes::ShapeRef.new(shape: MaximumExecutionFrequency, location_name: "MaximumExecutionFrequency"))
1055
+ OrganizationCustomRuleMetadata.add_member(:resource_types_scope, Shapes::ShapeRef.new(shape: ResourceTypesScope, location_name: "ResourceTypesScope"))
1056
+ OrganizationCustomRuleMetadata.add_member(:resource_id_scope, Shapes::ShapeRef.new(shape: StringWithCharLimit768, location_name: "ResourceIdScope"))
1057
+ OrganizationCustomRuleMetadata.add_member(:tag_key_scope, Shapes::ShapeRef.new(shape: StringWithCharLimit128, location_name: "TagKeyScope"))
1058
+ OrganizationCustomRuleMetadata.add_member(:tag_value_scope, Shapes::ShapeRef.new(shape: StringWithCharLimit256, location_name: "TagValueScope"))
1059
+ OrganizationCustomRuleMetadata.struct_class = Types::OrganizationCustomRuleMetadata
1060
+
1061
+ OrganizationManagedRuleMetadata.add_member(:description, Shapes::ShapeRef.new(shape: StringWithCharLimit256Min0, location_name: "Description"))
1062
+ OrganizationManagedRuleMetadata.add_member(:rule_identifier, Shapes::ShapeRef.new(shape: StringWithCharLimit256, required: true, location_name: "RuleIdentifier"))
1063
+ OrganizationManagedRuleMetadata.add_member(:input_parameters, Shapes::ShapeRef.new(shape: StringWithCharLimit2048, location_name: "InputParameters"))
1064
+ OrganizationManagedRuleMetadata.add_member(:maximum_execution_frequency, Shapes::ShapeRef.new(shape: MaximumExecutionFrequency, location_name: "MaximumExecutionFrequency"))
1065
+ OrganizationManagedRuleMetadata.add_member(:resource_types_scope, Shapes::ShapeRef.new(shape: ResourceTypesScope, location_name: "ResourceTypesScope"))
1066
+ OrganizationManagedRuleMetadata.add_member(:resource_id_scope, Shapes::ShapeRef.new(shape: StringWithCharLimit768, location_name: "ResourceIdScope"))
1067
+ OrganizationManagedRuleMetadata.add_member(:tag_key_scope, Shapes::ShapeRef.new(shape: StringWithCharLimit128, location_name: "TagKeyScope"))
1068
+ OrganizationManagedRuleMetadata.add_member(:tag_value_scope, Shapes::ShapeRef.new(shape: StringWithCharLimit256, location_name: "TagValueScope"))
1069
+ OrganizationManagedRuleMetadata.struct_class = Types::OrganizationManagedRuleMetadata
1070
+
952
1071
  PendingAggregationRequest.add_member(:requester_account_id, Shapes::ShapeRef.new(shape: AccountId, location_name: "RequesterAccountId"))
953
1072
  PendingAggregationRequest.add_member(:requester_aws_region, Shapes::ShapeRef.new(shape: AwsRegion, location_name: "RequesterAwsRegion"))
954
1073
  PendingAggregationRequest.struct_class = Types::PendingAggregationRequest
@@ -990,6 +1109,15 @@ module Aws::ConfigService
990
1109
  PutEvaluationsResponse.add_member(:failed_evaluations, Shapes::ShapeRef.new(shape: Evaluations, location_name: "FailedEvaluations"))
991
1110
  PutEvaluationsResponse.struct_class = Types::PutEvaluationsResponse
992
1111
 
1112
+ PutOrganizationConfigRuleRequest.add_member(:organization_config_rule_name, Shapes::ShapeRef.new(shape: StringWithCharLimit64, required: true, location_name: "OrganizationConfigRuleName"))
1113
+ PutOrganizationConfigRuleRequest.add_member(:organization_managed_rule_metadata, Shapes::ShapeRef.new(shape: OrganizationManagedRuleMetadata, location_name: "OrganizationManagedRuleMetadata"))
1114
+ PutOrganizationConfigRuleRequest.add_member(:organization_custom_rule_metadata, Shapes::ShapeRef.new(shape: OrganizationCustomRuleMetadata, location_name: "OrganizationCustomRuleMetadata"))
1115
+ PutOrganizationConfigRuleRequest.add_member(:excluded_accounts, Shapes::ShapeRef.new(shape: ExcludedAccounts, location_name: "ExcludedAccounts"))
1116
+ PutOrganizationConfigRuleRequest.struct_class = Types::PutOrganizationConfigRuleRequest
1117
+
1118
+ PutOrganizationConfigRuleResponse.add_member(:organization_config_rule_arn, Shapes::ShapeRef.new(shape: StringWithCharLimit256, location_name: "OrganizationConfigRuleArn"))
1119
+ PutOrganizationConfigRuleResponse.struct_class = Types::PutOrganizationConfigRuleResponse
1120
+
993
1121
  PutRemediationConfigurationsRequest.add_member(:remediation_configurations, Shapes::ShapeRef.new(shape: RemediationConfigurations, required: true, location_name: "RemediationConfigurations"))
994
1122
  PutRemediationConfigurationsRequest.struct_class = Types::PutRemediationConfigurationsRequest
995
1123
 
@@ -1096,6 +1224,8 @@ module Aws::ConfigService
1096
1224
 
1097
1225
  ResourceTypes.member = Shapes::ShapeRef.new(shape: StringWithCharLimit256)
1098
1226
 
1227
+ ResourceTypesScope.member = Shapes::ShapeRef.new(shape: StringWithCharLimit256)
1228
+
1099
1229
  ResourceValue.add_member(:value, Shapes::ShapeRef.new(shape: ResourceValueType, location_name: "Value"))
1100
1230
  ResourceValue.struct_class = Types::ResourceValue
1101
1231
 
@@ -1158,6 +1288,10 @@ module Aws::ConfigService
1158
1288
  StaticValue.add_member(:values, Shapes::ShapeRef.new(shape: StaticParameterValues, location_name: "Values"))
1159
1289
  StaticValue.struct_class = Types::StaticValue
1160
1290
 
1291
+ StatusDetailFilters.add_member(:account_id, Shapes::ShapeRef.new(shape: AccountId, location_name: "AccountId"))
1292
+ StatusDetailFilters.add_member(:member_account_rule_status, Shapes::ShapeRef.new(shape: MemberAccountRuleStatus, location_name: "MemberAccountRuleStatus"))
1293
+ StatusDetailFilters.struct_class = Types::StatusDetailFilters
1294
+
1161
1295
  StopConfigurationRecorderRequest.add_member(:configuration_recorder_name, Shapes::ShapeRef.new(shape: RecorderName, required: true, location_name: "ConfigurationRecorderName"))
1162
1296
  StopConfigurationRecorderRequest.struct_class = Types::StopConfigurationRecorderRequest
1163
1297
 
@@ -1283,6 +1417,16 @@ module Aws::ConfigService
1283
1417
  o.errors << Shapes::ShapeRef.new(shape: ResourceInUseException)
1284
1418
  end)
1285
1419
 
1420
+ api.add_operation(:delete_organization_config_rule, Seahorse::Model::Operation.new.tap do |o|
1421
+ o.name = "DeleteOrganizationConfigRule"
1422
+ o.http_method = "POST"
1423
+ o.http_request_uri = "/"
1424
+ o.input = Shapes::ShapeRef.new(shape: DeleteOrganizationConfigRuleRequest)
1425
+ o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
1426
+ o.errors << Shapes::ShapeRef.new(shape: NoSuchOrganizationConfigRuleException)
1427
+ o.errors << Shapes::ShapeRef.new(shape: ResourceInUseException)
1428
+ end)
1429
+
1286
1430
  api.add_operation(:delete_pending_aggregation_request, Seahorse::Model::Operation.new.tap do |o|
1287
1431
  o.name = "DeletePendingAggregationRequest"
1288
1432
  o.http_method = "POST"
@@ -1299,6 +1443,7 @@ module Aws::ConfigService
1299
1443
  o.input = Shapes::ShapeRef.new(shape: DeleteRemediationConfigurationRequest)
1300
1444
  o.output = Shapes::ShapeRef.new(shape: DeleteRemediationConfigurationResponse)
1301
1445
  o.errors << Shapes::ShapeRef.new(shape: NoSuchRemediationConfigurationException)
1446
+ o.errors << Shapes::ShapeRef.new(shape: RemediationInProgressException)
1302
1447
  end)
1303
1448
 
1304
1449
  api.add_operation(:delete_retention_configuration, Seahorse::Model::Operation.new.tap do |o|
@@ -1447,6 +1592,28 @@ module Aws::ConfigService
1447
1592
  o.errors << Shapes::ShapeRef.new(shape: NoSuchDeliveryChannelException)
1448
1593
  end)
1449
1594
 
1595
+ api.add_operation(:describe_organization_config_rule_statuses, Seahorse::Model::Operation.new.tap do |o|
1596
+ o.name = "DescribeOrganizationConfigRuleStatuses"
1597
+ o.http_method = "POST"
1598
+ o.http_request_uri = "/"
1599
+ o.input = Shapes::ShapeRef.new(shape: DescribeOrganizationConfigRuleStatusesRequest)
1600
+ o.output = Shapes::ShapeRef.new(shape: DescribeOrganizationConfigRuleStatusesResponse)
1601
+ o.errors << Shapes::ShapeRef.new(shape: NoSuchOrganizationConfigRuleException)
1602
+ o.errors << Shapes::ShapeRef.new(shape: InvalidLimitException)
1603
+ o.errors << Shapes::ShapeRef.new(shape: InvalidNextTokenException)
1604
+ end)
1605
+
1606
+ api.add_operation(:describe_organization_config_rules, Seahorse::Model::Operation.new.tap do |o|
1607
+ o.name = "DescribeOrganizationConfigRules"
1608
+ o.http_method = "POST"
1609
+ o.http_request_uri = "/"
1610
+ o.input = Shapes::ShapeRef.new(shape: DescribeOrganizationConfigRulesRequest)
1611
+ o.output = Shapes::ShapeRef.new(shape: DescribeOrganizationConfigRulesResponse)
1612
+ o.errors << Shapes::ShapeRef.new(shape: NoSuchOrganizationConfigRuleException)
1613
+ o.errors << Shapes::ShapeRef.new(shape: InvalidNextTokenException)
1614
+ o.errors << Shapes::ShapeRef.new(shape: InvalidLimitException)
1615
+ end)
1616
+
1450
1617
  api.add_operation(:describe_pending_aggregation_requests, Seahorse::Model::Operation.new.tap do |o|
1451
1618
  o.name = "DescribePendingAggregationRequests"
1452
1619
  o.http_method = "POST"
@@ -1588,6 +1755,17 @@ module Aws::ConfigService
1588
1755
  o.errors << Shapes::ShapeRef.new(shape: InvalidNextTokenException)
1589
1756
  end)
1590
1757
 
1758
+ api.add_operation(:get_organization_config_rule_detailed_status, Seahorse::Model::Operation.new.tap do |o|
1759
+ o.name = "GetOrganizationConfigRuleDetailedStatus"
1760
+ o.http_method = "POST"
1761
+ o.http_request_uri = "/"
1762
+ o.input = Shapes::ShapeRef.new(shape: GetOrganizationConfigRuleDetailedStatusRequest)
1763
+ o.output = Shapes::ShapeRef.new(shape: GetOrganizationConfigRuleDetailedStatusResponse)
1764
+ o.errors << Shapes::ShapeRef.new(shape: NoSuchOrganizationConfigRuleException)
1765
+ o.errors << Shapes::ShapeRef.new(shape: InvalidLimitException)
1766
+ o.errors << Shapes::ShapeRef.new(shape: InvalidNextTokenException)
1767
+ end)
1768
+
1591
1769
  api.add_operation(:get_resource_config_history, Seahorse::Model::Operation.new.tap do |o|
1592
1770
  o.name = "GetResourceConfigHistory"
1593
1771
  o.http_method = "POST"
@@ -1718,6 +1896,22 @@ module Aws::ConfigService
1718
1896
  o.errors << Shapes::ShapeRef.new(shape: NoSuchConfigRuleException)
1719
1897
  end)
1720
1898
 
1899
+ api.add_operation(:put_organization_config_rule, Seahorse::Model::Operation.new.tap do |o|
1900
+ o.name = "PutOrganizationConfigRule"
1901
+ o.http_method = "POST"
1902
+ o.http_request_uri = "/"
1903
+ o.input = Shapes::ShapeRef.new(shape: PutOrganizationConfigRuleRequest)
1904
+ o.output = Shapes::ShapeRef.new(shape: PutOrganizationConfigRuleResponse)
1905
+ o.errors << Shapes::ShapeRef.new(shape: MaxNumberOfOrganizationConfigRulesExceededException)
1906
+ o.errors << Shapes::ShapeRef.new(shape: ResourceInUseException)
1907
+ o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
1908
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1909
+ o.errors << Shapes::ShapeRef.new(shape: OrganizationAccessDeniedException)
1910
+ o.errors << Shapes::ShapeRef.new(shape: NoAvailableOrganizationException)
1911
+ o.errors << Shapes::ShapeRef.new(shape: OrganizationAllFeaturesNotEnabledException)
1912
+ o.errors << Shapes::ShapeRef.new(shape: InsufficientPermissionsException)
1913
+ end)
1914
+
1721
1915
  api.add_operation(:put_remediation_configurations, Seahorse::Model::Operation.new.tap do |o|
1722
1916
  o.name = "PutRemediationConfigurations"
1723
1917
  o.http_method = "POST"
@@ -1409,6 +1409,23 @@ module Aws::ConfigService
1409
1409
  #
1410
1410
  class DeleteEvaluationResultsResponse < Aws::EmptyStructure; end
1411
1411
 
1412
+ # @note When making an API call, you may pass DeleteOrganizationConfigRuleRequest
1413
+ # data as a hash:
1414
+ #
1415
+ # {
1416
+ # organization_config_rule_name: "StringWithCharLimit64", # required
1417
+ # }
1418
+ #
1419
+ # @!attribute [rw] organization_config_rule_name
1420
+ # @return [String]
1421
+ #
1422
+ # @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DeleteOrganizationConfigRuleRequest AWS API Documentation
1423
+ #
1424
+ class DeleteOrganizationConfigRuleRequest < Struct.new(
1425
+ :organization_config_rule_name)
1426
+ include Aws::Structure
1427
+ end
1428
+
1412
1429
  # @note When making an API call, you may pass DeletePendingAggregationRequestRequest
1413
1430
  # data as a hash:
1414
1431
  #
@@ -2201,6 +2218,88 @@ module Aws::ConfigService
2201
2218
  include Aws::Structure
2202
2219
  end
2203
2220
 
2221
+ # @note When making an API call, you may pass DescribeOrganizationConfigRuleStatusesRequest
2222
+ # data as a hash:
2223
+ #
2224
+ # {
2225
+ # organization_config_rule_names: ["StringWithCharLimit64"],
2226
+ # limit: 1,
2227
+ # next_token: "String",
2228
+ # }
2229
+ #
2230
+ # @!attribute [rw] organization_config_rule_names
2231
+ # @return [Array<String>]
2232
+ #
2233
+ # @!attribute [rw] limit
2234
+ # @return [Integer]
2235
+ #
2236
+ # @!attribute [rw] next_token
2237
+ # @return [String]
2238
+ #
2239
+ # @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DescribeOrganizationConfigRuleStatusesRequest AWS API Documentation
2240
+ #
2241
+ class DescribeOrganizationConfigRuleStatusesRequest < Struct.new(
2242
+ :organization_config_rule_names,
2243
+ :limit,
2244
+ :next_token)
2245
+ include Aws::Structure
2246
+ end
2247
+
2248
+ # @!attribute [rw] organization_config_rule_statuses
2249
+ # @return [Array<Types::OrganizationConfigRuleStatus>]
2250
+ #
2251
+ # @!attribute [rw] next_token
2252
+ # @return [String]
2253
+ #
2254
+ # @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DescribeOrganizationConfigRuleStatusesResponse AWS API Documentation
2255
+ #
2256
+ class DescribeOrganizationConfigRuleStatusesResponse < Struct.new(
2257
+ :organization_config_rule_statuses,
2258
+ :next_token)
2259
+ include Aws::Structure
2260
+ end
2261
+
2262
+ # @note When making an API call, you may pass DescribeOrganizationConfigRulesRequest
2263
+ # data as a hash:
2264
+ #
2265
+ # {
2266
+ # organization_config_rule_names: ["StringWithCharLimit64"],
2267
+ # limit: 1,
2268
+ # next_token: "String",
2269
+ # }
2270
+ #
2271
+ # @!attribute [rw] organization_config_rule_names
2272
+ # @return [Array<String>]
2273
+ #
2274
+ # @!attribute [rw] limit
2275
+ # @return [Integer]
2276
+ #
2277
+ # @!attribute [rw] next_token
2278
+ # @return [String]
2279
+ #
2280
+ # @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DescribeOrganizationConfigRulesRequest AWS API Documentation
2281
+ #
2282
+ class DescribeOrganizationConfigRulesRequest < Struct.new(
2283
+ :organization_config_rule_names,
2284
+ :limit,
2285
+ :next_token)
2286
+ include Aws::Structure
2287
+ end
2288
+
2289
+ # @!attribute [rw] organization_config_rules
2290
+ # @return [Array<Types::OrganizationConfigRule>]
2291
+ #
2292
+ # @!attribute [rw] next_token
2293
+ # @return [String]
2294
+ #
2295
+ # @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DescribeOrganizationConfigRulesResponse AWS API Documentation
2296
+ #
2297
+ class DescribeOrganizationConfigRulesResponse < Struct.new(
2298
+ :organization_config_rules,
2299
+ :next_token)
2300
+ include Aws::Structure
2301
+ end
2302
+
2204
2303
  # @note When making an API call, you may pass DescribePendingAggregationRequestsRequest
2205
2304
  # data as a hash:
2206
2305
  #
@@ -3104,6 +3203,55 @@ module Aws::ConfigService
3104
3203
  include Aws::Structure
3105
3204
  end
3106
3205
 
3206
+ # @note When making an API call, you may pass GetOrganizationConfigRuleDetailedStatusRequest
3207
+ # data as a hash:
3208
+ #
3209
+ # {
3210
+ # organization_config_rule_name: "StringWithCharLimit64", # required
3211
+ # filters: {
3212
+ # account_id: "AccountId",
3213
+ # member_account_rule_status: "CREATE_SUCCESSFUL", # accepts CREATE_SUCCESSFUL, CREATE_IN_PROGRESS, CREATE_FAILED, DELETE_SUCCESSFUL, DELETE_FAILED, DELETE_IN_PROGRESS
3214
+ # },
3215
+ # limit: 1,
3216
+ # next_token: "String",
3217
+ # }
3218
+ #
3219
+ # @!attribute [rw] organization_config_rule_name
3220
+ # @return [String]
3221
+ #
3222
+ # @!attribute [rw] filters
3223
+ # @return [Types::StatusDetailFilters]
3224
+ #
3225
+ # @!attribute [rw] limit
3226
+ # @return [Integer]
3227
+ #
3228
+ # @!attribute [rw] next_token
3229
+ # @return [String]
3230
+ #
3231
+ # @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/GetOrganizationConfigRuleDetailedStatusRequest AWS API Documentation
3232
+ #
3233
+ class GetOrganizationConfigRuleDetailedStatusRequest < Struct.new(
3234
+ :organization_config_rule_name,
3235
+ :filters,
3236
+ :limit,
3237
+ :next_token)
3238
+ include Aws::Structure
3239
+ end
3240
+
3241
+ # @!attribute [rw] organization_config_rule_detailed_status
3242
+ # @return [Array<Types::MemberAccountStatus>]
3243
+ #
3244
+ # @!attribute [rw] next_token
3245
+ # @return [String]
3246
+ #
3247
+ # @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/GetOrganizationConfigRuleDetailedStatusResponse AWS API Documentation
3248
+ #
3249
+ class GetOrganizationConfigRuleDetailedStatusResponse < Struct.new(
3250
+ :organization_config_rule_detailed_status,
3251
+ :next_token)
3252
+ include Aws::Structure
3253
+ end
3254
+
3107
3255
  # The input for the GetResourceConfigHistory action.
3108
3256
  #
3109
3257
  # @note When making an API call, you may pass GetResourceConfigHistoryRequest
@@ -3405,6 +3553,36 @@ module Aws::ConfigService
3405
3553
  include Aws::Structure
3406
3554
  end
3407
3555
 
3556
+ # @!attribute [rw] account_id
3557
+ # @return [String]
3558
+ #
3559
+ # @!attribute [rw] config_rule_name
3560
+ # @return [String]
3561
+ #
3562
+ # @!attribute [rw] member_account_rule_status
3563
+ # @return [String]
3564
+ #
3565
+ # @!attribute [rw] error_code
3566
+ # @return [String]
3567
+ #
3568
+ # @!attribute [rw] error_message
3569
+ # @return [String]
3570
+ #
3571
+ # @!attribute [rw] last_update_time
3572
+ # @return [Time]
3573
+ #
3574
+ # @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/MemberAccountStatus AWS API Documentation
3575
+ #
3576
+ class MemberAccountStatus < Struct.new(
3577
+ :account_id,
3578
+ :config_rule_name,
3579
+ :member_account_rule_status,
3580
+ :error_code,
3581
+ :error_message,
3582
+ :last_update_time)
3583
+ include Aws::Structure
3584
+ end
3585
+
3408
3586
  # This object contains regions to set up the aggregator and an IAM role
3409
3587
  # to retrieve organization details.
3410
3588
  #
@@ -3439,6 +3617,171 @@ module Aws::ConfigService
3439
3617
  include Aws::Structure
3440
3618
  end
3441
3619
 
3620
+ # @!attribute [rw] organization_config_rule_name
3621
+ # @return [String]
3622
+ #
3623
+ # @!attribute [rw] organization_config_rule_arn
3624
+ # @return [String]
3625
+ #
3626
+ # @!attribute [rw] organization_managed_rule_metadata
3627
+ # @return [Types::OrganizationManagedRuleMetadata]
3628
+ #
3629
+ # @!attribute [rw] organization_custom_rule_metadata
3630
+ # @return [Types::OrganizationCustomRuleMetadata]
3631
+ #
3632
+ # @!attribute [rw] excluded_accounts
3633
+ # @return [Array<String>]
3634
+ #
3635
+ # @!attribute [rw] last_update_time
3636
+ # @return [Time]
3637
+ #
3638
+ # @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/OrganizationConfigRule AWS API Documentation
3639
+ #
3640
+ class OrganizationConfigRule < Struct.new(
3641
+ :organization_config_rule_name,
3642
+ :organization_config_rule_arn,
3643
+ :organization_managed_rule_metadata,
3644
+ :organization_custom_rule_metadata,
3645
+ :excluded_accounts,
3646
+ :last_update_time)
3647
+ include Aws::Structure
3648
+ end
3649
+
3650
+ # @!attribute [rw] organization_config_rule_name
3651
+ # @return [String]
3652
+ #
3653
+ # @!attribute [rw] organization_rule_status
3654
+ # @return [String]
3655
+ #
3656
+ # @!attribute [rw] error_code
3657
+ # @return [String]
3658
+ #
3659
+ # @!attribute [rw] error_message
3660
+ # @return [String]
3661
+ #
3662
+ # @!attribute [rw] last_update_time
3663
+ # @return [Time]
3664
+ #
3665
+ # @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/OrganizationConfigRuleStatus AWS API Documentation
3666
+ #
3667
+ class OrganizationConfigRuleStatus < Struct.new(
3668
+ :organization_config_rule_name,
3669
+ :organization_rule_status,
3670
+ :error_code,
3671
+ :error_message,
3672
+ :last_update_time)
3673
+ include Aws::Structure
3674
+ end
3675
+
3676
+ # @note When making an API call, you may pass OrganizationCustomRuleMetadata
3677
+ # data as a hash:
3678
+ #
3679
+ # {
3680
+ # description: "StringWithCharLimit256Min0",
3681
+ # lambda_function_arn: "StringWithCharLimit256", # required
3682
+ # organization_config_rule_trigger_types: ["ConfigurationItemChangeNotification"], # required, accepts ConfigurationItemChangeNotification, OversizedConfigurationItemChangeNotification, ScheduledNotification
3683
+ # input_parameters: "StringWithCharLimit2048",
3684
+ # maximum_execution_frequency: "One_Hour", # accepts One_Hour, Three_Hours, Six_Hours, Twelve_Hours, TwentyFour_Hours
3685
+ # resource_types_scope: ["StringWithCharLimit256"],
3686
+ # resource_id_scope: "StringWithCharLimit768",
3687
+ # tag_key_scope: "StringWithCharLimit128",
3688
+ # tag_value_scope: "StringWithCharLimit256",
3689
+ # }
3690
+ #
3691
+ # @!attribute [rw] description
3692
+ # @return [String]
3693
+ #
3694
+ # @!attribute [rw] lambda_function_arn
3695
+ # @return [String]
3696
+ #
3697
+ # @!attribute [rw] organization_config_rule_trigger_types
3698
+ # @return [Array<String>]
3699
+ #
3700
+ # @!attribute [rw] input_parameters
3701
+ # @return [String]
3702
+ #
3703
+ # @!attribute [rw] maximum_execution_frequency
3704
+ # @return [String]
3705
+ #
3706
+ # @!attribute [rw] resource_types_scope
3707
+ # @return [Array<String>]
3708
+ #
3709
+ # @!attribute [rw] resource_id_scope
3710
+ # @return [String]
3711
+ #
3712
+ # @!attribute [rw] tag_key_scope
3713
+ # @return [String]
3714
+ #
3715
+ # @!attribute [rw] tag_value_scope
3716
+ # @return [String]
3717
+ #
3718
+ # @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/OrganizationCustomRuleMetadata AWS API Documentation
3719
+ #
3720
+ class OrganizationCustomRuleMetadata < Struct.new(
3721
+ :description,
3722
+ :lambda_function_arn,
3723
+ :organization_config_rule_trigger_types,
3724
+ :input_parameters,
3725
+ :maximum_execution_frequency,
3726
+ :resource_types_scope,
3727
+ :resource_id_scope,
3728
+ :tag_key_scope,
3729
+ :tag_value_scope)
3730
+ include Aws::Structure
3731
+ end
3732
+
3733
+ # @note When making an API call, you may pass OrganizationManagedRuleMetadata
3734
+ # data as a hash:
3735
+ #
3736
+ # {
3737
+ # description: "StringWithCharLimit256Min0",
3738
+ # rule_identifier: "StringWithCharLimit256", # required
3739
+ # input_parameters: "StringWithCharLimit2048",
3740
+ # maximum_execution_frequency: "One_Hour", # accepts One_Hour, Three_Hours, Six_Hours, Twelve_Hours, TwentyFour_Hours
3741
+ # resource_types_scope: ["StringWithCharLimit256"],
3742
+ # resource_id_scope: "StringWithCharLimit768",
3743
+ # tag_key_scope: "StringWithCharLimit128",
3744
+ # tag_value_scope: "StringWithCharLimit256",
3745
+ # }
3746
+ #
3747
+ # @!attribute [rw] description
3748
+ # @return [String]
3749
+ #
3750
+ # @!attribute [rw] rule_identifier
3751
+ # @return [String]
3752
+ #
3753
+ # @!attribute [rw] input_parameters
3754
+ # @return [String]
3755
+ #
3756
+ # @!attribute [rw] maximum_execution_frequency
3757
+ # @return [String]
3758
+ #
3759
+ # @!attribute [rw] resource_types_scope
3760
+ # @return [Array<String>]
3761
+ #
3762
+ # @!attribute [rw] resource_id_scope
3763
+ # @return [String]
3764
+ #
3765
+ # @!attribute [rw] tag_key_scope
3766
+ # @return [String]
3767
+ #
3768
+ # @!attribute [rw] tag_value_scope
3769
+ # @return [String]
3770
+ #
3771
+ # @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/OrganizationManagedRuleMetadata AWS API Documentation
3772
+ #
3773
+ class OrganizationManagedRuleMetadata < Struct.new(
3774
+ :description,
3775
+ :rule_identifier,
3776
+ :input_parameters,
3777
+ :maximum_execution_frequency,
3778
+ :resource_types_scope,
3779
+ :resource_id_scope,
3780
+ :tag_key_scope,
3781
+ :tag_value_scope)
3782
+ include Aws::Structure
3783
+ end
3784
+
3442
3785
  # An object that represents the account ID and region of an aggregator
3443
3786
  # account that is requesting authorization but is not yet authorized.
3444
3787
  #
@@ -3739,6 +4082,67 @@ module Aws::ConfigService
3739
4082
  include Aws::Structure
3740
4083
  end
3741
4084
 
4085
+ # @note When making an API call, you may pass PutOrganizationConfigRuleRequest
4086
+ # data as a hash:
4087
+ #
4088
+ # {
4089
+ # organization_config_rule_name: "StringWithCharLimit64", # required
4090
+ # organization_managed_rule_metadata: {
4091
+ # description: "StringWithCharLimit256Min0",
4092
+ # rule_identifier: "StringWithCharLimit256", # required
4093
+ # input_parameters: "StringWithCharLimit2048",
4094
+ # maximum_execution_frequency: "One_Hour", # accepts One_Hour, Three_Hours, Six_Hours, Twelve_Hours, TwentyFour_Hours
4095
+ # resource_types_scope: ["StringWithCharLimit256"],
4096
+ # resource_id_scope: "StringWithCharLimit768",
4097
+ # tag_key_scope: "StringWithCharLimit128",
4098
+ # tag_value_scope: "StringWithCharLimit256",
4099
+ # },
4100
+ # organization_custom_rule_metadata: {
4101
+ # description: "StringWithCharLimit256Min0",
4102
+ # lambda_function_arn: "StringWithCharLimit256", # required
4103
+ # organization_config_rule_trigger_types: ["ConfigurationItemChangeNotification"], # required, accepts ConfigurationItemChangeNotification, OversizedConfigurationItemChangeNotification, ScheduledNotification
4104
+ # input_parameters: "StringWithCharLimit2048",
4105
+ # maximum_execution_frequency: "One_Hour", # accepts One_Hour, Three_Hours, Six_Hours, Twelve_Hours, TwentyFour_Hours
4106
+ # resource_types_scope: ["StringWithCharLimit256"],
4107
+ # resource_id_scope: "StringWithCharLimit768",
4108
+ # tag_key_scope: "StringWithCharLimit128",
4109
+ # tag_value_scope: "StringWithCharLimit256",
4110
+ # },
4111
+ # excluded_accounts: ["AccountId"],
4112
+ # }
4113
+ #
4114
+ # @!attribute [rw] organization_config_rule_name
4115
+ # @return [String]
4116
+ #
4117
+ # @!attribute [rw] organization_managed_rule_metadata
4118
+ # @return [Types::OrganizationManagedRuleMetadata]
4119
+ #
4120
+ # @!attribute [rw] organization_custom_rule_metadata
4121
+ # @return [Types::OrganizationCustomRuleMetadata]
4122
+ #
4123
+ # @!attribute [rw] excluded_accounts
4124
+ # @return [Array<String>]
4125
+ #
4126
+ # @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/PutOrganizationConfigRuleRequest AWS API Documentation
4127
+ #
4128
+ class PutOrganizationConfigRuleRequest < Struct.new(
4129
+ :organization_config_rule_name,
4130
+ :organization_managed_rule_metadata,
4131
+ :organization_custom_rule_metadata,
4132
+ :excluded_accounts)
4133
+ include Aws::Structure
4134
+ end
4135
+
4136
+ # @!attribute [rw] organization_config_rule_arn
4137
+ # @return [String]
4138
+ #
4139
+ # @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/PutOrganizationConfigRuleResponse AWS API Documentation
4140
+ #
4141
+ class PutOrganizationConfigRuleResponse < Struct.new(
4142
+ :organization_config_rule_arn)
4143
+ include Aws::Structure
4144
+ end
4145
+
3742
4146
  # @note When making an API call, you may pass PutRemediationConfigurationsRequest
3743
4147
  # data as a hash:
3744
4148
  #
@@ -4668,6 +5072,28 @@ module Aws::ConfigService
4668
5072
  include Aws::Structure
4669
5073
  end
4670
5074
 
5075
+ # @note When making an API call, you may pass StatusDetailFilters
5076
+ # data as a hash:
5077
+ #
5078
+ # {
5079
+ # account_id: "AccountId",
5080
+ # member_account_rule_status: "CREATE_SUCCESSFUL", # accepts CREATE_SUCCESSFUL, CREATE_IN_PROGRESS, CREATE_FAILED, DELETE_SUCCESSFUL, DELETE_FAILED, DELETE_IN_PROGRESS
5081
+ # }
5082
+ #
5083
+ # @!attribute [rw] account_id
5084
+ # @return [String]
5085
+ #
5086
+ # @!attribute [rw] member_account_rule_status
5087
+ # @return [String]
5088
+ #
5089
+ # @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/StatusDetailFilters AWS API Documentation
5090
+ #
5091
+ class StatusDetailFilters < Struct.new(
5092
+ :account_id,
5093
+ :member_account_rule_status)
5094
+ include Aws::Structure
5095
+ end
5096
+
4671
5097
  # The input for the StopConfigurationRecorder action.
4672
5098
  #
4673
5099
  # @note When making an API call, you may pass StopConfigurationRecorderRequest
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.32.0
4
+ version: 1.33.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: 2019-07-01 00:00:00.000000000 Z
11
+ date: 2019-07-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core