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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-configservice/client.rb +168 -48
- data/lib/aws-sdk-configservice/types.rb +73 -32
- data/lib/aws-sdk-configservice.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9314d4cac81fa9421cc493d217d42d248c5934046caf6abe853ee51207efb3e6
|
4
|
+
data.tar.gz: 970436f79a1cc9ce81bd7b5324fc77b74b5e1335760b3d9d615b22c54039ded1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ed308b49ddea56357aae39b74a279ee4636188321a43d466d203a8fd47d97e08b3ff857f8754ff65305911a2ca597b98f8516f9fc54e009b1f89991bfe3c1a3e
|
7
|
+
data.tar.gz: ab0aadf0ab75c67e7402c188cb6582a1f789471fb257c8ce682cdf5aba95faf6be432d6bd5094d3ce4f0bb89cf973c1f87aeb2b075f77c2fe7779b61e3502be8
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
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:
|
730
|
-
#
|
729
|
+
# <note markdown="1"> **Recommendation: Consider excluding the
|
730
|
+
# `AWS::Config::ResourceCompliance` resource type from recording before
|
731
|
+
# deleting rules**
|
731
732
|
#
|
732
|
-
#
|
733
|
-
# `AWS::Config::ResourceCompliance`
|
734
|
-
#
|
735
|
-
#
|
736
|
-
#
|
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
|
-
#
|
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
|
-
#
|
743
|
-
#
|
744
|
-
#
|
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
|
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.
|
3856
|
-
#
|
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
|
-
#
|
3859
|
-
#
|
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
|
3862
|
-
#
|
3863
|
-
#
|
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
|
-
#
|
4276
|
-
# the resources of that type. A resource identifier
|
4277
|
-
# resource type, ID, and (if available) the custom resource
|
4278
|
-
#
|
4279
|
-
#
|
4280
|
-
# results
|
4281
|
-
#
|
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
|
-
#
|
4289
|
-
#
|
4290
|
-
#
|
4291
|
-
# the
|
4292
|
-
# for
|
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
|
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
|
5423
|
-
# containing the template body with a minimum length of 1 byte
|
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
|
5864
|
-
# Recorder** ][1] in
|
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.
|
6303
|
-
#
|
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.
|
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
|
-
#
|
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
|
-
#
|
619
|
-
#
|
620
|
-
#
|
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
|
-
#
|
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
|
-
#
|
1498
|
-
#
|
1499
|
-
#
|
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.
|
1515
|
-
#
|
1516
|
-
#
|
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 "`
|
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
|
3162
|
-
#
|
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
|
-
#
|
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
|
-
#
|
5272
|
-
#
|
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
|
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
|
7249
|
-
# containing the template body with a minimum length of 1
|
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 "`
|
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.
|
9053
|
-
#
|
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
|