aws-sdk-configservice 1.38.0 → 1.39.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.
@@ -1280,6 +1280,296 @@ module Aws::ConfigService
1280
1280
  include Aws::Structure
1281
1281
  end
1282
1282
 
1283
+ # Filters the conformance pack by compliance types and AWS Config rule
1284
+ # names.
1285
+ #
1286
+ # @note When making an API call, you may pass ConformancePackComplianceFilters
1287
+ # data as a hash:
1288
+ #
1289
+ # {
1290
+ # config_rule_names: ["StringWithCharLimit64"],
1291
+ # compliance_type: "COMPLIANT", # accepts COMPLIANT, NON_COMPLIANT
1292
+ # }
1293
+ #
1294
+ # @!attribute [rw] config_rule_names
1295
+ # Filters the results by AWS Config rule names.
1296
+ # @return [Array<String>]
1297
+ #
1298
+ # @!attribute [rw] compliance_type
1299
+ # Filters the results by compliance.
1300
+ #
1301
+ # The allowed values are `COMPLIANT` and `NON_COMPLIANT`.
1302
+ # @return [String]
1303
+ #
1304
+ # @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/ConformancePackComplianceFilters AWS API Documentation
1305
+ #
1306
+ class ConformancePackComplianceFilters < Struct.new(
1307
+ :config_rule_names,
1308
+ :compliance_type)
1309
+ include Aws::Structure
1310
+ end
1311
+
1312
+ # @!attribute [rw] conformance_pack_name
1313
+ # @return [String]
1314
+ #
1315
+ # @!attribute [rw] conformance_pack_compliance_status
1316
+ # @return [String]
1317
+ #
1318
+ # @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/ConformancePackComplianceSummary AWS API Documentation
1319
+ #
1320
+ class ConformancePackComplianceSummary < Struct.new(
1321
+ :conformance_pack_name,
1322
+ :conformance_pack_compliance_status)
1323
+ include Aws::Structure
1324
+ end
1325
+
1326
+ # Returns details of a conformance pack. A conformance pack is a
1327
+ # collection of AWS Config rules that can be easily deployed in an
1328
+ # account and a region.
1329
+ #
1330
+ # @!attribute [rw] conformance_pack_name
1331
+ # Name of the conformance pack.
1332
+ # @return [String]
1333
+ #
1334
+ # @!attribute [rw] conformance_pack_arn
1335
+ # Amazon Resource Name (ARN) of the conformance pack.
1336
+ # @return [String]
1337
+ #
1338
+ # @!attribute [rw] conformance_pack_id
1339
+ # ID of the conformance pack.
1340
+ # @return [String]
1341
+ #
1342
+ # @!attribute [rw] delivery_s3_bucket
1343
+ # Location of an Amazon S3 bucket where AWS Config can deliver
1344
+ # evaluation results and conformance pack template that is used to
1345
+ # create a pack.
1346
+ # @return [String]
1347
+ #
1348
+ # @!attribute [rw] delivery_s3_key_prefix
1349
+ # Any folder structure you want to add to an Amazon S3 bucket.
1350
+ # @return [String]
1351
+ #
1352
+ # @!attribute [rw] conformance_pack_input_parameters
1353
+ # A list of `ConformancePackInputParameter` objects.
1354
+ # @return [Array<Types::ConformancePackInputParameter>]
1355
+ #
1356
+ # @!attribute [rw] last_update_requested_time
1357
+ # Last time when conformation pack update was requested.
1358
+ # @return [Time]
1359
+ #
1360
+ # @!attribute [rw] created_by
1361
+ # @return [String]
1362
+ #
1363
+ # @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/ConformancePackDetail AWS API Documentation
1364
+ #
1365
+ class ConformancePackDetail < Struct.new(
1366
+ :conformance_pack_name,
1367
+ :conformance_pack_arn,
1368
+ :conformance_pack_id,
1369
+ :delivery_s3_bucket,
1370
+ :delivery_s3_key_prefix,
1371
+ :conformance_pack_input_parameters,
1372
+ :last_update_requested_time,
1373
+ :created_by)
1374
+ include Aws::Structure
1375
+ end
1376
+
1377
+ # Filters a conformance pack by AWS Config rule names, compliance types,
1378
+ # AWS resource types, and resource IDs.
1379
+ #
1380
+ # @note When making an API call, you may pass ConformancePackEvaluationFilters
1381
+ # data as a hash:
1382
+ #
1383
+ # {
1384
+ # config_rule_names: ["StringWithCharLimit64"],
1385
+ # compliance_type: "COMPLIANT", # accepts COMPLIANT, NON_COMPLIANT
1386
+ # resource_type: "StringWithCharLimit256",
1387
+ # resource_ids: ["StringWithCharLimit256"],
1388
+ # }
1389
+ #
1390
+ # @!attribute [rw] config_rule_names
1391
+ # Filters the results by AWS Config rule names.
1392
+ # @return [Array<String>]
1393
+ #
1394
+ # @!attribute [rw] compliance_type
1395
+ # Filters the results by compliance.
1396
+ #
1397
+ # The allowed values are `COMPLIANT` and `NON_COMPLIANT`.
1398
+ # @return [String]
1399
+ #
1400
+ # @!attribute [rw] resource_type
1401
+ # Filters the results by the resource type (for example,
1402
+ # `"AWS::EC2::Instance"`).
1403
+ # @return [String]
1404
+ #
1405
+ # @!attribute [rw] resource_ids
1406
+ # Filters the results by resource IDs.
1407
+ # @return [Array<String>]
1408
+ #
1409
+ # @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/ConformancePackEvaluationFilters AWS API Documentation
1410
+ #
1411
+ class ConformancePackEvaluationFilters < Struct.new(
1412
+ :config_rule_names,
1413
+ :compliance_type,
1414
+ :resource_type,
1415
+ :resource_ids)
1416
+ include Aws::Structure
1417
+ end
1418
+
1419
+ # The details of a conformance pack evaluation. Provides AWS Config rule
1420
+ # and AWS resource type that was evaluated, the compliance of the
1421
+ # conformance pack, related time stamps, and supplementary information.
1422
+ #
1423
+ # @!attribute [rw] compliance_type
1424
+ # Filters the results by compliance.
1425
+ #
1426
+ # The allowed values are `COMPLIANT` and `NON_COMPLIANT`.
1427
+ # @return [String]
1428
+ #
1429
+ # @!attribute [rw] evaluation_result_identifier
1430
+ # Uniquely identifies an evaluation result.
1431
+ # @return [Types::EvaluationResultIdentifier]
1432
+ #
1433
+ # @!attribute [rw] config_rule_invoked_time
1434
+ # The time when AWS Config rule evaluated AWS resource.
1435
+ # @return [Time]
1436
+ #
1437
+ # @!attribute [rw] result_recorded_time
1438
+ # The time when AWS Config recorded the evaluation result.
1439
+ # @return [Time]
1440
+ #
1441
+ # @!attribute [rw] annotation
1442
+ # Supplementary information about how the evaluation determined the
1443
+ # compliance.
1444
+ # @return [String]
1445
+ #
1446
+ # @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/ConformancePackEvaluationResult AWS API Documentation
1447
+ #
1448
+ class ConformancePackEvaluationResult < Struct.new(
1449
+ :compliance_type,
1450
+ :evaluation_result_identifier,
1451
+ :config_rule_invoked_time,
1452
+ :result_recorded_time,
1453
+ :annotation)
1454
+ include Aws::Structure
1455
+ end
1456
+
1457
+ # Input parameters in the form of key-value pairs for the conformance
1458
+ # pack, both of which you define. Keys can have a maximum character
1459
+ # length of 128 characters, and values can have a maximum length of 256
1460
+ # characters.
1461
+ #
1462
+ # @note When making an API call, you may pass ConformancePackInputParameter
1463
+ # data as a hash:
1464
+ #
1465
+ # {
1466
+ # parameter_name: "ParameterName", # required
1467
+ # parameter_value: "ParameterValue", # required
1468
+ # }
1469
+ #
1470
+ # @!attribute [rw] parameter_name
1471
+ # One part of a key-value pair.
1472
+ # @return [String]
1473
+ #
1474
+ # @!attribute [rw] parameter_value
1475
+ # Another part of the key-value pair.
1476
+ # @return [String]
1477
+ #
1478
+ # @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/ConformancePackInputParameter AWS API Documentation
1479
+ #
1480
+ class ConformancePackInputParameter < Struct.new(
1481
+ :parameter_name,
1482
+ :parameter_value)
1483
+ include Aws::Structure
1484
+ end
1485
+
1486
+ # Compliance information of one or more AWS Config rules within a
1487
+ # conformance pack. You can filter using AWS Config rule names and
1488
+ # compliance types.
1489
+ #
1490
+ # @!attribute [rw] config_rule_name
1491
+ # Filters the results by AWS Config rule name.
1492
+ # @return [String]
1493
+ #
1494
+ # @!attribute [rw] compliance_type
1495
+ # Filters the results by compliance.
1496
+ #
1497
+ # The allowed values are `COMPLIANT` and `NON_COMPLIANT`.
1498
+ # @return [String]
1499
+ #
1500
+ # @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/ConformancePackRuleCompliance AWS API Documentation
1501
+ #
1502
+ class ConformancePackRuleCompliance < Struct.new(
1503
+ :config_rule_name,
1504
+ :compliance_type)
1505
+ include Aws::Structure
1506
+ end
1507
+
1508
+ # Status details of a conformance pack.
1509
+ #
1510
+ # @!attribute [rw] conformance_pack_name
1511
+ # Name of the conformance pack.
1512
+ # @return [String]
1513
+ #
1514
+ # @!attribute [rw] conformance_pack_id
1515
+ # ID of the conformance pack.
1516
+ # @return [String]
1517
+ #
1518
+ # @!attribute [rw] conformance_pack_arn
1519
+ # Amazon Resource Name (ARN) of comformance pack.
1520
+ # @return [String]
1521
+ #
1522
+ # @!attribute [rw] conformance_pack_state
1523
+ # Indicates deployment status of conformance pack.
1524
+ #
1525
+ # AWS Config sets the state of the conformance pack to:
1526
+ #
1527
+ # * CREATE\_IN\_PROGRESS when a conformance pack creation is in
1528
+ # progress for an account.
1529
+ #
1530
+ # * CREATE\_COMPLETE when a conformance pack has been successfully
1531
+ # created in your account.
1532
+ #
1533
+ # * CREATE\_FAILED when a conformance pack creation failed in your
1534
+ # account.
1535
+ #
1536
+ # * DELETE\_IN\_PROGRESS when a conformance pack deletion is in
1537
+ # progress.
1538
+ #
1539
+ # * DELETE\_FAILED when a conformance pack deletion failed from your
1540
+ # account.
1541
+ # @return [String]
1542
+ #
1543
+ # @!attribute [rw] stack_arn
1544
+ # Amazon Resource Name (ARN) of AWS CloudFormation stack.
1545
+ # @return [String]
1546
+ #
1547
+ # @!attribute [rw] conformance_pack_status_reason
1548
+ # The reason of conformance pack creation failure.
1549
+ # @return [String]
1550
+ #
1551
+ # @!attribute [rw] last_update_requested_time
1552
+ # Last time when conformation pack creation and update was requested.
1553
+ # @return [Time]
1554
+ #
1555
+ # @!attribute [rw] last_update_completed_time
1556
+ # Last time when conformation pack creation and update was successful.
1557
+ # @return [Time]
1558
+ #
1559
+ # @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/ConformancePackStatusDetail AWS API Documentation
1560
+ #
1561
+ class ConformancePackStatusDetail < Struct.new(
1562
+ :conformance_pack_name,
1563
+ :conformance_pack_id,
1564
+ :conformance_pack_arn,
1565
+ :conformance_pack_state,
1566
+ :stack_arn,
1567
+ :conformance_pack_status_reason,
1568
+ :last_update_requested_time,
1569
+ :last_update_completed_time)
1570
+ include Aws::Structure
1571
+ end
1572
+
1283
1573
  # @note When making an API call, you may pass DeleteAggregationAuthorizationRequest
1284
1574
  # data as a hash:
1285
1575
  #
@@ -1362,6 +1652,24 @@ module Aws::ConfigService
1362
1652
  include Aws::Structure
1363
1653
  end
1364
1654
 
1655
+ # @note When making an API call, you may pass DeleteConformancePackRequest
1656
+ # data as a hash:
1657
+ #
1658
+ # {
1659
+ # conformance_pack_name: "ConformancePackName", # required
1660
+ # }
1661
+ #
1662
+ # @!attribute [rw] conformance_pack_name
1663
+ # Name of the conformance pack you want to delete.
1664
+ # @return [String]
1665
+ #
1666
+ # @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DeleteConformancePackRequest AWS API Documentation
1667
+ #
1668
+ class DeleteConformancePackRequest < Struct.new(
1669
+ :conformance_pack_name)
1670
+ include Aws::Structure
1671
+ end
1672
+
1365
1673
  # The input for the DeleteDeliveryChannel action. The action accepts the
1366
1674
  # following data, in JSON format.
1367
1675
  #
@@ -1427,6 +1735,24 @@ module Aws::ConfigService
1427
1735
  include Aws::Structure
1428
1736
  end
1429
1737
 
1738
+ # @note When making an API call, you may pass DeleteOrganizationConformancePackRequest
1739
+ # data as a hash:
1740
+ #
1741
+ # {
1742
+ # organization_conformance_pack_name: "OrganizationConformancePackName", # required
1743
+ # }
1744
+ #
1745
+ # @!attribute [rw] organization_conformance_pack_name
1746
+ # The name of organization conformance pack that you want to delete.
1747
+ # @return [String]
1748
+ #
1749
+ # @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DeleteOrganizationConformancePackRequest AWS API Documentation
1750
+ #
1751
+ class DeleteOrganizationConformancePackRequest < Struct.new(
1752
+ :organization_conformance_pack_name)
1753
+ include Aws::Structure
1754
+ end
1755
+
1430
1756
  # @note When making an API call, you may pass DeletePendingAggregationRequestRequest
1431
1757
  # data as a hash:
1432
1758
  #
@@ -2197,6 +2523,167 @@ module Aws::ConfigService
2197
2523
  include Aws::Structure
2198
2524
  end
2199
2525
 
2526
+ # @note When making an API call, you may pass DescribeConformancePackComplianceRequest
2527
+ # data as a hash:
2528
+ #
2529
+ # {
2530
+ # conformance_pack_name: "ConformancePackName", # required
2531
+ # filters: {
2532
+ # config_rule_names: ["StringWithCharLimit64"],
2533
+ # compliance_type: "COMPLIANT", # accepts COMPLIANT, NON_COMPLIANT
2534
+ # },
2535
+ # limit: 1,
2536
+ # next_token: "NextToken",
2537
+ # }
2538
+ #
2539
+ # @!attribute [rw] conformance_pack_name
2540
+ # Name of the conformance pack.
2541
+ # @return [String]
2542
+ #
2543
+ # @!attribute [rw] filters
2544
+ # A `ConformancePackComplianceFilters` object.
2545
+ # @return [Types::ConformancePackComplianceFilters]
2546
+ #
2547
+ # @!attribute [rw] limit
2548
+ # The maximum number of AWS Config rules within a conformance pack are
2549
+ # returned on each page.
2550
+ # @return [Integer]
2551
+ #
2552
+ # @!attribute [rw] next_token
2553
+ # The `nextToken` string returned in a previous request that you use
2554
+ # to request the next page of results in a paginated response.
2555
+ # @return [String]
2556
+ #
2557
+ # @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DescribeConformancePackComplianceRequest AWS API Documentation
2558
+ #
2559
+ class DescribeConformancePackComplianceRequest < Struct.new(
2560
+ :conformance_pack_name,
2561
+ :filters,
2562
+ :limit,
2563
+ :next_token)
2564
+ include Aws::Structure
2565
+ end
2566
+
2567
+ # @!attribute [rw] conformance_pack_name
2568
+ # Name of the conformance pack.
2569
+ # @return [String]
2570
+ #
2571
+ # @!attribute [rw] conformance_pack_rule_compliance_list
2572
+ # Returns a list of `ConformancePackRuleCompliance` objects.
2573
+ # @return [Array<Types::ConformancePackRuleCompliance>]
2574
+ #
2575
+ # @!attribute [rw] next_token
2576
+ # The `nextToken` string returned in a previous request that you use
2577
+ # to request the next page of results in a paginated response.
2578
+ # @return [String]
2579
+ #
2580
+ # @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DescribeConformancePackComplianceResponse AWS API Documentation
2581
+ #
2582
+ class DescribeConformancePackComplianceResponse < Struct.new(
2583
+ :conformance_pack_name,
2584
+ :conformance_pack_rule_compliance_list,
2585
+ :next_token)
2586
+ include Aws::Structure
2587
+ end
2588
+
2589
+ # @note When making an API call, you may pass DescribeConformancePackStatusRequest
2590
+ # data as a hash:
2591
+ #
2592
+ # {
2593
+ # conformance_pack_names: ["ConformancePackName"],
2594
+ # limit: 1,
2595
+ # next_token: "NextToken",
2596
+ # }
2597
+ #
2598
+ # @!attribute [rw] conformance_pack_names
2599
+ # Comma-separated list of conformance pack names.
2600
+ # @return [Array<String>]
2601
+ #
2602
+ # @!attribute [rw] limit
2603
+ # The maximum number of conformance packs returned on each page.
2604
+ # @return [Integer]
2605
+ #
2606
+ # @!attribute [rw] next_token
2607
+ # The `nextToken` string returned in a previous request that you use
2608
+ # to request the next page of results in a paginated response.
2609
+ # @return [String]
2610
+ #
2611
+ # @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DescribeConformancePackStatusRequest AWS API Documentation
2612
+ #
2613
+ class DescribeConformancePackStatusRequest < Struct.new(
2614
+ :conformance_pack_names,
2615
+ :limit,
2616
+ :next_token)
2617
+ include Aws::Structure
2618
+ end
2619
+
2620
+ # @!attribute [rw] conformance_pack_status_details
2621
+ # A list of `ConformancePackStatusDetail` objects.
2622
+ # @return [Array<Types::ConformancePackStatusDetail>]
2623
+ #
2624
+ # @!attribute [rw] next_token
2625
+ # The `nextToken` string returned in a previous request that you use
2626
+ # to request the next page of results in a paginated response.
2627
+ # @return [String]
2628
+ #
2629
+ # @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DescribeConformancePackStatusResponse AWS API Documentation
2630
+ #
2631
+ class DescribeConformancePackStatusResponse < Struct.new(
2632
+ :conformance_pack_status_details,
2633
+ :next_token)
2634
+ include Aws::Structure
2635
+ end
2636
+
2637
+ # @note When making an API call, you may pass DescribeConformancePacksRequest
2638
+ # data as a hash:
2639
+ #
2640
+ # {
2641
+ # conformance_pack_names: ["ConformancePackName"],
2642
+ # limit: 1,
2643
+ # next_token: "NextToken",
2644
+ # }
2645
+ #
2646
+ # @!attribute [rw] conformance_pack_names
2647
+ # Comma-separated list of conformance pack names for which you want
2648
+ # details. If you do not specify any names, AWS Config returns details
2649
+ # for all your conformance packs.
2650
+ # @return [Array<String>]
2651
+ #
2652
+ # @!attribute [rw] limit
2653
+ # The maximum number of conformance packs returned on each page.
2654
+ # @return [Integer]
2655
+ #
2656
+ # @!attribute [rw] next_token
2657
+ # The `nextToken` string returned in a previous request that you use
2658
+ # to request the next page of results in a paginated response.
2659
+ # @return [String]
2660
+ #
2661
+ # @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DescribeConformancePacksRequest AWS API Documentation
2662
+ #
2663
+ class DescribeConformancePacksRequest < Struct.new(
2664
+ :conformance_pack_names,
2665
+ :limit,
2666
+ :next_token)
2667
+ include Aws::Structure
2668
+ end
2669
+
2670
+ # @!attribute [rw] conformance_pack_details
2671
+ # Returns a list of `ConformancePackDetail` objects.
2672
+ # @return [Array<Types::ConformancePackDetail>]
2673
+ #
2674
+ # @!attribute [rw] next_token
2675
+ # The `nextToken` string returned in a previous request that you use
2676
+ # to request the next page of results in a paginated response.
2677
+ # @return [String]
2678
+ #
2679
+ # @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DescribeConformancePacksResponse AWS API Documentation
2680
+ #
2681
+ class DescribeConformancePacksResponse < Struct.new(
2682
+ :conformance_pack_details,
2683
+ :next_token)
2684
+ include Aws::Structure
2685
+ end
2686
+
2200
2687
  # The input for the DeliveryChannelStatus action.
2201
2688
  #
2202
2689
  # @note When making an API call, you may pass DescribeDeliveryChannelStatusRequest
@@ -2352,7 +2839,7 @@ module Aws::ConfigService
2352
2839
  end
2353
2840
 
2354
2841
  # @!attribute [rw] organization_config_rules
2355
- # Retuns a list `OrganizationConfigRule` objects.
2842
+ # Returns a list of `OrganizationConfigRule` objects.
2356
2843
  # @return [Array<Types::OrganizationConfigRule>]
2357
2844
  #
2358
2845
  # @!attribute [rw] next_token
@@ -2368,6 +2855,108 @@ module Aws::ConfigService
2368
2855
  include Aws::Structure
2369
2856
  end
2370
2857
 
2858
+ # @note When making an API call, you may pass DescribeOrganizationConformancePackStatusesRequest
2859
+ # data as a hash:
2860
+ #
2861
+ # {
2862
+ # organization_conformance_pack_names: ["OrganizationConformancePackName"],
2863
+ # limit: 1,
2864
+ # next_token: "String",
2865
+ # }
2866
+ #
2867
+ # @!attribute [rw] organization_conformance_pack_names
2868
+ # The names of organization conformance packs for which you want
2869
+ # status details. If you do not specify any names, AWS Config returns
2870
+ # details for all your organization conformance packs.
2871
+ # @return [Array<String>]
2872
+ #
2873
+ # @!attribute [rw] limit
2874
+ # The maximum number of OrganizationConformancePackStatuses returned
2875
+ # on each page. If you do no specify a number, AWS Config uses the
2876
+ # default. The default is 100.
2877
+ # @return [Integer]
2878
+ #
2879
+ # @!attribute [rw] next_token
2880
+ # The nextToken string returned on a previous page that you use to get
2881
+ # the next page of results in a paginated response.
2882
+ # @return [String]
2883
+ #
2884
+ # @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DescribeOrganizationConformancePackStatusesRequest AWS API Documentation
2885
+ #
2886
+ class DescribeOrganizationConformancePackStatusesRequest < Struct.new(
2887
+ :organization_conformance_pack_names,
2888
+ :limit,
2889
+ :next_token)
2890
+ include Aws::Structure
2891
+ end
2892
+
2893
+ # @!attribute [rw] organization_conformance_pack_statuses
2894
+ # A list of `OrganizationConformancePackStatus` objects.
2895
+ # @return [Array<Types::OrganizationConformancePackStatus>]
2896
+ #
2897
+ # @!attribute [rw] next_token
2898
+ # The nextToken string returned on a previous page that you use to get
2899
+ # the next page of results in a paginated response.
2900
+ # @return [String]
2901
+ #
2902
+ # @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DescribeOrganizationConformancePackStatusesResponse AWS API Documentation
2903
+ #
2904
+ class DescribeOrganizationConformancePackStatusesResponse < Struct.new(
2905
+ :organization_conformance_pack_statuses,
2906
+ :next_token)
2907
+ include Aws::Structure
2908
+ end
2909
+
2910
+ # @note When making an API call, you may pass DescribeOrganizationConformancePacksRequest
2911
+ # data as a hash:
2912
+ #
2913
+ # {
2914
+ # organization_conformance_pack_names: ["OrganizationConformancePackName"],
2915
+ # limit: 1,
2916
+ # next_token: "String",
2917
+ # }
2918
+ #
2919
+ # @!attribute [rw] organization_conformance_pack_names
2920
+ # The name that you assign to an organization conformance pack.
2921
+ # @return [Array<String>]
2922
+ #
2923
+ # @!attribute [rw] limit
2924
+ # The maximum number of organization config packs returned on each
2925
+ # page. If you do no specify a number, AWS Config uses the default.
2926
+ # The default is 100.
2927
+ # @return [Integer]
2928
+ #
2929
+ # @!attribute [rw] next_token
2930
+ # The nextToken string returned on a previous page that you use to get
2931
+ # the next page of results in a paginated response.
2932
+ # @return [String]
2933
+ #
2934
+ # @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DescribeOrganizationConformancePacksRequest AWS API Documentation
2935
+ #
2936
+ class DescribeOrganizationConformancePacksRequest < Struct.new(
2937
+ :organization_conformance_pack_names,
2938
+ :limit,
2939
+ :next_token)
2940
+ include Aws::Structure
2941
+ end
2942
+
2943
+ # @!attribute [rw] organization_conformance_packs
2944
+ # Returns a list of OrganizationConformancePacks objects.
2945
+ # @return [Array<Types::OrganizationConformancePack>]
2946
+ #
2947
+ # @!attribute [rw] next_token
2948
+ # The nextToken string returned on a previous page that you use to get
2949
+ # the next page of results in a paginated response.
2950
+ # @return [String]
2951
+ #
2952
+ # @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DescribeOrganizationConformancePacksResponse AWS API Documentation
2953
+ #
2954
+ class DescribeOrganizationConformancePacksResponse < Struct.new(
2955
+ :organization_conformance_packs,
2956
+ :next_token)
2957
+ include Aws::Structure
2958
+ end
2959
+
2371
2960
  # @note When making an API call, you may pass DescribePendingAggregationRequestsRequest
2372
2961
  # data as a hash:
2373
2962
  #
@@ -3314,6 +3903,113 @@ module Aws::ConfigService
3314
3903
  include Aws::Structure
3315
3904
  end
3316
3905
 
3906
+ # @note When making an API call, you may pass GetConformancePackComplianceDetailsRequest
3907
+ # data as a hash:
3908
+ #
3909
+ # {
3910
+ # conformance_pack_name: "ConformancePackName", # required
3911
+ # filters: {
3912
+ # config_rule_names: ["StringWithCharLimit64"],
3913
+ # compliance_type: "COMPLIANT", # accepts COMPLIANT, NON_COMPLIANT
3914
+ # resource_type: "StringWithCharLimit256",
3915
+ # resource_ids: ["StringWithCharLimit256"],
3916
+ # },
3917
+ # limit: 1,
3918
+ # next_token: "NextToken",
3919
+ # }
3920
+ #
3921
+ # @!attribute [rw] conformance_pack_name
3922
+ # Name of the conformance pack.
3923
+ # @return [String]
3924
+ #
3925
+ # @!attribute [rw] filters
3926
+ # A `ConformancePackEvaluationFilters` object.
3927
+ # @return [Types::ConformancePackEvaluationFilters]
3928
+ #
3929
+ # @!attribute [rw] limit
3930
+ # The maximum number of evaluation results returned on each page. If
3931
+ # you do no specify a number, AWS Config uses the default. The default
3932
+ # is 100.
3933
+ # @return [Integer]
3934
+ #
3935
+ # @!attribute [rw] next_token
3936
+ # The `nextToken` string returned in a previous request that you use
3937
+ # to request the next page of results in a paginated response.
3938
+ # @return [String]
3939
+ #
3940
+ # @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/GetConformancePackComplianceDetailsRequest AWS API Documentation
3941
+ #
3942
+ class GetConformancePackComplianceDetailsRequest < Struct.new(
3943
+ :conformance_pack_name,
3944
+ :filters,
3945
+ :limit,
3946
+ :next_token)
3947
+ include Aws::Structure
3948
+ end
3949
+
3950
+ # @!attribute [rw] conformance_pack_name
3951
+ # Name of the conformance pack.
3952
+ # @return [String]
3953
+ #
3954
+ # @!attribute [rw] conformance_pack_rule_evaluation_results
3955
+ # Returns a list of `ConformancePackEvaluationResult` objects.
3956
+ # @return [Array<Types::ConformancePackEvaluationResult>]
3957
+ #
3958
+ # @!attribute [rw] next_token
3959
+ # The `nextToken` string returned in a previous request that you use
3960
+ # to request the next page of results in a paginated response.
3961
+ # @return [String]
3962
+ #
3963
+ # @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/GetConformancePackComplianceDetailsResponse AWS API Documentation
3964
+ #
3965
+ class GetConformancePackComplianceDetailsResponse < Struct.new(
3966
+ :conformance_pack_name,
3967
+ :conformance_pack_rule_evaluation_results,
3968
+ :next_token)
3969
+ include Aws::Structure
3970
+ end
3971
+
3972
+ # @note When making an API call, you may pass GetConformancePackComplianceSummaryRequest
3973
+ # data as a hash:
3974
+ #
3975
+ # {
3976
+ # conformance_pack_names: ["ConformancePackName"], # required
3977
+ # limit: 1,
3978
+ # next_token: "NextToken",
3979
+ # }
3980
+ #
3981
+ # @!attribute [rw] conformance_pack_names
3982
+ # @return [Array<String>]
3983
+ #
3984
+ # @!attribute [rw] limit
3985
+ # @return [Integer]
3986
+ #
3987
+ # @!attribute [rw] next_token
3988
+ # @return [String]
3989
+ #
3990
+ # @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/GetConformancePackComplianceSummaryRequest AWS API Documentation
3991
+ #
3992
+ class GetConformancePackComplianceSummaryRequest < Struct.new(
3993
+ :conformance_pack_names,
3994
+ :limit,
3995
+ :next_token)
3996
+ include Aws::Structure
3997
+ end
3998
+
3999
+ # @!attribute [rw] conformance_pack_compliance_summary_list
4000
+ # @return [Array<Types::ConformancePackComplianceSummary>]
4001
+ #
4002
+ # @!attribute [rw] next_token
4003
+ # @return [String]
4004
+ #
4005
+ # @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/GetConformancePackComplianceSummaryResponse AWS API Documentation
4006
+ #
4007
+ class GetConformancePackComplianceSummaryResponse < Struct.new(
4008
+ :conformance_pack_compliance_summary_list,
4009
+ :next_token)
4010
+ include Aws::Structure
4011
+ end
4012
+
3317
4013
  # @note When making an API call, you may pass GetDiscoveredResourceCountsRequest
3318
4014
  # data as a hash:
3319
4015
  #
@@ -3406,7 +4102,7 @@ module Aws::ConfigService
3406
4102
  # organization_config_rule_name: "OrganizationConfigRuleName", # required
3407
4103
  # filters: {
3408
4104
  # account_id: "AccountId",
3409
- # member_account_rule_status: "CREATE_SUCCESSFUL", # accepts CREATE_SUCCESSFUL, CREATE_IN_PROGRESS, CREATE_FAILED, UPDATE_SUCCESSFUL, UPDATE_FAILED, UPDATE_IN_PROGRESS, DELETE_SUCCESSFUL, DELETE_FAILED, DELETE_IN_PROGRESS
4105
+ # member_account_rule_status: "CREATE_SUCCESSFUL", # accepts CREATE_SUCCESSFUL, CREATE_IN_PROGRESS, CREATE_FAILED, DELETE_SUCCESSFUL, DELETE_FAILED, DELETE_IN_PROGRESS, UPDATE_SUCCESSFUL, UPDATE_IN_PROGRESS, UPDATE_FAILED
3410
4106
  # },
3411
4107
  # limit: 1,
3412
4108
  # next_token: "String",
@@ -3459,6 +4155,66 @@ module Aws::ConfigService
3459
4155
  include Aws::Structure
3460
4156
  end
3461
4157
 
4158
+ # @note When making an API call, you may pass GetOrganizationConformancePackDetailedStatusRequest
4159
+ # data as a hash:
4160
+ #
4161
+ # {
4162
+ # organization_conformance_pack_name: "OrganizationConformancePackName", # required
4163
+ # filters: {
4164
+ # account_id: "AccountId",
4165
+ # status: "CREATE_SUCCESSFUL", # accepts CREATE_SUCCESSFUL, CREATE_IN_PROGRESS, CREATE_FAILED, DELETE_SUCCESSFUL, DELETE_FAILED, DELETE_IN_PROGRESS, UPDATE_SUCCESSFUL, UPDATE_IN_PROGRESS, UPDATE_FAILED
4166
+ # },
4167
+ # limit: 1,
4168
+ # next_token: "String",
4169
+ # }
4170
+ #
4171
+ # @!attribute [rw] organization_conformance_pack_name
4172
+ # The name of organization conformance pack for which you want status
4173
+ # details for member accounts.
4174
+ # @return [String]
4175
+ #
4176
+ # @!attribute [rw] filters
4177
+ # An `OrganizationResourceDetailedStatusFilters` object.
4178
+ # @return [Types::OrganizationResourceDetailedStatusFilters]
4179
+ #
4180
+ # @!attribute [rw] limit
4181
+ # The maximum number of `OrganizationConformancePackDetailedStatuses`
4182
+ # returned on each page. If you do not specify a number, AWS Config
4183
+ # uses the default. The default is 100.
4184
+ # @return [Integer]
4185
+ #
4186
+ # @!attribute [rw] next_token
4187
+ # The nextToken string returned on a previous page that you use to get
4188
+ # the next page of results in a paginated response.
4189
+ # @return [String]
4190
+ #
4191
+ # @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/GetOrganizationConformancePackDetailedStatusRequest AWS API Documentation
4192
+ #
4193
+ class GetOrganizationConformancePackDetailedStatusRequest < Struct.new(
4194
+ :organization_conformance_pack_name,
4195
+ :filters,
4196
+ :limit,
4197
+ :next_token)
4198
+ include Aws::Structure
4199
+ end
4200
+
4201
+ # @!attribute [rw] organization_conformance_pack_detailed_statuses
4202
+ # A list of `OrganizationConformancePackDetailedStatus` objects.
4203
+ # @return [Array<Types::OrganizationConformancePackDetailedStatus>]
4204
+ #
4205
+ # @!attribute [rw] next_token
4206
+ # The nextToken string returned on a previous page that you use to get
4207
+ # the next page of results in a paginated response.
4208
+ # @return [String]
4209
+ #
4210
+ # @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/GetOrganizationConformancePackDetailedStatusResponse AWS API Documentation
4211
+ #
4212
+ class GetOrganizationConformancePackDetailedStatusResponse < Struct.new(
4213
+ :organization_conformance_pack_detailed_statuses,
4214
+ :next_token)
4215
+ include Aws::Structure
4216
+ end
4217
+
3462
4218
  # The input for the GetResourceConfigHistory action.
3463
4219
  #
3464
4220
  # @note When making an API call, you may pass GetResourceConfigHistoryRequest
@@ -3880,7 +4636,7 @@ module Aws::ConfigService
3880
4636
  # @return [String]
3881
4637
  #
3882
4638
  # @!attribute [rw] organization_config_rule_arn
3883
- # The Amazon Resource Name (ARN) of organization config rule.
4639
+ # Amazon Resource Name (ARN) of organization config rule.
3884
4640
  # @return [String]
3885
4641
  #
3886
4642
  # @!attribute [rw] organization_managed_rule_metadata
@@ -3985,6 +4741,207 @@ module Aws::ConfigService
3985
4741
  include Aws::Structure
3986
4742
  end
3987
4743
 
4744
+ # An organization conformance pack that has information about
4745
+ # conformance packs that AWS Config creates in member accounts.
4746
+ #
4747
+ # @!attribute [rw] organization_conformance_pack_name
4748
+ # The name you assign to an organization conformance pack.
4749
+ # @return [String]
4750
+ #
4751
+ # @!attribute [rw] organization_conformance_pack_arn
4752
+ # Amazon Resource Name (ARN) of organization conformance pack.
4753
+ # @return [String]
4754
+ #
4755
+ # @!attribute [rw] delivery_s3_bucket
4756
+ # Location of an Amazon S3 bucket where AWS Config can deliver
4757
+ # evaluation results and conformance pack template that is used to
4758
+ # create a pack.
4759
+ # @return [String]
4760
+ #
4761
+ # @!attribute [rw] delivery_s3_key_prefix
4762
+ # Any folder structure you want to add to an Amazon S3 bucket.
4763
+ # @return [String]
4764
+ #
4765
+ # @!attribute [rw] conformance_pack_input_parameters
4766
+ # A list of `ConformancePackInputParameter` objects.
4767
+ # @return [Array<Types::ConformancePackInputParameter>]
4768
+ #
4769
+ # @!attribute [rw] excluded_accounts
4770
+ # A comma-separated list of accounts excluded from organization
4771
+ # conformance pack.
4772
+ # @return [Array<String>]
4773
+ #
4774
+ # @!attribute [rw] last_update_time
4775
+ # Last time when organization conformation pack was updated.
4776
+ # @return [Time]
4777
+ #
4778
+ # @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/OrganizationConformancePack AWS API Documentation
4779
+ #
4780
+ class OrganizationConformancePack < Struct.new(
4781
+ :organization_conformance_pack_name,
4782
+ :organization_conformance_pack_arn,
4783
+ :delivery_s3_bucket,
4784
+ :delivery_s3_key_prefix,
4785
+ :conformance_pack_input_parameters,
4786
+ :excluded_accounts,
4787
+ :last_update_time)
4788
+ include Aws::Structure
4789
+ end
4790
+
4791
+ # Organization conformance pack creation or deletion status in each
4792
+ # member account. This includes the name of the conformance pack, the
4793
+ # status, error code and error message when the conformance pack
4794
+ # creation or deletion failed.
4795
+ #
4796
+ # @!attribute [rw] account_id
4797
+ # The 12-digit account ID of a member account.
4798
+ # @return [String]
4799
+ #
4800
+ # @!attribute [rw] conformance_pack_name
4801
+ # The name of conformance pack deployed in the member account.
4802
+ # @return [String]
4803
+ #
4804
+ # @!attribute [rw] status
4805
+ # Indicates deployment status for conformance pack in a member
4806
+ # account. When master account calls `PutOrganizationConformancePack`
4807
+ # action for the first time, conformance pack status is created in the
4808
+ # member account. When master account calls
4809
+ # `PutOrganizationConformancePack` action for the second time,
4810
+ # conformance pack status is updated in the member account.
4811
+ # Conformance pack status is deleted when the master account deletes
4812
+ # `OrganizationConformancePack` and disables service access for
4813
+ # `config-multiaccountsetup.amazonaws.com`.
4814
+ #
4815
+ # AWS Config sets the state of the conformance pack to:
4816
+ #
4817
+ # * `CREATE_SUCCESSFUL` when conformance pack has been created in the
4818
+ # member account.
4819
+ #
4820
+ # * `CREATE_IN_PROGRESS` when conformance pack is being created in the
4821
+ # member account.
4822
+ #
4823
+ # * `CREATE_FAILED` when conformance pack creation has failed in the
4824
+ # member account.
4825
+ #
4826
+ # * `DELETE_FAILED` when conformance pack deletion has failed in the
4827
+ # member account.
4828
+ #
4829
+ # * `DELETE_IN_PROGRESS` when conformance pack is being deleted in the
4830
+ # member account.
4831
+ #
4832
+ # * `DELETE_SUCCESSFUL` when conformance pack has been deleted in the
4833
+ # member account.
4834
+ #
4835
+ # * `UPDATE_SUCCESSFUL` when conformance pack has been updated in the
4836
+ # member account.
4837
+ #
4838
+ # * `UPDATE_IN_PROGRESS` when conformance pack is being updated in the
4839
+ # member account.
4840
+ #
4841
+ # * `UPDATE_FAILED` when conformance pack deletion has failed in the
4842
+ # member account.
4843
+ # @return [String]
4844
+ #
4845
+ # @!attribute [rw] error_code
4846
+ # An error code that is returned when conformance pack creation or
4847
+ # deletion failed in the member account.
4848
+ # @return [String]
4849
+ #
4850
+ # @!attribute [rw] error_message
4851
+ # An error message indicating that conformance pack account creation
4852
+ # or deletion has failed due to an error in the member account.
4853
+ # @return [String]
4854
+ #
4855
+ # @!attribute [rw] last_update_time
4856
+ # The timestamp of the last status update.
4857
+ # @return [Time]
4858
+ #
4859
+ # @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/OrganizationConformancePackDetailedStatus AWS API Documentation
4860
+ #
4861
+ class OrganizationConformancePackDetailedStatus < Struct.new(
4862
+ :account_id,
4863
+ :conformance_pack_name,
4864
+ :status,
4865
+ :error_code,
4866
+ :error_message,
4867
+ :last_update_time)
4868
+ include Aws::Structure
4869
+ end
4870
+
4871
+ # Returns the status for an organization conformance pack in an
4872
+ # organization.
4873
+ #
4874
+ # @!attribute [rw] organization_conformance_pack_name
4875
+ # The name that you assign to organization conformance pack.
4876
+ # @return [String]
4877
+ #
4878
+ # @!attribute [rw] status
4879
+ # Indicates deployment status of an organization conformance pack.
4880
+ # When master account calls PutOrganizationConformancePack for the
4881
+ # first time, conformance pack status is created in all the member
4882
+ # accounts. When master account calls PutOrganizationConformancePack
4883
+ # for the second time, conformance pack status is updated in all the
4884
+ # member accounts. Additionally, conformance pack status is updated
4885
+ # when one or more member accounts join or leave an organization.
4886
+ # Conformance pack status is deleted when the master account deletes
4887
+ # OrganizationConformancePack in all the member accounts and disables
4888
+ # service access for `config-multiaccountsetup.amazonaws.com`.
4889
+ #
4890
+ # AWS Config sets the state of the conformance pack to:
4891
+ #
4892
+ # * `CREATE_SUCCESSFUL` when an organization conformance pack has been
4893
+ # successfully created in all the member accounts.
4894
+ #
4895
+ # * `CREATE_IN_PROGRESS` when an organization conformance pack
4896
+ # creation is in progress.
4897
+ #
4898
+ # * `CREATE_FAILED` when an organization conformance pack creation
4899
+ # failed in one or more member accounts within that organization.
4900
+ #
4901
+ # * `DELETE_FAILED` when an organization conformance pack deletion
4902
+ # failed in one or more member accounts within that organization.
4903
+ #
4904
+ # * `DELETE_IN_PROGRESS` when an organization conformance pack
4905
+ # deletion is in progress.
4906
+ #
4907
+ # * `DELETE_SUCCESSFUL` when an organization conformance pack has been
4908
+ # successfully deleted from all the member accounts.
4909
+ #
4910
+ # * `UPDATE_SUCCESSFUL` when an organization conformance pack has been
4911
+ # successfully updated in all the member accounts.
4912
+ #
4913
+ # * `UPDATE_IN_PROGRESS` when an organization conformance pack update
4914
+ # is in progress.
4915
+ #
4916
+ # * `UPDATE_FAILED` when an organization conformance pack update
4917
+ # failed in one or more member accounts within that organization.
4918
+ # @return [String]
4919
+ #
4920
+ # @!attribute [rw] error_code
4921
+ # An error code that is returned when organization conformance pack
4922
+ # creation or deletion has failed in the member account.
4923
+ # @return [String]
4924
+ #
4925
+ # @!attribute [rw] error_message
4926
+ # An error message indicating that organization conformance pack
4927
+ # creation or deletion failed due to an error.
4928
+ # @return [String]
4929
+ #
4930
+ # @!attribute [rw] last_update_time
4931
+ # The timestamp of the last update.
4932
+ # @return [Time]
4933
+ #
4934
+ # @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/OrganizationConformancePackStatus AWS API Documentation
4935
+ #
4936
+ class OrganizationConformancePackStatus < Struct.new(
4937
+ :organization_conformance_pack_name,
4938
+ :status,
4939
+ :error_code,
4940
+ :error_message,
4941
+ :last_update_time)
4942
+ include Aws::Structure
4943
+ end
4944
+
3988
4945
  # An object that specifies organization custom rule metadata such as
3989
4946
  # resource type, resource ID of AWS resource, Lamdba function ARN, and
3990
4947
  # organization trigger types that trigger AWS Config to evaluate your
@@ -4167,6 +5124,71 @@ module Aws::ConfigService
4167
5124
  include Aws::Structure
4168
5125
  end
4169
5126
 
5127
+ # Status filter object to filter results based on specific member
5128
+ # account ID or status type for an organization conformance pack.
5129
+ #
5130
+ # @note When making an API call, you may pass OrganizationResourceDetailedStatusFilters
5131
+ # data as a hash:
5132
+ #
5133
+ # {
5134
+ # account_id: "AccountId",
5135
+ # status: "CREATE_SUCCESSFUL", # accepts CREATE_SUCCESSFUL, CREATE_IN_PROGRESS, CREATE_FAILED, DELETE_SUCCESSFUL, DELETE_FAILED, DELETE_IN_PROGRESS, UPDATE_SUCCESSFUL, UPDATE_IN_PROGRESS, UPDATE_FAILED
5136
+ # }
5137
+ #
5138
+ # @!attribute [rw] account_id
5139
+ # The 12-digit account ID of the member account within an
5140
+ # organization.
5141
+ # @return [String]
5142
+ #
5143
+ # @!attribute [rw] status
5144
+ # Indicates deployment status for conformance pack in a member
5145
+ # account. When master account calls `PutOrganizationConformancePack`
5146
+ # action for the first time, conformance pack status is created in the
5147
+ # member account. When master account calls
5148
+ # `PutOrganizationConformancePack` action for the second time,
5149
+ # conformance pack status is updated in the member account.
5150
+ # Conformance pack status is deleted when the master account deletes
5151
+ # `OrganizationConformancePack` and disables service access for
5152
+ # `config-multiaccountsetup.amazonaws.com`.
5153
+ #
5154
+ # AWS Config sets the state of the conformance pack to:
5155
+ #
5156
+ # * `CREATE_SUCCESSFUL` when conformance pack has been created in the
5157
+ # member account.
5158
+ #
5159
+ # * `CREATE_IN_PROGRESS` when conformance pack is being created in the
5160
+ # member account.
5161
+ #
5162
+ # * `CREATE_FAILED` when conformance pack creation has failed in the
5163
+ # member account.
5164
+ #
5165
+ # * `DELETE_FAILED` when conformance pack deletion has failed in the
5166
+ # member account.
5167
+ #
5168
+ # * `DELETE_IN_PROGRESS` when conformance pack is being deleted in the
5169
+ # member account.
5170
+ #
5171
+ # * `DELETE_SUCCESSFUL` when conformance pack has been deleted in the
5172
+ # member account.
5173
+ #
5174
+ # * `UPDATE_SUCCESSFUL` when conformance pack has been updated in the
5175
+ # member account.
5176
+ #
5177
+ # * `UPDATE_IN_PROGRESS` when conformance pack is being updated in the
5178
+ # member account.
5179
+ #
5180
+ # * `UPDATE_FAILED` when conformance pack deletion has failed in the
5181
+ # member account.
5182
+ # @return [String]
5183
+ #
5184
+ # @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/OrganizationResourceDetailedStatusFilters AWS API Documentation
5185
+ #
5186
+ class OrganizationResourceDetailedStatusFilters < Struct.new(
5187
+ :account_id,
5188
+ :status)
5189
+ include Aws::Structure
5190
+ end
5191
+
4170
5192
  # An object that represents the account ID and region of an aggregator
4171
5193
  # account that is requesting authorization but is not yet authorized.
4172
5194
  #
@@ -4378,6 +5400,86 @@ module Aws::ConfigService
4378
5400
  include Aws::Structure
4379
5401
  end
4380
5402
 
5403
+ # @note When making an API call, you may pass PutConformancePackRequest
5404
+ # data as a hash:
5405
+ #
5406
+ # {
5407
+ # conformance_pack_name: "ConformancePackName", # required
5408
+ # template_s3_uri: "TemplateS3Uri",
5409
+ # template_body: "TemplateBody",
5410
+ # delivery_s3_bucket: "DeliveryS3Bucket", # required
5411
+ # delivery_s3_key_prefix: "DeliveryS3KeyPrefix",
5412
+ # conformance_pack_input_parameters: [
5413
+ # {
5414
+ # parameter_name: "ParameterName", # required
5415
+ # parameter_value: "ParameterValue", # required
5416
+ # },
5417
+ # ],
5418
+ # }
5419
+ #
5420
+ # @!attribute [rw] conformance_pack_name
5421
+ # Name of the conformance pack you want to create.
5422
+ # @return [String]
5423
+ #
5424
+ # @!attribute [rw] template_s3_uri
5425
+ # Location of file containing the template body. The uri must point to
5426
+ # the conformance pack template (max size: 300,000 bytes) that is
5427
+ # located in an Amazon S3 bucket in the same region as the conformance
5428
+ # pack.
5429
+ #
5430
+ # <note markdown="1"> You must have access to read Amazon S3 bucket.
5431
+ #
5432
+ # </note>
5433
+ # @return [String]
5434
+ #
5435
+ # @!attribute [rw] template_body
5436
+ # A string containing full conformance pack template body. Structure
5437
+ # containing the template body with a minimum length of 1 byte and a
5438
+ # maximum length of 51,200 bytes.
5439
+ #
5440
+ # <note markdown="1"> You can only use a YAML template with one resource type, that is,
5441
+ # config rule.
5442
+ #
5443
+ # </note>
5444
+ # @return [String]
5445
+ #
5446
+ # @!attribute [rw] delivery_s3_bucket
5447
+ # Location of an Amazon S3 bucket where AWS Config can deliver
5448
+ # evaluation results. AWS Config stores intermediate files while
5449
+ # processing conformance pack template.
5450
+ # @return [String]
5451
+ #
5452
+ # @!attribute [rw] delivery_s3_key_prefix
5453
+ # The prefix for the Amazon S3 bucket.
5454
+ # @return [String]
5455
+ #
5456
+ # @!attribute [rw] conformance_pack_input_parameters
5457
+ # A list of `ConformancePackInputParameter` objects.
5458
+ # @return [Array<Types::ConformancePackInputParameter>]
5459
+ #
5460
+ # @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/PutConformancePackRequest AWS API Documentation
5461
+ #
5462
+ class PutConformancePackRequest < Struct.new(
5463
+ :conformance_pack_name,
5464
+ :template_s3_uri,
5465
+ :template_body,
5466
+ :delivery_s3_bucket,
5467
+ :delivery_s3_key_prefix,
5468
+ :conformance_pack_input_parameters)
5469
+ include Aws::Structure
5470
+ end
5471
+
5472
+ # @!attribute [rw] conformance_pack_arn
5473
+ # ARN of the conformance pack.
5474
+ # @return [String]
5475
+ #
5476
+ # @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/PutConformancePackResponse AWS API Documentation
5477
+ #
5478
+ class PutConformancePackResponse < Struct.new(
5479
+ :conformance_pack_arn)
5480
+ include Aws::Structure
5481
+ end
5482
+
4381
5483
  # The input for the PutDeliveryChannel action.
4382
5484
  #
4383
5485
  # @note When making an API call, you may pass PutDeliveryChannelRequest
@@ -4537,6 +5639,86 @@ module Aws::ConfigService
4537
5639
  include Aws::Structure
4538
5640
  end
4539
5641
 
5642
+ # @note When making an API call, you may pass PutOrganizationConformancePackRequest
5643
+ # data as a hash:
5644
+ #
5645
+ # {
5646
+ # organization_conformance_pack_name: "OrganizationConformancePackName", # required
5647
+ # template_s3_uri: "TemplateS3Uri",
5648
+ # template_body: "TemplateBody",
5649
+ # delivery_s3_bucket: "DeliveryS3Bucket", # required
5650
+ # delivery_s3_key_prefix: "DeliveryS3KeyPrefix",
5651
+ # conformance_pack_input_parameters: [
5652
+ # {
5653
+ # parameter_name: "ParameterName", # required
5654
+ # parameter_value: "ParameterValue", # required
5655
+ # },
5656
+ # ],
5657
+ # excluded_accounts: ["AccountId"],
5658
+ # }
5659
+ #
5660
+ # @!attribute [rw] organization_conformance_pack_name
5661
+ # Name of the organization conformance pack you want to create.
5662
+ # @return [String]
5663
+ #
5664
+ # @!attribute [rw] template_s3_uri
5665
+ # Location of file containing the template body. The uri must point to
5666
+ # the conformance pack template (max size: 300,000 bytes).
5667
+ #
5668
+ # <note markdown="1"> You must have access to read Amazon S3 bucket.
5669
+ #
5670
+ # </note>
5671
+ # @return [String]
5672
+ #
5673
+ # @!attribute [rw] template_body
5674
+ # A string containing full conformance pack template body. Structure
5675
+ # containing the template body with a minimum length of 1 byte and a
5676
+ # maximum length of 51,200 bytes.
5677
+ # @return [String]
5678
+ #
5679
+ # @!attribute [rw] delivery_s3_bucket
5680
+ # Location of an Amazon S3 bucket where AWS Config can deliver
5681
+ # evaluation results. AWS Config stores intermediate files while
5682
+ # processing conformance pack template.
5683
+ # @return [String]
5684
+ #
5685
+ # @!attribute [rw] delivery_s3_key_prefix
5686
+ # The prefix for the Amazon S3 bucket.
5687
+ # @return [String]
5688
+ #
5689
+ # @!attribute [rw] conformance_pack_input_parameters
5690
+ # A list of `ConformancePackInputParameter` objects.
5691
+ # @return [Array<Types::ConformancePackInputParameter>]
5692
+ #
5693
+ # @!attribute [rw] excluded_accounts
5694
+ # A list of AWS accounts to be excluded from an organization
5695
+ # conformance pack while deploying a conformance pack.
5696
+ # @return [Array<String>]
5697
+ #
5698
+ # @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/PutOrganizationConformancePackRequest AWS API Documentation
5699
+ #
5700
+ class PutOrganizationConformancePackRequest < Struct.new(
5701
+ :organization_conformance_pack_name,
5702
+ :template_s3_uri,
5703
+ :template_body,
5704
+ :delivery_s3_bucket,
5705
+ :delivery_s3_key_prefix,
5706
+ :conformance_pack_input_parameters,
5707
+ :excluded_accounts)
5708
+ include Aws::Structure
5709
+ end
5710
+
5711
+ # @!attribute [rw] organization_conformance_pack_arn
5712
+ # ARN of the organization conformance pack.
5713
+ # @return [String]
5714
+ #
5715
+ # @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/PutOrganizationConformancePackResponse AWS API Documentation
5716
+ #
5717
+ class PutOrganizationConformancePackResponse < Struct.new(
5718
+ :organization_conformance_pack_arn)
5719
+ include Aws::Structure
5720
+ end
5721
+
4540
5722
  # @note When making an API call, you may pass PutRemediationConfigurationsRequest
4541
5723
  # data as a hash:
4542
5724
  #
@@ -5690,7 +6872,7 @@ module Aws::ConfigService
5690
6872
  #
5691
6873
  # {
5692
6874
  # account_id: "AccountId",
5693
- # member_account_rule_status: "CREATE_SUCCESSFUL", # accepts CREATE_SUCCESSFUL, CREATE_IN_PROGRESS, CREATE_FAILED, UPDATE_SUCCESSFUL, UPDATE_FAILED, UPDATE_IN_PROGRESS, DELETE_SUCCESSFUL, DELETE_FAILED, DELETE_IN_PROGRESS
6875
+ # member_account_rule_status: "CREATE_SUCCESSFUL", # accepts CREATE_SUCCESSFUL, CREATE_IN_PROGRESS, CREATE_FAILED, DELETE_SUCCESSFUL, DELETE_FAILED, DELETE_IN_PROGRESS, UPDATE_SUCCESSFUL, UPDATE_IN_PROGRESS, UPDATE_FAILED
5694
6876
  # }
5695
6877
  #
5696
6878
  # @!attribute [rw] account_id