aws-sdk-configservice 1.132.0 → 1.133.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
  SHA256:
3
- metadata.gz: 4be3e6e04b41776776c8e5fd523cf49e3ec0b7f9304c4ddf2b5ce7ed484e06e4
4
- data.tar.gz: 527147ce918879df071e10fbb12d2279ffd3de638b5985b3ae3cc7c57a6b763a
3
+ metadata.gz: 9314d4cac81fa9421cc493d217d42d248c5934046caf6abe853ee51207efb3e6
4
+ data.tar.gz: 970436f79a1cc9ce81bd7b5324fc77b74b5e1335760b3d9d615b22c54039ded1
5
5
  SHA512:
6
- metadata.gz: b0586ac7b678f45634d75052d5443ea7118dcc3601bd0182e650c4da036ce5e402773474173b6f8910f15621fede4ee57ffa8237091f407bfadeb71ab4f133ed
7
- data.tar.gz: f020a639636e4a56cde6a930139478f377a67a555188c8b315720c8c9ec2c679c90df0c6e52b9ad392306d5d035e967751d14534f0f2ab79f88e7636ee151641
6
+ metadata.gz: ed308b49ddea56357aae39b74a279ee4636188321a43d466d203a8fd47d97e08b3ff857f8754ff65305911a2ca597b98f8516f9fc54e009b1f89991bfe3c1a3e
7
+ data.tar.gz: ab0aadf0ab75c67e7402c188cb6582a1f789471fb257c8ce682cdf5aba95faf6be432d6bd5094d3ce4f0bb89cf973c1f87aeb2b075f77c2fe7779b61e3502be8
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.133.0 (2025-07-25)
5
+ ------------------
6
+
7
+ * Feature - Documentation improvements have been made to the EvaluationModel and DescribeConfigurationRecorders APIs.
8
+
4
9
  1.132.0 (2025-07-21)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.132.0
1
+ 1.133.0
@@ -726,31 +726,27 @@ module Aws::ConfigService
726
726
  # You can check the state of a rule by using the `DescribeConfigRules`
727
727
  # request.
728
728
  #
729
- # <note markdown="1"> **Recommendation: Stop recording resource compliance before deleting
730
- # rules**
729
+ # <note markdown="1"> **Recommendation: Consider excluding the
730
+ # `AWS::Config::ResourceCompliance` resource type from recording before
731
+ # deleting rules**
731
732
  #
732
- # It is highly recommended that you stop recording for the
733
- # `AWS::Config::ResourceCompliance` resource type before you delete
734
- # rules in your account. Deleting rules creates CIs for
735
- # `AWS::Config::ResourceCompliance` and can affect your Config
736
- # [configuration recorder][1] costs. If you are deleting rules which
737
- # evaluate a large number of resource types, this can lead to a spike in
738
- # the number of CIs recorded.
733
+ # Deleting rules creates configuration items (CIs) for
734
+ # `AWS::Config::ResourceCompliance` that can affect your costs for the
735
+ # configuration recorder. If you are deleting rules which evaluate a
736
+ # large number of resource types, this can lead to a spike in the number
737
+ # of CIs recorded.
739
738
  #
740
- # Best practice:
739
+ # To avoid the associated costs, you can opt to disable recording for
740
+ # the `AWS::Config::ResourceCompliance` resource type before deleting
741
+ # rules, and re-enable recording after the rules have been deleted.
741
742
  #
742
- # 1. Stop recording `AWS::Config::ResourceCompliance`
743
- #
744
- # 2. Delete rule(s)
745
- #
746
- # 3. Turn on recording for `AWS::Config::ResourceCompliance`
743
+ # However, since deleting rules is an asynchronous process, it might
744
+ # take an hour or more to complete. During the time when recording is
745
+ # disabled for `AWS::Config::ResourceCompliance`, rule evaluations will
746
+ # not be recorded in the associated resource’s history.
747
747
  #
748
748
  # </note>
749
749
  #
750
- #
751
- #
752
- # [1]: https://docs.aws.amazon.com/config/latest/developerguide/stop-start-recorder.html
753
- #
754
750
  # @option params [required, String] :config_rule_name
755
751
  # The name of the Config rule that you want to delete.
756
752
  #
@@ -841,6 +837,27 @@ module Aws::ConfigService
841
837
  # deletion is complete. You cannot update a conformance pack while it is
842
838
  # in this state.
843
839
  #
840
+ # <note markdown="1"> **Recommendation: Consider excluding the
841
+ # `AWS::Config::ResourceCompliance` resource type from recording before
842
+ # deleting rules**
843
+ #
844
+ # Deleting rules creates configuration items (CIs) for
845
+ # `AWS::Config::ResourceCompliance` that can affect your costs for the
846
+ # configuration recorder. If you are deleting rules which evaluate a
847
+ # large number of resource types, this can lead to a spike in the number
848
+ # of CIs recorded.
849
+ #
850
+ # To avoid the associated costs, you can opt to disable recording for
851
+ # the `AWS::Config::ResourceCompliance` resource type before deleting
852
+ # rules, and re-enable recording after the rules have been deleted.
853
+ #
854
+ # However, since deleting rules is an asynchronous process, it might
855
+ # take an hour or more to complete. During the time when recording is
856
+ # disabled for `AWS::Config::ResourceCompliance`, rule evaluations will
857
+ # not be recorded in the associated resource’s history.
858
+ #
859
+ # </note>
860
+ #
844
861
  # @option params [required, String] :conformance_pack_name
845
862
  # Name of the conformance pack you want to delete.
846
863
  #
@@ -926,6 +943,27 @@ module Aws::ConfigService
926
943
  # deletion is complete. You cannot update a rule while it is in this
927
944
  # state.
928
945
  #
946
+ # <note markdown="1"> **Recommendation: Consider excluding the
947
+ # `AWS::Config::ResourceCompliance` resource type from recording before
948
+ # deleting rules**
949
+ #
950
+ # Deleting rules creates configuration items (CIs) for
951
+ # `AWS::Config::ResourceCompliance` that can affect your costs for the
952
+ # configuration recorder. If you are deleting rules which evaluate a
953
+ # large number of resource types, this can lead to a spike in the number
954
+ # of CIs recorded.
955
+ #
956
+ # To avoid the associated costs, you can opt to disable recording for
957
+ # the `AWS::Config::ResourceCompliance` resource type before deleting
958
+ # rules, and re-enable recording after the rules have been deleted.
959
+ #
960
+ # However, since deleting rules is an asynchronous process, it might
961
+ # take an hour or more to complete. During the time when recording is
962
+ # disabled for `AWS::Config::ResourceCompliance`, rule evaluations will
963
+ # not be recorded in the associated resource’s history.
964
+ #
965
+ # </note>
966
+ #
929
967
  # @option params [required, String] :organization_config_rule_name
930
968
  # The name of organization Config rule that you want to delete.
931
969
  #
@@ -959,6 +997,27 @@ module Aws::ConfigService
959
997
  # until the deletion is complete. You cannot update a conformance pack
960
998
  # while it is in this state.
961
999
  #
1000
+ # <note markdown="1"> **Recommendation: Consider excluding the
1001
+ # `AWS::Config::ResourceCompliance` resource type from recording before
1002
+ # deleting rules**
1003
+ #
1004
+ # Deleting rules creates configuration items (CIs) for
1005
+ # `AWS::Config::ResourceCompliance` that can affect your costs for the
1006
+ # configuration recorder. If you are deleting rules which evaluate a
1007
+ # large number of resource types, this can lead to a spike in the number
1008
+ # of CIs recorded.
1009
+ #
1010
+ # To avoid the associated costs, you can opt to disable recording for
1011
+ # the `AWS::Config::ResourceCompliance` resource type before deleting
1012
+ # rules, and re-enable recording after the rules have been deleted.
1013
+ #
1014
+ # However, since deleting rules is an asynchronous process, it might
1015
+ # take an hour or more to complete. During the time when recording is
1016
+ # disabled for `AWS::Config::ResourceCompliance`, rule evaluations will
1017
+ # not be recorded in the associated resource’s history.
1018
+ #
1019
+ # </note>
1020
+ #
962
1021
  # @option params [required, String] :organization_conformance_pack_name
963
1022
  # The name of organization conformance pack that you want to delete.
964
1023
  #
@@ -1873,7 +1932,7 @@ module Aws::ConfigService
1873
1932
  #
1874
1933
  # @option params [Array<String>] :configuration_recorder_names
1875
1934
  # The name of the configuration recorder. If the name is not specified,
1876
- # the opertation returns the status for the customer managed
1935
+ # the operation returns the status for the customer managed
1877
1936
  # configuration recorder configured for the account, if applicable.
1878
1937
  #
1879
1938
  # <note markdown="1"> When making a request to this operation, you can only specify one
@@ -1940,6 +1999,11 @@ module Aws::ConfigService
1940
1999
  # A list of names of the configuration recorders that you want to
1941
2000
  # specify.
1942
2001
  #
2002
+ # <note markdown="1"> When making a request to this operation, you can only specify one
2003
+ # configuration recorder.
2004
+ #
2005
+ # </note>
2006
+ #
1943
2007
  # @option params [String] :service_principal
1944
2008
  # For service-linked configuration recorders, you can use the service
1945
2009
  # principal of the linked Amazon Web Services service to specify the
@@ -3852,15 +3916,23 @@ module Aws::ConfigService
3852
3916
  end
3853
3917
 
3854
3918
  # For accurate reporting on the compliance status, you must record the
3855
- # `AWS::Config::ResourceCompliance` resource type. For more information,
3856
- # see [Selecting Which Resources Config Records][1].
3919
+ # `AWS::Config::ResourceCompliance` resource type.
3920
+ #
3921
+ # For more information, see [Recording Amazon Web Services
3922
+ # Resources][1]
3923
+ # in the *Config Resources Developer Guide*.
3924
+ #
3925
+ # Returns a list of configurations items (CIs) for the specified
3926
+ # resource.
3857
3927
  #
3858
- # Returns a list of `ConfigurationItems` for the specified resource. The
3859
- # list contains details about each state of the resource during the
3928
+ # **Contents**
3929
+ #
3930
+ # The list contains details about each state of the resource during the
3860
3931
  # specified time interval. If you specified a retention period to retain
3861
- # your `ConfigurationItems` between a minimum of 30 days and a maximum
3862
- # of 7 years (2557 days), Config returns the `ConfigurationItems` for
3863
- # the specified retention period.
3932
+ # your CIs between a minimum of 30 days and a maximum of 7 years (2557
3933
+ # days), Config returns the CIs for the specified retention period.
3934
+ #
3935
+ # **Pagination**
3864
3936
  #
3865
3937
  # The response is paginated. By default, Config returns a limit of 10
3866
3938
  # configuration items per page. You can customize this number with the
@@ -4272,24 +4344,44 @@ module Aws::ConfigService
4272
4344
  req.send_request(options)
4273
4345
  end
4274
4346
 
4275
- # Accepts a resource type and returns a list of resource identifiers for
4276
- # the resources of that type. A resource identifier includes the
4277
- # resource type, ID, and (if available) the custom resource name. The
4278
- # results consist of resources that Config has discovered, including
4279
- # those that Config is not currently recording. You can narrow the
4280
- # results to include only resources that have specific resource IDs or a
4281
- # resource name.
4347
+ # Returns a list of resource resource identifiers for the specified
4348
+ # resource types for the resources of that type. A *resource identifier*
4349
+ # includes the resource type, ID, and (if available) the custom resource
4350
+ # name.
4351
+ #
4352
+ # The results consist of resources that Config has *discovered*,
4353
+ # including those that Config is not currently recording. You can narrow
4354
+ # the results to include only resources that have specific resource IDs
4355
+ # or a resource name.
4282
4356
  #
4283
4357
  # <note markdown="1"> You can specify either resource IDs or a resource name, but not both,
4284
4358
  # in the same request.
4285
4359
  #
4286
4360
  # </note>
4287
4361
  #
4288
- # The response is paginated. By default, Config lists 100 resource
4289
- # identifiers on each page. You can customize this number with the
4290
- # `limit` parameter. The response includes a `nextToken` string. To get
4291
- # the next page of results, run the request again and specify the string
4292
- # for the `nextToken` parameter.
4362
+ # *CloudFormation stack recording behavior in Config*
4363
+ #
4364
+ # When a CloudFormation stack fails to create (for example, it enters
4365
+ # the `ROLLBACK_FAILED` state), Config does not record a configuration
4366
+ # item (CI) for that stack. Configuration items are only recorded for
4367
+ # stacks that reach the following states:
4368
+ #
4369
+ # * `CREATE_COMPLETE`
4370
+ #
4371
+ # * `UPDATE_COMPLETE`
4372
+ #
4373
+ # * `UPDATE_ROLLBACK_COMPLETE`
4374
+ #
4375
+ # * `UPDATE_ROLLBACK_FAILED`
4376
+ #
4377
+ # * `DELETE_FAILED`
4378
+ #
4379
+ # * `DELETE_COMPLETE`
4380
+ #
4381
+ # Because no CI is created for a failed stack creation, you won't see
4382
+ # configuration history for that stack in Config, even after the stack
4383
+ # is deleted. This helps make sure that Config only tracks resources
4384
+ # that were successfully provisioned.
4293
4385
  #
4294
4386
  # @option params [required, String] :resource_type
4295
4387
  # The type of resources that you want Config to list in the response.
@@ -4953,6 +5045,18 @@ module Aws::ConfigService
4953
5045
  # conformance packs you can have per account, see [ **Service Limits**
4954
5046
  # ][1] in the *Config Developer Guide*.
4955
5047
  #
5048
+ # When you use `PutConformancePack` to deploy conformance packs in your
5049
+ # account, the operation can create Config rules and remediation actions
5050
+ # without requiring `config:PutConfigRule` or
5051
+ # `config:PutRemediationConfigurations` permissions in your account IAM
5052
+ # policies.
5053
+ #
5054
+ # This API uses the `AWSServiceRoleForConfigConforms` service-linked
5055
+ # role in your account to create conformance pack resources. This
5056
+ # service-linked role includes the permissions to create Config rules
5057
+ # and remediation configurations, even if your account IAM policies
5058
+ # explicitly deny these actions.
5059
+ #
4956
5060
  # This API creates a service-linked role
4957
5061
  # `AWSServiceRoleForConfigConforms` in your account. The service-linked
4958
5062
  # role is created only when the role does not exist in your account.
@@ -4986,7 +5090,7 @@ module Aws::ConfigService
4986
5090
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/storage-class-intro.html
4987
5091
  #
4988
5092
  # @option params [String] :template_body
4989
- # A string containing the full conformance pack template body. The
5093
+ # A string that contains the full conformance pack template body. The
4990
5094
  # structure containing the template body has a minimum length of 1 byte
4991
5095
  # and a maximum length of 51,200 bytes.
4992
5096
  #
@@ -5372,6 +5476,18 @@ module Aws::ConfigService
5372
5476
  # ensure Organizations `ListDelegatedAdministrator` permissions are
5373
5477
  # added. An organization can have up to 3 delegated administrators.
5374
5478
  #
5479
+ # When you use `PutOrganizationConformancePack` to deploy conformance
5480
+ # packs across member accounts, the operation can create Config rules
5481
+ # and remediation actions without requiring `config:PutConfigRule` or
5482
+ # `config:PutRemediationConfigurations` permissions in member account
5483
+ # IAM policies.
5484
+ #
5485
+ # This API uses the `AWSServiceRoleForConfigConforms` service-linked
5486
+ # role in each member account to create conformance pack resources. This
5487
+ # service-linked role includes the permissions to create Config rules
5488
+ # and remediation configurations, even if member account IAM policies
5489
+ # explicitly deny these actions.
5490
+ #
5375
5491
  # This API enables organization service access for
5376
5492
  # `config-multiaccountsetup.amazonaws.com` through the
5377
5493
  # `EnableAWSServiceAccess` action and creates a service-linked role
@@ -5419,9 +5535,9 @@ module Aws::ConfigService
5419
5535
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/storage-class-intro.html
5420
5536
  #
5421
5537
  # @option params [String] :template_body
5422
- # A string containing full conformance pack template body. Structure
5423
- # containing the template body with a minimum length of 1 byte and a
5424
- # maximum length of 51,200 bytes.
5538
+ # A string that contains the full conformance pack template body.
5539
+ # Structure containing the template body with a minimum length of 1 byte
5540
+ # and a maximum length of 51,200 bytes.
5425
5541
  #
5426
5542
  # @option params [String] :delivery_s3_bucket
5427
5543
  # The name of the Amazon S3 bucket where Config stores conformance pack
@@ -5860,8 +5976,9 @@ module Aws::ConfigService
5860
5976
  # `recordingMode`, and `recordingScope` is set by the service that is
5861
5977
  # linked to the configuration recorder.
5862
5978
  #
5863
- # For more information, see [ **Working with the Configuration
5864
- # Recorder** ][1] in the *Config Developer Guide*.
5979
+ # For more information and a list of supported services/service
5980
+ # principals, see [ **Working with the Configuration Recorder** ][1] in
5981
+ # the *Config Developer Guide*.
5865
5982
  #
5866
5983
  # This API creates a service-linked role `AWSServiceRoleForConfig` in
5867
5984
  # your account. The service-linked role is created only when the role
@@ -6299,8 +6416,11 @@ module Aws::ConfigService
6299
6416
  # Returns an `EvaluationContext` object.
6300
6417
  #
6301
6418
  # @option params [required, String] :evaluation_mode
6302
- # The mode of an evaluation. The valid values for this API are
6303
- # `DETECTIVE` and `PROACTIVE`.
6419
+ # The mode of an evaluation.
6420
+ #
6421
+ # <note markdown="1"> The only valid value for this API is `PROACTIVE`.
6422
+ #
6423
+ # </note>
6304
6424
  #
6305
6425
  # @option params [Integer] :evaluation_timeout
6306
6426
  # The timeout for an evaluation. The default is 900 seconds. You cannot
@@ -6495,7 +6615,7 @@ module Aws::ConfigService
6495
6615
  tracer: tracer
6496
6616
  )
6497
6617
  context[:gem_name] = 'aws-sdk-configservice'
6498
- context[:gem_version] = '1.132.0'
6618
+ context[:gem_version] = '1.133.0'
6499
6619
  Seahorse::Client::Request.new(handlers, context)
6500
6620
  end
6501
6621
 
@@ -611,18 +611,36 @@ module Aws::ConfigService
611
611
  # @return [Time]
612
612
  #
613
613
  # @!attribute [rw] configuration
614
- # The description of the resource configuration.
614
+ # A JSON-encoded string that contains the contents for the resource
615
+ # configuration. This string needs to be deserialized using
616
+ # `json.loads()` before you can access the contents.
615
617
  # @return [String]
616
618
  #
617
619
  # @!attribute [rw] supplementary_configuration
618
- # Configuration attributes that Config returns for certain resource
619
- # types to supplement the information returned for the configuration
620
- # parameter.
620
+ # A string to string map that contains additional contents for the
621
+ # resource configuration.Config returns this field for certain
622
+ # resource types to supplement the information returned for the
623
+ # `configuration` field.
624
+ #
625
+ # This string needs to be deserialized using `json.loads()` before you
626
+ # can access the contents.
621
627
  # @return [Hash<String,String>]
622
628
  #
623
629
  # @!attribute [rw] recording_frequency
624
630
  # The recording frequency that Config uses to record configuration
625
631
  # changes for the resource.
632
+ #
633
+ # <note markdown="1"> This field only appears in the API response when `DAILY` recording
634
+ # is enabled for a resource type. If this field is not present,
635
+ # `CONTINUOUS` recording is enabled for that resource type. For more
636
+ # information on daily recording and continuous recording, see
637
+ # [Recording Frequency][1] in the *Config Developer Guide*.
638
+ #
639
+ # </note>
640
+ #
641
+ #
642
+ #
643
+ # [1]: https://docs.aws.amazon.com/config/latest/developerguide/select-resources.html#select-resources-recording-frequency
626
644
  # @return [String]
627
645
  #
628
646
  # @!attribute [rw] configuration_item_delivery_time
@@ -1001,10 +1019,6 @@ module Aws::ConfigService
1001
1019
  # an evaluation for the rule. If you do not specify a scope,
1002
1020
  # evaluations are triggered when any resource in the recording group
1003
1021
  # changes.
1004
- #
1005
- # <note markdown="1"> The scope can be empty.
1006
- #
1007
- # </note>
1008
1022
  # @return [Types::Scope]
1009
1023
  #
1010
1024
  # @!attribute [rw] source
@@ -1490,18 +1504,36 @@ module Aws::ConfigService
1490
1504
  # @return [Array<Types::Relationship>]
1491
1505
  #
1492
1506
  # @!attribute [rw] configuration
1493
- # The description of the resource configuration.
1507
+ # A JSON-encoded string that contains the contents for the resource
1508
+ # configuration. This string needs to be deserialized using
1509
+ # `json.loads()` before you can access the contents.
1494
1510
  # @return [String]
1495
1511
  #
1496
1512
  # @!attribute [rw] supplementary_configuration
1497
- # Configuration attributes that Config returns for certain resource
1498
- # types to supplement the information returned for the `configuration`
1499
- # parameter.
1513
+ # A string to string map that contains additional contents for the
1514
+ # resource configuration.Config returns this field for certain
1515
+ # resource types to supplement the information returned for the
1516
+ # `configuration` field.
1517
+ #
1518
+ # This string to string map needs to be deserialized using
1519
+ # `json.loads()` before you can accessing the contents.
1500
1520
  # @return [Hash<String,String>]
1501
1521
  #
1502
1522
  # @!attribute [rw] recording_frequency
1503
1523
  # The recording frequency that Config uses to record configuration
1504
1524
  # changes for the resource.
1525
+ #
1526
+ # <note markdown="1"> This field only appears in the API response when `DAILY` recording
1527
+ # is enabled for a resource type. If this field is not present,
1528
+ # `CONTINUOUS` recording is enabled for that resource type. For more
1529
+ # information on daily recording and continuous recording, see
1530
+ # [Recording Frequency][1] in the *Config Developer Guide*.
1531
+ #
1532
+ # </note>
1533
+ #
1534
+ #
1535
+ #
1536
+ # [1]: https://docs.aws.amazon.com/config/latest/developerguide/select-resources.html#select-resources-recording-frequency
1505
1537
  # @return [String]
1506
1538
  #
1507
1539
  # @!attribute [rw] configuration_item_delivery_time
@@ -1511,9 +1543,10 @@ module Aws::ConfigService
1511
1543
  # configuration item (CI). If you are using daily recording, this
1512
1544
  # field will be populated. However, if you are using continuous
1513
1545
  # recording, this field will be omitted since the delivery time is
1514
- # instantaneous as the CI is available right away. For more
1515
- # information on daily recording and continuous recording, see
1516
- # [Recording Frequency][1] in the *Config Developer Guide*.
1546
+ # instantaneous as the CI is available right away.
1547
+ #
1548
+ # For more information on daily recording and continuous recording,
1549
+ # see [Recording Frequency][1] in the *Config Developer Guide*.
1517
1550
  #
1518
1551
  # </note>
1519
1552
  #
@@ -1572,8 +1605,8 @@ module Aws::ConfigService
1572
1605
  # recorder if you do not specify a name at creation time.
1573
1606
  #
1574
1607
  # For service-linked configuration recorders, Config automatically
1575
- # assigns a name that has the prefix "`AWS`" to a new service-linked
1576
- # configuration recorder.
1608
+ # assigns a name that has the prefix "`AWSConfigurationRecorderFor`"
1609
+ # to a new service-linked configuration recorder.
1577
1610
  #
1578
1611
  # <note markdown="1"> **Changing the name of a configuration recorder**
1579
1612
  #
@@ -3158,9 +3191,8 @@ module Aws::ConfigService
3158
3191
  #
3159
3192
  # @!attribute [rw] configuration_recorder_names
3160
3193
  # The name of the configuration recorder. If the name is not
3161
- # specified, the opertation returns the status for the customer
3162
- # managed configuration recorder configured for the account, if
3163
- # applicable.
3194
+ # specified, the operation returns the status for the customer managed
3195
+ # configuration recorder configured for the account, if applicable.
3164
3196
  #
3165
3197
  # <note markdown="1"> When making a request to this operation, you can only specify one
3166
3198
  # configuration recorder.
@@ -3209,6 +3241,11 @@ module Aws::ConfigService
3209
3241
  # @!attribute [rw] configuration_recorder_names
3210
3242
  # A list of names of the configuration recorders that you want to
3211
3243
  # specify.
3244
+ #
3245
+ # <note markdown="1"> When making a request to this operation, you can only specify one
3246
+ # configuration recorder.
3247
+ #
3248
+ # </note>
3212
3249
  # @return [Array<String>]
3213
3250
  #
3214
3251
  # @!attribute [rw] service_principal
@@ -5088,8 +5125,8 @@ module Aws::ConfigService
5088
5125
  # The output for the GetResourceConfigHistory action.
5089
5126
  #
5090
5127
  # @!attribute [rw] configuration_items
5091
- # A list that contains the configuration history of one or more
5092
- # resources.
5128
+ # An array of `ConfigurationItems` Objects. Contatins the
5129
+ # configuration history for one or more resources.
5093
5130
  # @return [Array<Types::ConfigurationItem>]
5094
5131
  #
5095
5132
  # @!attribute [rw] next_token
@@ -5268,8 +5305,9 @@ module Aws::ConfigService
5268
5305
  #
5269
5306
  class InsufficientPermissionsException < Aws::EmptyStructure; end
5270
5307
 
5271
- # You have provided a name for the customer managed configuration
5272
- # recorder that is not valid.
5308
+ # The configuration recorder name is not valid. The prefix
5309
+ # "`AWSConfigurationRecorderFor`" is reserved for service-linked
5310
+ # configuration recorders.
5273
5311
  #
5274
5312
  # @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/InvalidConfigurationRecorderNameException AWS API Documentation
5275
5313
  #
@@ -7016,7 +7054,7 @@ module Aws::ConfigService
7016
7054
  # @return [String]
7017
7055
  #
7018
7056
  # @!attribute [rw] template_body
7019
- # A string containing the full conformance pack template body. The
7057
+ # A string that contains the full conformance pack template body. The
7020
7058
  # structure containing the template body has a minimum length of 1
7021
7059
  # byte and a maximum length of 51,200 bytes.
7022
7060
  #
@@ -7245,9 +7283,9 @@ module Aws::ConfigService
7245
7283
  # @return [String]
7246
7284
  #
7247
7285
  # @!attribute [rw] template_body
7248
- # A string containing full conformance pack template body. Structure
7249
- # containing the template body with a minimum length of 1 byte and a
7250
- # maximum length of 51,200 bytes.
7286
+ # A string that contains the full conformance pack template body.
7287
+ # Structure containing the template body with a minimum length of 1
7288
+ # byte and a maximum length of 51,200 bytes.
7251
7289
  # @return [String]
7252
7290
  #
7253
7291
  # @!attribute [rw] delivery_s3_bucket
@@ -7484,8 +7522,8 @@ module Aws::ConfigService
7484
7522
  # The name of the specified configuration recorder.
7485
7523
  #
7486
7524
  # For service-linked configuration recorders, Config automatically
7487
- # assigns a name that has the prefix "`AWS`" to the new
7488
- # service-linked configuration recorder.
7525
+ # assigns a name that has the prefix "`AWSConfigurationRecorderFor`"
7526
+ # to the new service-linked configuration recorder.
7489
7527
  # @return [String]
7490
7528
  #
7491
7529
  # @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/PutServiceLinkedConfigurationRecorderResponse AWS API Documentation
@@ -9049,8 +9087,11 @@ module Aws::ConfigService
9049
9087
  # @return [Types::EvaluationContext]
9050
9088
  #
9051
9089
  # @!attribute [rw] evaluation_mode
9052
- # The mode of an evaluation. The valid values for this API are
9053
- # `DETECTIVE` and `PROACTIVE`.
9090
+ # The mode of an evaluation.
9091
+ #
9092
+ # <note markdown="1"> The only valid value for this API is `PROACTIVE`.
9093
+ #
9094
+ # </note>
9054
9095
  # @return [String]
9055
9096
  #
9056
9097
  # @!attribute [rw] evaluation_timeout
@@ -54,7 +54,7 @@ module Aws::ConfigService
54
54
  autoload :EndpointProvider, 'aws-sdk-configservice/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-configservice/endpoints'
56
56
 
57
- GEM_VERSION = '1.132.0'
57
+ GEM_VERSION = '1.133.0'
58
58
 
59
59
  end
60
60
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-configservice
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.132.0
4
+ version: 1.133.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services