aws-sdk-configservice 1.128.0 → 1.134.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 +30 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-configservice/client.rb +222 -92
- data/lib/aws-sdk-configservice/types.rb +73 -32
- data/lib/aws-sdk-configservice.rb +1 -1
- data/sig/client.rbs +15 -14
- data/sig/resource.rbs +1 -0
- data/sig/types.rbs +16 -16
- metadata +4 -4
@@ -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
|