aws-sdk-configservice 1.129.0 → 1.130.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 +157 -45
- data/lib/aws-sdk-configservice/types.rb +61 -27
- 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: 9961690d3db8f9d1b7c07f37ca63dcc5eace4a711a0211d8c7ad0ce35356df59
|
4
|
+
data.tar.gz: b96f36f19d5677fabcc74baf72b28f58ab0e69518f9d6a837e1cd33a0f5c0429
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d79808ba443711aa3f35b1736fe549d54ab0c1be926d65efd123265bf1c66016dc90d37950a1f7556d0f83340427ce883b5ad98b3dfa33db0e30132becc17058
|
7
|
+
data.tar.gz: 1c037f40e7292168c4b8d8b8fdc115c14e145cac58f4deddc6825dc8e43e4d4e30c49fc676da69ed9939f1d042d88f478b3e6c1534dafb6a52dc784841b158a1
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.130.0
|
@@ -716,31 +716,27 @@ module Aws::ConfigService
|
|
716
716
|
# You can check the state of a rule by using the `DescribeConfigRules`
|
717
717
|
# request.
|
718
718
|
#
|
719
|
-
# <note markdown="1"> **Recommendation:
|
720
|
-
#
|
719
|
+
# <note markdown="1"> **Recommendation: Consider excluding the
|
720
|
+
# `AWS::Config::ResourceCompliance` resource type from recording before
|
721
|
+
# deleting rules**
|
721
722
|
#
|
722
|
-
#
|
723
|
-
# `AWS::Config::ResourceCompliance`
|
724
|
-
#
|
725
|
-
#
|
726
|
-
#
|
727
|
-
# evaluate a large number of resource types, this can lead to a spike in
|
728
|
-
# the number of CIs recorded.
|
723
|
+
# Deleting rules creates configuration items (CIs) for
|
724
|
+
# `AWS::Config::ResourceCompliance` that can affect your costs for the
|
725
|
+
# configuration recorder. If you are deleting rules which evaluate a
|
726
|
+
# large number of resource types, this can lead to a spike in the number
|
727
|
+
# of CIs recorded.
|
729
728
|
#
|
730
|
-
#
|
729
|
+
# To avoid the associated costs, you can opt to disable recording for
|
730
|
+
# the `AWS::Config::ResourceCompliance` resource type before deleting
|
731
|
+
# rules, and re-enable recording after the rules have been deleted.
|
731
732
|
#
|
732
|
-
#
|
733
|
-
#
|
734
|
-
#
|
735
|
-
#
|
736
|
-
# 3. Turn on recording for `AWS::Config::ResourceCompliance`
|
733
|
+
# However, since deleting rules is an asynchronous process, it might
|
734
|
+
# take an hour or more to complete. During the time when recording is
|
735
|
+
# disabled for `AWS::Config::ResourceCompliance`, rule evaluations will
|
736
|
+
# not be recorded in the associated resource’s history.
|
737
737
|
#
|
738
738
|
# </note>
|
739
739
|
#
|
740
|
-
#
|
741
|
-
#
|
742
|
-
# [1]: https://docs.aws.amazon.com/config/latest/developerguide/stop-start-recorder.html
|
743
|
-
#
|
744
740
|
# @option params [required, String] :config_rule_name
|
745
741
|
# The name of the Config rule that you want to delete.
|
746
742
|
#
|
@@ -831,6 +827,27 @@ module Aws::ConfigService
|
|
831
827
|
# deletion is complete. You cannot update a conformance pack while it is
|
832
828
|
# in this state.
|
833
829
|
#
|
830
|
+
# <note markdown="1"> **Recommendation: Consider excluding the
|
831
|
+
# `AWS::Config::ResourceCompliance` resource type from recording before
|
832
|
+
# deleting rules**
|
833
|
+
#
|
834
|
+
# Deleting rules creates configuration items (CIs) for
|
835
|
+
# `AWS::Config::ResourceCompliance` that can affect your costs for the
|
836
|
+
# configuration recorder. If you are deleting rules which evaluate a
|
837
|
+
# large number of resource types, this can lead to a spike in the number
|
838
|
+
# of CIs recorded.
|
839
|
+
#
|
840
|
+
# To avoid the associated costs, you can opt to disable recording for
|
841
|
+
# the `AWS::Config::ResourceCompliance` resource type before deleting
|
842
|
+
# rules, and re-enable recording after the rules have been deleted.
|
843
|
+
#
|
844
|
+
# However, since deleting rules is an asynchronous process, it might
|
845
|
+
# take an hour or more to complete. During the time when recording is
|
846
|
+
# disabled for `AWS::Config::ResourceCompliance`, rule evaluations will
|
847
|
+
# not be recorded in the associated resource’s history.
|
848
|
+
#
|
849
|
+
# </note>
|
850
|
+
#
|
834
851
|
# @option params [required, String] :conformance_pack_name
|
835
852
|
# Name of the conformance pack you want to delete.
|
836
853
|
#
|
@@ -916,6 +933,27 @@ module Aws::ConfigService
|
|
916
933
|
# deletion is complete. You cannot update a rule while it is in this
|
917
934
|
# state.
|
918
935
|
#
|
936
|
+
# <note markdown="1"> **Recommendation: Consider excluding the
|
937
|
+
# `AWS::Config::ResourceCompliance` resource type from recording before
|
938
|
+
# deleting rules**
|
939
|
+
#
|
940
|
+
# Deleting rules creates configuration items (CIs) for
|
941
|
+
# `AWS::Config::ResourceCompliance` that can affect your costs for the
|
942
|
+
# configuration recorder. If you are deleting rules which evaluate a
|
943
|
+
# large number of resource types, this can lead to a spike in the number
|
944
|
+
# of CIs recorded.
|
945
|
+
#
|
946
|
+
# To avoid the associated costs, you can opt to disable recording for
|
947
|
+
# the `AWS::Config::ResourceCompliance` resource type before deleting
|
948
|
+
# rules, and re-enable recording after the rules have been deleted.
|
949
|
+
#
|
950
|
+
# However, since deleting rules is an asynchronous process, it might
|
951
|
+
# take an hour or more to complete. During the time when recording is
|
952
|
+
# disabled for `AWS::Config::ResourceCompliance`, rule evaluations will
|
953
|
+
# not be recorded in the associated resource’s history.
|
954
|
+
#
|
955
|
+
# </note>
|
956
|
+
#
|
919
957
|
# @option params [required, String] :organization_config_rule_name
|
920
958
|
# The name of organization Config rule that you want to delete.
|
921
959
|
#
|
@@ -949,6 +987,27 @@ module Aws::ConfigService
|
|
949
987
|
# until the deletion is complete. You cannot update a conformance pack
|
950
988
|
# while it is in this state.
|
951
989
|
#
|
990
|
+
# <note markdown="1"> **Recommendation: Consider excluding the
|
991
|
+
# `AWS::Config::ResourceCompliance` resource type from recording before
|
992
|
+
# deleting rules**
|
993
|
+
#
|
994
|
+
# Deleting rules creates configuration items (CIs) for
|
995
|
+
# `AWS::Config::ResourceCompliance` that can affect your costs for the
|
996
|
+
# configuration recorder. If you are deleting rules which evaluate a
|
997
|
+
# large number of resource types, this can lead to a spike in the number
|
998
|
+
# of CIs recorded.
|
999
|
+
#
|
1000
|
+
# To avoid the associated costs, you can opt to disable recording for
|
1001
|
+
# the `AWS::Config::ResourceCompliance` resource type before deleting
|
1002
|
+
# rules, and re-enable recording after the rules have been deleted.
|
1003
|
+
#
|
1004
|
+
# However, since deleting rules is an asynchronous process, it might
|
1005
|
+
# take an hour or more to complete. During the time when recording is
|
1006
|
+
# disabled for `AWS::Config::ResourceCompliance`, rule evaluations will
|
1007
|
+
# not be recorded in the associated resource’s history.
|
1008
|
+
#
|
1009
|
+
# </note>
|
1010
|
+
#
|
952
1011
|
# @option params [required, String] :organization_conformance_pack_name
|
953
1012
|
# The name of organization conformance pack that you want to delete.
|
954
1013
|
#
|
@@ -3842,15 +3901,23 @@ module Aws::ConfigService
|
|
3842
3901
|
end
|
3843
3902
|
|
3844
3903
|
# For accurate reporting on the compliance status, you must record the
|
3845
|
-
# `AWS::Config::ResourceCompliance` resource type.
|
3846
|
-
#
|
3904
|
+
# `AWS::Config::ResourceCompliance` resource type.
|
3905
|
+
#
|
3906
|
+
# For more information, see [Recording Amazon Web Services
|
3907
|
+
# Resources][1]
|
3908
|
+
# in the *Config Resources Developer Guide*.
|
3909
|
+
#
|
3910
|
+
# Returns a list of configurations items (CIs) for the specified
|
3911
|
+
# resource.
|
3847
3912
|
#
|
3848
|
-
#
|
3849
|
-
#
|
3913
|
+
# **Contents**
|
3914
|
+
#
|
3915
|
+
# The list contains details about each state of the resource during the
|
3850
3916
|
# specified time interval. If you specified a retention period to retain
|
3851
|
-
# your
|
3852
|
-
#
|
3853
|
-
#
|
3917
|
+
# your CIs between a minimum of 30 days and a maximum of 7 years (2557
|
3918
|
+
# days), Config returns the CIs for the specified retention period.
|
3919
|
+
#
|
3920
|
+
# **Pagination**
|
3854
3921
|
#
|
3855
3922
|
# The response is paginated. By default, Config returns a limit of 10
|
3856
3923
|
# configuration items per page. You can customize this number with the
|
@@ -4262,24 +4329,44 @@ module Aws::ConfigService
|
|
4262
4329
|
req.send_request(options)
|
4263
4330
|
end
|
4264
4331
|
|
4265
|
-
#
|
4266
|
-
# the resources of that type. A resource identifier
|
4267
|
-
# resource type, ID, and (if available) the custom resource
|
4268
|
-
#
|
4269
|
-
#
|
4270
|
-
# results
|
4271
|
-
#
|
4332
|
+
# Returns a list of resource resource identifiers for the specified
|
4333
|
+
# resource types for the resources of that type. A *resource identifier*
|
4334
|
+
# includes the resource type, ID, and (if available) the custom resource
|
4335
|
+
# name.
|
4336
|
+
#
|
4337
|
+
# The results consist of resources that Config has *discovered*,
|
4338
|
+
# including those that Config is not currently recording. You can narrow
|
4339
|
+
# the results to include only resources that have specific resource IDs
|
4340
|
+
# or a resource name.
|
4272
4341
|
#
|
4273
4342
|
# <note markdown="1"> You can specify either resource IDs or a resource name, but not both,
|
4274
4343
|
# in the same request.
|
4275
4344
|
#
|
4276
4345
|
# </note>
|
4277
4346
|
#
|
4278
|
-
#
|
4279
|
-
#
|
4280
|
-
#
|
4281
|
-
# the
|
4282
|
-
# for
|
4347
|
+
# *CloudFormation stack recording behavior in Config*
|
4348
|
+
#
|
4349
|
+
# When a CloudFormation stack fails to create (for example, it enters
|
4350
|
+
# the `ROLLBACK_FAILED` state), Config does not record a configuration
|
4351
|
+
# item (CI) for that stack. Configuration items are only recorded for
|
4352
|
+
# stacks that reach the following states:
|
4353
|
+
#
|
4354
|
+
# * `CREATE_COMPLETE`
|
4355
|
+
#
|
4356
|
+
# * `UPDATE_COMPLETE`
|
4357
|
+
#
|
4358
|
+
# * `UPDATE_ROLLBACK_COMPLETE`
|
4359
|
+
#
|
4360
|
+
# * `UPDATE_ROLLBACK_FAILED`
|
4361
|
+
#
|
4362
|
+
# * `DELETE_FAILED`
|
4363
|
+
#
|
4364
|
+
# * `DELETE_COMPLETE`
|
4365
|
+
#
|
4366
|
+
# Because no CI is created for a failed stack creation, you won't see
|
4367
|
+
# configuration history for that stack in Config, even after the stack
|
4368
|
+
# is deleted. This helps make sure that Config only tracks resources
|
4369
|
+
# that were successfully provisioned.
|
4283
4370
|
#
|
4284
4371
|
# @option params [required, String] :resource_type
|
4285
4372
|
# The type of resources that you want Config to list in the response.
|
@@ -4943,6 +5030,18 @@ module Aws::ConfigService
|
|
4943
5030
|
# conformance packs you can have per account, see [ **Service Limits**
|
4944
5031
|
# ][1] in the *Config Developer Guide*.
|
4945
5032
|
#
|
5033
|
+
# When you use `PutConformancePack` to deploy conformance packs in your
|
5034
|
+
# account, the operation can create Config rules and remediation actions
|
5035
|
+
# without requiring `config:PutConfigRule` or
|
5036
|
+
# `config:PutRemediationConfigurations` permissions in your account IAM
|
5037
|
+
# policies.
|
5038
|
+
#
|
5039
|
+
# This API uses the `AWSServiceRoleForConfigConforms` service-linked
|
5040
|
+
# role in your account to create conformance pack resources. This
|
5041
|
+
# service-linked role includes the permissions to create Config rules
|
5042
|
+
# and remediation configurations, even if your account IAM policies
|
5043
|
+
# explicitly deny these actions.
|
5044
|
+
#
|
4946
5045
|
# This API creates a service-linked role
|
4947
5046
|
# `AWSServiceRoleForConfigConforms` in your account. The service-linked
|
4948
5047
|
# role is created only when the role does not exist in your account.
|
@@ -4976,7 +5075,7 @@ module Aws::ConfigService
|
|
4976
5075
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/storage-class-intro.html
|
4977
5076
|
#
|
4978
5077
|
# @option params [String] :template_body
|
4979
|
-
# A string
|
5078
|
+
# A string that contains the full conformance pack template body. The
|
4980
5079
|
# structure containing the template body has a minimum length of 1 byte
|
4981
5080
|
# and a maximum length of 51,200 bytes.
|
4982
5081
|
#
|
@@ -5362,6 +5461,18 @@ module Aws::ConfigService
|
|
5362
5461
|
# ensure Organizations `ListDelegatedAdministrator` permissions are
|
5363
5462
|
# added. An organization can have up to 3 delegated administrators.
|
5364
5463
|
#
|
5464
|
+
# When you use `PutOrganizationConformancePack` to deploy conformance
|
5465
|
+
# packs across member accounts, the operation can create Config rules
|
5466
|
+
# and remediation actions without requiring `config:PutConfigRule` or
|
5467
|
+
# `config:PutRemediationConfigurations` permissions in member account
|
5468
|
+
# IAM policies.
|
5469
|
+
#
|
5470
|
+
# This API uses the `AWSServiceRoleForConfigConforms` service-linked
|
5471
|
+
# role in each member account to create conformance pack resources. This
|
5472
|
+
# service-linked role includes the permissions to create Config rules
|
5473
|
+
# and remediation configurations, even if member account IAM policies
|
5474
|
+
# explicitly deny these actions.
|
5475
|
+
#
|
5365
5476
|
# This API enables organization service access for
|
5366
5477
|
# `config-multiaccountsetup.amazonaws.com` through the
|
5367
5478
|
# `EnableAWSServiceAccess` action and creates a service-linked role
|
@@ -5409,9 +5520,9 @@ module Aws::ConfigService
|
|
5409
5520
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/storage-class-intro.html
|
5410
5521
|
#
|
5411
5522
|
# @option params [String] :template_body
|
5412
|
-
# A string
|
5413
|
-
# containing the template body with a minimum length of 1 byte
|
5414
|
-
# maximum length of 51,200 bytes.
|
5523
|
+
# A string that contains the full conformance pack template body.
|
5524
|
+
# Structure containing the template body with a minimum length of 1 byte
|
5525
|
+
# and a maximum length of 51,200 bytes.
|
5415
5526
|
#
|
5416
5527
|
# @option params [String] :delivery_s3_bucket
|
5417
5528
|
# The name of the Amazon S3 bucket where Config stores conformance pack
|
@@ -5850,8 +5961,9 @@ module Aws::ConfigService
|
|
5850
5961
|
# `recordingMode`, and `recordingScope` is set by the service that is
|
5851
5962
|
# linked to the configuration recorder.
|
5852
5963
|
#
|
5853
|
-
# For more information
|
5854
|
-
# Recorder** ][1] in
|
5964
|
+
# For more information and a list of supported services/service
|
5965
|
+
# principals, see [ **Working with the Configuration Recorder** ][1] in
|
5966
|
+
# the *Config Developer Guide*.
|
5855
5967
|
#
|
5856
5968
|
# This API creates a service-linked role `AWSServiceRoleForConfig` in
|
5857
5969
|
# your account. The service-linked role is created only when the role
|
@@ -6485,7 +6597,7 @@ module Aws::ConfigService
|
|
6485
6597
|
tracer: tracer
|
6486
6598
|
)
|
6487
6599
|
context[:gem_name] = 'aws-sdk-configservice'
|
6488
|
-
context[:gem_version] = '1.
|
6600
|
+
context[:gem_version] = '1.130.0'
|
6489
6601
|
Seahorse::Client::Request.new(handlers, context)
|
6490
6602
|
end
|
6491
6603
|
|
@@ -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
|
#
|
@@ -5088,8 +5121,8 @@ module Aws::ConfigService
|
|
5088
5121
|
# The output for the GetResourceConfigHistory action.
|
5089
5122
|
#
|
5090
5123
|
# @!attribute [rw] configuration_items
|
5091
|
-
#
|
5092
|
-
# resources.
|
5124
|
+
# An array of `ConfigurationItems` Objects. Contatins the
|
5125
|
+
# configuration history for one or more resources.
|
5093
5126
|
# @return [Array<Types::ConfigurationItem>]
|
5094
5127
|
#
|
5095
5128
|
# @!attribute [rw] next_token
|
@@ -5268,8 +5301,9 @@ module Aws::ConfigService
|
|
5268
5301
|
#
|
5269
5302
|
class InsufficientPermissionsException < Aws::EmptyStructure; end
|
5270
5303
|
|
5271
|
-
#
|
5272
|
-
#
|
5304
|
+
# The configuration recorder name is not valid. The prefix
|
5305
|
+
# "`AWSConfigurationRecorderFor`" is reserved for service-linked
|
5306
|
+
# configuration recorders.
|
5273
5307
|
#
|
5274
5308
|
# @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/InvalidConfigurationRecorderNameException AWS API Documentation
|
5275
5309
|
#
|
@@ -7016,7 +7050,7 @@ module Aws::ConfigService
|
|
7016
7050
|
# @return [String]
|
7017
7051
|
#
|
7018
7052
|
# @!attribute [rw] template_body
|
7019
|
-
# A string
|
7053
|
+
# A string that contains the full conformance pack template body. The
|
7020
7054
|
# structure containing the template body has a minimum length of 1
|
7021
7055
|
# byte and a maximum length of 51,200 bytes.
|
7022
7056
|
#
|
@@ -7245,9 +7279,9 @@ module Aws::ConfigService
|
|
7245
7279
|
# @return [String]
|
7246
7280
|
#
|
7247
7281
|
# @!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.
|
7282
|
+
# A string that contains the full conformance pack template body.
|
7283
|
+
# Structure containing the template body with a minimum length of 1
|
7284
|
+
# byte and a maximum length of 51,200 bytes.
|
7251
7285
|
# @return [String]
|
7252
7286
|
#
|
7253
7287
|
# @!attribute [rw] delivery_s3_bucket
|
@@ -7484,8 +7518,8 @@ module Aws::ConfigService
|
|
7484
7518
|
# The name of the specified configuration recorder.
|
7485
7519
|
#
|
7486
7520
|
# For service-linked configuration recorders, Config automatically
|
7487
|
-
# assigns a name that has the prefix "`
|
7488
|
-
# service-linked configuration recorder.
|
7521
|
+
# assigns a name that has the prefix "`AWSConfigurationRecorderFor`"
|
7522
|
+
# to the new service-linked configuration recorder.
|
7489
7523
|
# @return [String]
|
7490
7524
|
#
|
7491
7525
|
# @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/PutServiceLinkedConfigurationRecorderResponse AWS API Documentation
|