aws-sdk-configservice 1.131.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: cb64d2658c87e72c04070d5185b9c84880466ab9f2eb39387997acb0fd3ea3ec
4
- data.tar.gz: 9146bb00a0276456027405667ef6ae84ab008d29d9d4bd68acb0f5ae8faba9f6
3
+ metadata.gz: 9314d4cac81fa9421cc493d217d42d248c5934046caf6abe853ee51207efb3e6
4
+ data.tar.gz: 970436f79a1cc9ce81bd7b5324fc77b74b5e1335760b3d9d615b22c54039ded1
5
5
  SHA512:
6
- metadata.gz: 690ba803df04680d9a341d8ee2a8f4f8b6d7ca9655272535af47f9888ac6fcb9d8a5790c2e731318e3fd8cd1cd2d1aa43e3a97aa3cad9c23bbe8e4176be8e8ef
7
- data.tar.gz: 72fa7135eef70d62fe97c13139dbefc64d825e3757c89f51f1d63d18d036653cd8c046e43c54cd77d49481067423ac9f0725dcece46504f1ee01befe175cc5ba
6
+ metadata.gz: ed308b49ddea56357aae39b74a279ee4636188321a43d466d203a8fd47d97e08b3ff857f8754ff65305911a2ca597b98f8516f9fc54e009b1f89991bfe3c1a3e
7
+ data.tar.gz: ab0aadf0ab75c67e7402c188cb6582a1f789471fb257c8ce682cdf5aba95faf6be432d6bd5094d3ce4f0bb89cf973c1f87aeb2b075f77c2fe7779b61e3502be8
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
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
+
9
+ 1.132.0 (2025-07-21)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.131.0 (2025-06-30)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.131.0
1
+ 1.133.0
@@ -95,7 +95,7 @@ module Aws::ConfigService
95
95
  # class name or an instance of a plugin class.
96
96
  #
97
97
  # @option options [required, Aws::CredentialProvider] :credentials
98
- # Your AWS credentials. This can be an instance of any one of the
98
+ # Your AWS credentials used for authentication. This can be an instance of any one of the
99
99
  # following classes:
100
100
  #
101
101
  # * `Aws::Credentials` - Used for configuring static, non-refreshing
@@ -128,18 +128,23 @@ module Aws::ConfigService
128
128
  # locations will be searched for credentials:
129
129
  #
130
130
  # * `Aws.config[:credentials]`
131
+ #
131
132
  # * The `:access_key_id`, `:secret_access_key`, `:session_token`, and
132
133
  # `:account_id` options.
133
- # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY'],
134
- # ENV['AWS_SESSION_TOKEN'], and ENV['AWS_ACCOUNT_ID']
134
+ #
135
+ # * `ENV['AWS_ACCESS_KEY_ID']`, `ENV['AWS_SECRET_ACCESS_KEY']`,
136
+ # `ENV['AWS_SESSION_TOKEN']`, and `ENV['AWS_ACCOUNT_ID']`.
137
+ #
135
138
  # * `~/.aws/credentials`
139
+ #
136
140
  # * `~/.aws/config`
141
+ #
137
142
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
138
143
  # are very aggressive. Construct and pass an instance of
139
144
  # `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
140
145
  # enable retries and extended timeouts. Instance profile credential
141
- # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
142
- # to true.
146
+ # fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
147
+ # to `true`.
143
148
  #
144
149
  # @option options [required, String] :region
145
150
  # The AWS region to connect to. The configured `:region` is
@@ -167,6 +172,11 @@ module Aws::ConfigService
167
172
  # When false, the request will raise a `RetryCapacityNotAvailableError` and will
168
173
  # not retry instead of sleeping.
169
174
  #
175
+ # @option options [Array<String>] :auth_scheme_preference
176
+ # A list of preferred authentication schemes to use when making a request. Supported values are:
177
+ # `sigv4`, `sigv4a`, `httpBearerAuth`, and `noAuth`. When set using `ENV['AWS_AUTH_SCHEME_PREFERENCE']` or in
178
+ # shared config as `auth_scheme_preference`, the value should be a comma-separated list.
179
+ #
170
180
  # @option options [Boolean] :client_side_monitoring (false)
171
181
  # When `true`, client-side metrics will be collected for all API requests from
172
182
  # this client.
@@ -253,8 +263,8 @@ module Aws::ConfigService
253
263
  # 4 times. Used in `standard` and `adaptive` retry modes.
254
264
  #
255
265
  # @option options [String] :profile ("default")
256
- # Used when loading credentials from the shared credentials file
257
- # at HOME/.aws/credentials. When not specified, 'default' is used.
266
+ # Used when loading credentials from the shared credentials file at `HOME/.aws/credentials`.
267
+ # When not specified, 'default' is used.
258
268
  #
259
269
  # @option options [String] :request_checksum_calculation ("when_supported")
260
270
  # Determines when a checksum will be calculated for request payloads. Values are:
@@ -374,7 +384,7 @@ module Aws::ConfigService
374
384
  # `Aws::Telemetry::OTelProvider` for telemetry provider.
375
385
  #
376
386
  # @option options [Aws::TokenProvider] :token_provider
377
- # A Bearer Token Provider. This can be an instance of any one of the
387
+ # Your Bearer token used for authentication. This can be an instance of any one of the
378
388
  # following classes:
379
389
  #
380
390
  # * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
@@ -716,31 +726,27 @@ module Aws::ConfigService
716
726
  # You can check the state of a rule by using the `DescribeConfigRules`
717
727
  # request.
718
728
  #
719
- # <note markdown="1"> **Recommendation: Stop recording resource compliance before deleting
720
- # rules**
721
- #
722
- # It is highly recommended that you stop recording for the
723
- # `AWS::Config::ResourceCompliance` resource type before you delete
724
- # rules in your account. Deleting rules creates CIs for
725
- # `AWS::Config::ResourceCompliance` and can affect your Config
726
- # [configuration recorder][1] costs. If you are deleting rules which
727
- # evaluate a large number of resource types, this can lead to a spike in
728
- # the number of CIs recorded.
729
- #
730
- # Best practice:
729
+ # <note markdown="1"> **Recommendation: Consider excluding the
730
+ # `AWS::Config::ResourceCompliance` resource type from recording before
731
+ # deleting rules**
731
732
  #
732
- # 1. Stop recording `AWS::Config::ResourceCompliance`
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.
733
738
  #
734
- # 2. Delete rule(s)
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.
735
742
  #
736
- # 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.
737
747
  #
738
748
  # </note>
739
749
  #
740
- #
741
- #
742
- # [1]: https://docs.aws.amazon.com/config/latest/developerguide/stop-start-recorder.html
743
- #
744
750
  # @option params [required, String] :config_rule_name
745
751
  # The name of the Config rule that you want to delete.
746
752
  #
@@ -831,6 +837,27 @@ module Aws::ConfigService
831
837
  # deletion is complete. You cannot update a conformance pack while it is
832
838
  # in this state.
833
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
+ #
834
861
  # @option params [required, String] :conformance_pack_name
835
862
  # Name of the conformance pack you want to delete.
836
863
  #
@@ -916,6 +943,27 @@ module Aws::ConfigService
916
943
  # deletion is complete. You cannot update a rule while it is in this
917
944
  # state.
918
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
+ #
919
967
  # @option params [required, String] :organization_config_rule_name
920
968
  # The name of organization Config rule that you want to delete.
921
969
  #
@@ -949,6 +997,27 @@ module Aws::ConfigService
949
997
  # until the deletion is complete. You cannot update a conformance pack
950
998
  # while it is in this state.
951
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
+ #
952
1021
  # @option params [required, String] :organization_conformance_pack_name
953
1022
  # The name of organization conformance pack that you want to delete.
954
1023
  #
@@ -1863,7 +1932,7 @@ module Aws::ConfigService
1863
1932
  #
1864
1933
  # @option params [Array<String>] :configuration_recorder_names
1865
1934
  # The name of the configuration recorder. If the name is not specified,
1866
- # the opertation returns the status for the customer managed
1935
+ # the operation returns the status for the customer managed
1867
1936
  # configuration recorder configured for the account, if applicable.
1868
1937
  #
1869
1938
  # <note markdown="1"> When making a request to this operation, you can only specify one
@@ -1930,6 +1999,11 @@ module Aws::ConfigService
1930
1999
  # A list of names of the configuration recorders that you want to
1931
2000
  # specify.
1932
2001
  #
2002
+ # <note markdown="1"> When making a request to this operation, you can only specify one
2003
+ # configuration recorder.
2004
+ #
2005
+ # </note>
2006
+ #
1933
2007
  # @option params [String] :service_principal
1934
2008
  # For service-linked configuration recorders, you can use the service
1935
2009
  # principal of the linked Amazon Web Services service to specify the
@@ -3842,15 +3916,23 @@ module Aws::ConfigService
3842
3916
  end
3843
3917
 
3844
3918
  # For accurate reporting on the compliance status, you must record the
3845
- # `AWS::Config::ResourceCompliance` resource type. For more information,
3846
- # 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.
3927
+ #
3928
+ # **Contents**
3847
3929
  #
3848
- # Returns a list of `ConfigurationItems` for the specified resource. The
3849
- # list contains details about each state of the resource during the
3930
+ # The list contains details about each state of the resource during the
3850
3931
  # specified time interval. If you specified a retention period to retain
3851
- # your `ConfigurationItems` between a minimum of 30 days and a maximum
3852
- # of 7 years (2557 days), Config returns the `ConfigurationItems` for
3853
- # 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**
3854
3936
  #
3855
3937
  # The response is paginated. By default, Config returns a limit of 10
3856
3938
  # configuration items per page. You can customize this number with the
@@ -4262,24 +4344,44 @@ module Aws::ConfigService
4262
4344
  req.send_request(options)
4263
4345
  end
4264
4346
 
4265
- # Accepts a resource type and returns a list of resource identifiers for
4266
- # the resources of that type. A resource identifier includes the
4267
- # resource type, ID, and (if available) the custom resource name. The
4268
- # results consist of resources that Config has discovered, including
4269
- # those that Config is not currently recording. You can narrow the
4270
- # results to include only resources that have specific resource IDs or a
4271
- # 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.
4272
4356
  #
4273
4357
  # <note markdown="1"> You can specify either resource IDs or a resource name, but not both,
4274
4358
  # in the same request.
4275
4359
  #
4276
4360
  # </note>
4277
4361
  #
4278
- # The response is paginated. By default, Config lists 100 resource
4279
- # identifiers on each page. You can customize this number with the
4280
- # `limit` parameter. The response includes a `nextToken` string. To get
4281
- # the next page of results, run the request again and specify the string
4282
- # 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.
4283
4385
  #
4284
4386
  # @option params [required, String] :resource_type
4285
4387
  # The type of resources that you want Config to list in the response.
@@ -4943,6 +5045,18 @@ module Aws::ConfigService
4943
5045
  # conformance packs you can have per account, see [ **Service Limits**
4944
5046
  # ][1] in the *Config Developer Guide*.
4945
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
+ #
4946
5060
  # This API creates a service-linked role
4947
5061
  # `AWSServiceRoleForConfigConforms` in your account. The service-linked
4948
5062
  # role is created only when the role does not exist in your account.
@@ -4976,7 +5090,7 @@ module Aws::ConfigService
4976
5090
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/storage-class-intro.html
4977
5091
  #
4978
5092
  # @option params [String] :template_body
4979
- # A string containing the full conformance pack template body. The
5093
+ # A string that contains the full conformance pack template body. The
4980
5094
  # structure containing the template body has a minimum length of 1 byte
4981
5095
  # and a maximum length of 51,200 bytes.
4982
5096
  #
@@ -5362,6 +5476,18 @@ module Aws::ConfigService
5362
5476
  # ensure Organizations `ListDelegatedAdministrator` permissions are
5363
5477
  # added. An organization can have up to 3 delegated administrators.
5364
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
+ #
5365
5491
  # This API enables organization service access for
5366
5492
  # `config-multiaccountsetup.amazonaws.com` through the
5367
5493
  # `EnableAWSServiceAccess` action and creates a service-linked role
@@ -5409,9 +5535,9 @@ module Aws::ConfigService
5409
5535
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/storage-class-intro.html
5410
5536
  #
5411
5537
  # @option params [String] :template_body
5412
- # A string containing full conformance pack template body. Structure
5413
- # containing the template body with a minimum length of 1 byte and a
5414
- # 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.
5415
5541
  #
5416
5542
  # @option params [String] :delivery_s3_bucket
5417
5543
  # The name of the Amazon S3 bucket where Config stores conformance pack
@@ -5850,8 +5976,9 @@ module Aws::ConfigService
5850
5976
  # `recordingMode`, and `recordingScope` is set by the service that is
5851
5977
  # linked to the configuration recorder.
5852
5978
  #
5853
- # For more information, see [ **Working with the Configuration
5854
- # 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*.
5855
5982
  #
5856
5983
  # This API creates a service-linked role `AWSServiceRoleForConfig` in
5857
5984
  # your account. The service-linked role is created only when the role
@@ -6289,8 +6416,11 @@ module Aws::ConfigService
6289
6416
  # Returns an `EvaluationContext` object.
6290
6417
  #
6291
6418
  # @option params [required, String] :evaluation_mode
6292
- # The mode of an evaluation. The valid values for this API are
6293
- # `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>
6294
6424
  #
6295
6425
  # @option params [Integer] :evaluation_timeout
6296
6426
  # The timeout for an evaluation. The default is 900 seconds. You cannot
@@ -6485,7 +6615,7 @@ module Aws::ConfigService
6485
6615
  tracer: tracer
6486
6616
  )
6487
6617
  context[:gem_name] = 'aws-sdk-configservice'
6488
- context[:gem_version] = '1.131.0'
6618
+ context[:gem_version] = '1.133.0'
6489
6619
  Seahorse::Client::Request.new(handlers, context)
6490
6620
  end
6491
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.131.0'
57
+ GEM_VERSION = '1.133.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -18,6 +18,7 @@ module Aws
18
18
  ?account_id: String,
19
19
  ?active_endpoint_cache: bool,
20
20
  ?adaptive_retry_wait_to_fill: bool,
21
+ ?auth_scheme_preference: Array[String],
21
22
  ?client_side_monitoring: bool,
22
23
  ?client_side_monitoring_client_id: String,
23
24
  ?client_side_monitoring_host: String,
data/sig/resource.rbs CHANGED
@@ -18,6 +18,7 @@ module Aws
18
18
  ?account_id: String,
19
19
  ?active_endpoint_cache: bool,
20
20
  ?adaptive_retry_wait_to_fill: bool,
21
+ ?auth_scheme_preference: Array[String],
21
22
  ?client_side_monitoring: bool,
22
23
  ?client_side_monitoring_client_id: String,
23
24
  ?client_side_monitoring_host: String,
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.131.0
4
+ version: 1.133.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -18,7 +18,7 @@ dependencies:
18
18
  version: '3'
19
19
  - - ">="
20
20
  - !ruby/object:Gem::Version
21
- version: 3.225.0
21
+ version: 3.227.0
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -28,7 +28,7 @@ dependencies:
28
28
  version: '3'
29
29
  - - ">="
30
30
  - !ruby/object:Gem::Version
31
- version: 3.225.0
31
+ version: 3.227.0
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement