aws-sdk-configservice 1.153.0 → 1.154.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: ac7ea94634fe21e93c168394483b03b2130d7a73c080b538f859614d0c24c992
4
- data.tar.gz: 33b7f2a1f398f3097d0b2c9204f3aeb06f06a17484eb17a2b4a266d633a1a0f3
3
+ metadata.gz: d32fb85edb6e2d97b9ef68bf3fb52077d98df82393241d4db6c9cf0a86d1cca3
4
+ data.tar.gz: e6cddcbd5e35c440ab8faccd3b8d1dc5dd5f656ae1571464ae591188b4d69076
5
5
  SHA512:
6
- metadata.gz: abecd236a242ef8d9b73183b492ade6782b807344f417ec85e41f2dec72e7615b5fd92d943f3a80d1de82d33e4e95a6a37d677a269d7b305162055fc065b3e3e
7
- data.tar.gz: 66521f3c96603ec5a39c82796ab1620e46ece70d2b2596e20687c25baf874a0c3f658e72e0afdf1e59394b9128908520ebdca3a715988207ed9e7783e5ff9dcd
6
+ metadata.gz: 9e2263c4d20b959c5733afb5ab457acb4d9f2fb4586f257edf8cbc23adcec1e012901b3d9a95609dd72a51f9f41a2bbc937205a8ae59803ae0dcfbc39717c7f0
7
+ data.tar.gz: c657fd23b8abf75444e4d0b5494669cbeca2806b0166be4b4c7fb2df6162ec3369cae482b4ad0c03af69ee5909654138b24c8a1f02d3fcb02c5771daef5a72dc
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.154.0 (2026-07-02)
5
+ ------------------
6
+
7
+ * Feature - AWS Config now supports tag-on-create for organization-managed Config rules and conformance packs through the PutOrganizationConfigRule and PutOrganizationConformancePack APIs.
8
+
4
9
  1.153.0 (2026-06-04)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.153.0
1
+ 1.154.0
@@ -5435,6 +5435,10 @@ module Aws::ConfigService
5435
5435
  # organization trigger types that initiate Config to evaluate Amazon Web
5436
5436
  # Services resources against a rule.
5437
5437
  #
5438
+ # @option params [Array<Types::Tag>] :tags
5439
+ # The tags for the organization Config rule. Each tag consists of a key
5440
+ # and an optional value, both of which you define.
5441
+ #
5438
5442
  # @return [Types::PutOrganizationConfigRuleResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5439
5443
  #
5440
5444
  # * {Types::PutOrganizationConfigRuleResponse#organization_config_rule_arn #organization_config_rule_arn} => String
@@ -5478,6 +5482,12 @@ module Aws::ConfigService
5478
5482
  # policy_text: "PolicyText", # required
5479
5483
  # debug_log_delivery_accounts: ["AccountId"],
5480
5484
  # },
5485
+ # tags: [
5486
+ # {
5487
+ # key: "TagKey",
5488
+ # value: "TagValue",
5489
+ # },
5490
+ # ],
5481
5491
  # })
5482
5492
  #
5483
5493
  # @example Response structure
@@ -5589,6 +5599,10 @@ module Aws::ConfigService
5589
5599
  # A list of Amazon Web Services accounts to be excluded from an
5590
5600
  # organization conformance pack while deploying a conformance pack.
5591
5601
  #
5602
+ # @option params [Array<Types::Tag>] :tags
5603
+ # The tags for the organization conformance pack. Each tag consists of a
5604
+ # key and an optional value, both of which you define.
5605
+ #
5592
5606
  # @return [Types::PutOrganizationConformancePackResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5593
5607
  #
5594
5608
  # * {Types::PutOrganizationConformancePackResponse#organization_conformance_pack_arn #organization_conformance_pack_arn} => String
@@ -5608,6 +5622,12 @@ module Aws::ConfigService
5608
5622
  # },
5609
5623
  # ],
5610
5624
  # excluded_accounts: ["AccountId"],
5625
+ # tags: [
5626
+ # {
5627
+ # key: "TagKey",
5628
+ # value: "TagValue",
5629
+ # },
5630
+ # ],
5611
5631
  # })
5612
5632
  #
5613
5633
  # @example Response structure
@@ -6642,7 +6662,7 @@ module Aws::ConfigService
6642
6662
  tracer: tracer
6643
6663
  )
6644
6664
  context[:gem_name] = 'aws-sdk-configservice'
6645
- context[:gem_version] = '1.153.0'
6665
+ context[:gem_version] = '1.154.0'
6646
6666
  Seahorse::Client::Request.new(handlers, context)
6647
6667
  end
6648
6668
 
@@ -1971,6 +1971,7 @@ module Aws::ConfigService
1971
1971
  PutOrganizationConfigRuleRequest.add_member(:organization_custom_rule_metadata, Shapes::ShapeRef.new(shape: OrganizationCustomRuleMetadata, location_name: "OrganizationCustomRuleMetadata"))
1972
1972
  PutOrganizationConfigRuleRequest.add_member(:excluded_accounts, Shapes::ShapeRef.new(shape: ExcludedAccounts, location_name: "ExcludedAccounts"))
1973
1973
  PutOrganizationConfigRuleRequest.add_member(:organization_custom_policy_rule_metadata, Shapes::ShapeRef.new(shape: OrganizationCustomPolicyRuleMetadata, location_name: "OrganizationCustomPolicyRuleMetadata"))
1974
+ PutOrganizationConfigRuleRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagsList, location_name: "Tags"))
1974
1975
  PutOrganizationConfigRuleRequest.struct_class = Types::PutOrganizationConfigRuleRequest
1975
1976
 
1976
1977
  PutOrganizationConfigRuleResponse.add_member(:organization_config_rule_arn, Shapes::ShapeRef.new(shape: StringWithCharLimit256, location_name: "OrganizationConfigRuleArn"))
@@ -1983,6 +1984,7 @@ module Aws::ConfigService
1983
1984
  PutOrganizationConformancePackRequest.add_member(:delivery_s3_key_prefix, Shapes::ShapeRef.new(shape: DeliveryS3KeyPrefix, location_name: "DeliveryS3KeyPrefix"))
1984
1985
  PutOrganizationConformancePackRequest.add_member(:conformance_pack_input_parameters, Shapes::ShapeRef.new(shape: ConformancePackInputParameters, location_name: "ConformancePackInputParameters"))
1985
1986
  PutOrganizationConformancePackRequest.add_member(:excluded_accounts, Shapes::ShapeRef.new(shape: ExcludedAccounts, location_name: "ExcludedAccounts"))
1987
+ PutOrganizationConformancePackRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagsList, location_name: "Tags"))
1986
1988
  PutOrganizationConformancePackRequest.struct_class = Types::PutOrganizationConformancePackRequest
1987
1989
 
1988
1990
  PutOrganizationConformancePackResponse.add_member(:organization_conformance_pack_arn, Shapes::ShapeRef.new(shape: StringWithCharLimit256, location_name: "OrganizationConformancePackArn"))
@@ -7258,6 +7258,11 @@ module Aws::ConfigService
7258
7258
  # Amazon Web Services resources against a rule.
7259
7259
  # @return [Types::OrganizationCustomPolicyRuleMetadata]
7260
7260
  #
7261
+ # @!attribute [rw] tags
7262
+ # The tags for the organization Config rule. Each tag consists of a
7263
+ # key and an optional value, both of which you define.
7264
+ # @return [Array<Types::Tag>]
7265
+ #
7261
7266
  # @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/PutOrganizationConfigRuleRequest AWS API Documentation
7262
7267
  #
7263
7268
  class PutOrganizationConfigRuleRequest < Struct.new(
@@ -7265,7 +7270,8 @@ module Aws::ConfigService
7265
7270
  :organization_managed_rule_metadata,
7266
7271
  :organization_custom_rule_metadata,
7267
7272
  :excluded_accounts,
7268
- :organization_custom_policy_rule_metadata)
7273
+ :organization_custom_policy_rule_metadata,
7274
+ :tags)
7269
7275
  SENSITIVE = []
7270
7276
  include Aws::Structure
7271
7277
  end
@@ -7334,6 +7340,11 @@ module Aws::ConfigService
7334
7340
  # organization conformance pack while deploying a conformance pack.
7335
7341
  # @return [Array<String>]
7336
7342
  #
7343
+ # @!attribute [rw] tags
7344
+ # The tags for the organization conformance pack. Each tag consists of
7345
+ # a key and an optional value, both of which you define.
7346
+ # @return [Array<Types::Tag>]
7347
+ #
7337
7348
  # @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/PutOrganizationConformancePackRequest AWS API Documentation
7338
7349
  #
7339
7350
  class PutOrganizationConformancePackRequest < Struct.new(
@@ -7343,7 +7354,8 @@ module Aws::ConfigService
7343
7354
  :delivery_s3_bucket,
7344
7355
  :delivery_s3_key_prefix,
7345
7356
  :conformance_pack_input_parameters,
7346
- :excluded_accounts)
7357
+ :excluded_accounts,
7358
+ :tags)
7347
7359
  SENSITIVE = []
7348
7360
  include Aws::Structure
7349
7361
  end
@@ -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.153.0'
57
+ GEM_VERSION = '1.154.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -1283,7 +1283,13 @@ module Aws
1283
1283
  policy_runtime: ::String,
1284
1284
  policy_text: ::String,
1285
1285
  debug_log_delivery_accounts: Array[::String]?
1286
- }
1286
+ },
1287
+ ?tags: Array[
1288
+ {
1289
+ key: ::String?,
1290
+ value: ::String?
1291
+ }
1292
+ ]
1287
1293
  ) -> _PutOrganizationConfigRuleResponseSuccess
1288
1294
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutOrganizationConfigRuleResponseSuccess
1289
1295
 
@@ -1304,7 +1310,13 @@ module Aws
1304
1310
  parameter_value: ::String
1305
1311
  }
1306
1312
  ],
1307
- ?excluded_accounts: Array[::String]
1313
+ ?excluded_accounts: Array[::String],
1314
+ ?tags: Array[
1315
+ {
1316
+ key: ::String?,
1317
+ value: ::String?
1318
+ }
1319
+ ]
1308
1320
  ) -> _PutOrganizationConformancePackResponseSuccess
1309
1321
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutOrganizationConformancePackResponseSuccess
1310
1322
 
data/sig/types.rbs CHANGED
@@ -1738,6 +1738,7 @@ module Aws::ConfigService
1738
1738
  attr_accessor organization_custom_rule_metadata: Types::OrganizationCustomRuleMetadata
1739
1739
  attr_accessor excluded_accounts: ::Array[::String]
1740
1740
  attr_accessor organization_custom_policy_rule_metadata: Types::OrganizationCustomPolicyRuleMetadata
1741
+ attr_accessor tags: ::Array[Types::Tag]
1741
1742
  SENSITIVE: []
1742
1743
  end
1743
1744
 
@@ -1754,6 +1755,7 @@ module Aws::ConfigService
1754
1755
  attr_accessor delivery_s3_key_prefix: ::String
1755
1756
  attr_accessor conformance_pack_input_parameters: ::Array[Types::ConformancePackInputParameter]
1756
1757
  attr_accessor excluded_accounts: ::Array[::String]
1758
+ attr_accessor tags: ::Array[Types::Tag]
1757
1759
  SENSITIVE: []
1758
1760
  end
1759
1761
 
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.153.0
4
+ version: 1.154.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services