aws-sdk-configservice 1.152.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: cb762b6f0f1fcadf0f865143842223cbdacedc39a9f909e9ce5e74053d693351
4
- data.tar.gz: cc86a42483b4dfdd841b46e7eeb938e0a8e1057bc68c679fb3daec7d6aff3c80
3
+ metadata.gz: d32fb85edb6e2d97b9ef68bf3fb52077d98df82393241d4db6c9cf0a86d1cca3
4
+ data.tar.gz: e6cddcbd5e35c440ab8faccd3b8d1dc5dd5f656ae1571464ae591188b4d69076
5
5
  SHA512:
6
- metadata.gz: b82e099af7fb5b5623e3885fe7df2e13650d79348589146caaea295f2015595878efcc950654732305ea47fe37e966f38c9bb5d90354873ff7f1cd5eaa0b8cdf
7
- data.tar.gz: 83dd727cf167d32079d484bc41f4a2ad5a267aa545be94aa55fb913a1383b0097159485a24d1cf815c2940f6b1b29cf6b945a9b11ebef970b1e13a2bde7ef638
6
+ metadata.gz: 9e2263c4d20b959c5733afb5ab457acb4d9f2fb4586f257edf8cbc23adcec1e012901b3d9a95609dd72a51f9f41a2bbc937205a8ae59803ae0dcfbc39717c7f0
7
+ data.tar.gz: c657fd23b8abf75444e4d0b5494669cbeca2806b0166be4b4c7fb2df6162ec3369cae482b4ad0c03af69ee5909654138b24c8a1f02d3fcb02c5771daef5a72dc
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
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
+
9
+ 1.153.0 (2026-06-04)
10
+ ------------------
11
+
12
+ * Feature - AWS Config now supports internal service-linked rules, allowing AWS service partners to deploy Config rules for customers and use the evaluation results to build enhanced features.
13
+
4
14
  1.152.0 (2026-06-01)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.152.0
1
+ 1.154.0
@@ -1739,6 +1739,7 @@ module Aws::ConfigService
1739
1739
  # next_token: "String",
1740
1740
  # filters: {
1741
1741
  # evaluation_mode: "DETECTIVE", # accepts DETECTIVE, PROACTIVE
1742
+ # rule_evaluation_visibility: "EXTERNAL", # accepts EXTERNAL, INTERNAL
1742
1743
  # },
1743
1744
  # })
1744
1745
  #
@@ -1754,6 +1755,8 @@ module Aws::ConfigService
1754
1755
  # resp.config_rules[0].scope.tag_key #=> String
1755
1756
  # resp.config_rules[0].scope.tag_value #=> String
1756
1757
  # resp.config_rules[0].scope.compliance_resource_id #=> String
1758
+ # resp.config_rules[0].scope.service_principals #=> Array
1759
+ # resp.config_rules[0].scope.service_principals[0] #=> String
1757
1760
  # resp.config_rules[0].source.owner #=> String, one of "CUSTOM_LAMBDA", "AWS", "CUSTOM_POLICY"
1758
1761
  # resp.config_rules[0].source.source_identifier #=> String
1759
1762
  # resp.config_rules[0].source.source_details #=> Array
@@ -1769,6 +1772,7 @@ module Aws::ConfigService
1769
1772
  # resp.config_rules[0].created_by #=> String
1770
1773
  # resp.config_rules[0].evaluation_modes #=> Array
1771
1774
  # resp.config_rules[0].evaluation_modes[0].mode #=> String, one of "DETECTIVE", "PROACTIVE"
1775
+ # resp.config_rules[0].rule_evaluation_visibility #=> String, one of "EXTERNAL", "INTERNAL"
1772
1776
  # resp.next_token #=> String
1773
1777
  #
1774
1778
  # @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DescribeConfigRules AWS API Documentation
@@ -4750,6 +4754,7 @@ module Aws::ConfigService
4750
4754
  # tag_key: "StringWithCharLimit128",
4751
4755
  # tag_value: "StringWithCharLimit256",
4752
4756
  # compliance_resource_id: "BaseResourceId",
4757
+ # service_principals: ["StringWithCharLimit128"],
4753
4758
  # },
4754
4759
  # source: { # required
4755
4760
  # owner: "CUSTOM_LAMBDA", # required, accepts CUSTOM_LAMBDA, AWS, CUSTOM_POLICY
@@ -4776,6 +4781,7 @@ module Aws::ConfigService
4776
4781
  # mode: "DETECTIVE", # accepts DETECTIVE, PROACTIVE
4777
4782
  # },
4778
4783
  # ],
4784
+ # rule_evaluation_visibility: "EXTERNAL", # accepts EXTERNAL, INTERNAL
4779
4785
  # },
4780
4786
  # tags: [
4781
4787
  # {
@@ -5429,6 +5435,10 @@ module Aws::ConfigService
5429
5435
  # organization trigger types that initiate Config to evaluate Amazon Web
5430
5436
  # Services resources against a rule.
5431
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
+ #
5432
5442
  # @return [Types::PutOrganizationConfigRuleResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5433
5443
  #
5434
5444
  # * {Types::PutOrganizationConfigRuleResponse#organization_config_rule_arn #organization_config_rule_arn} => String
@@ -5472,6 +5482,12 @@ module Aws::ConfigService
5472
5482
  # policy_text: "PolicyText", # required
5473
5483
  # debug_log_delivery_accounts: ["AccountId"],
5474
5484
  # },
5485
+ # tags: [
5486
+ # {
5487
+ # key: "TagKey",
5488
+ # value: "TagValue",
5489
+ # },
5490
+ # ],
5475
5491
  # })
5476
5492
  #
5477
5493
  # @example Response structure
@@ -5583,6 +5599,10 @@ module Aws::ConfigService
5583
5599
  # A list of Amazon Web Services accounts to be excluded from an
5584
5600
  # organization conformance pack while deploying a conformance pack.
5585
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
+ #
5586
5606
  # @return [Types::PutOrganizationConformancePackResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5587
5607
  #
5588
5608
  # * {Types::PutOrganizationConformancePackResponse#organization_conformance_pack_arn #organization_conformance_pack_arn} => String
@@ -5602,6 +5622,12 @@ module Aws::ConfigService
5602
5622
  # },
5603
5623
  # ],
5604
5624
  # excluded_accounts: ["AccountId"],
5625
+ # tags: [
5626
+ # {
5627
+ # key: "TagKey",
5628
+ # value: "TagValue",
5629
+ # },
5630
+ # ],
5605
5631
  # })
5606
5632
  #
5607
5633
  # @example Response structure
@@ -6636,7 +6662,7 @@ module Aws::ConfigService
6636
6662
  tracer: tracer
6637
6663
  )
6638
6664
  context[:gem_name] = 'aws-sdk-configservice'
6639
- context[:gem_version] = '1.152.0'
6665
+ context[:gem_version] = '1.154.0'
6640
6666
  Seahorse::Client::Request.new(handlers, context)
6641
6667
  end
6642
6668
 
@@ -534,6 +534,7 @@ module Aws::ConfigService
534
534
  RetentionConfigurationName = Shapes::StringShape.new(name: 'RetentionConfigurationName')
535
535
  RetentionConfigurationNameList = Shapes::ListShape.new(name: 'RetentionConfigurationNameList')
536
536
  RetentionPeriodInDays = Shapes::IntegerShape.new(name: 'RetentionPeriodInDays')
537
+ RuleEvaluationVisibility = Shapes::StringShape.new(name: 'RuleEvaluationVisibility')
537
538
  RuleLimit = Shapes::IntegerShape.new(name: 'RuleLimit')
538
539
  SSMDocumentName = Shapes::StringShape.new(name: 'SSMDocumentName')
539
540
  SSMDocumentVersion = Shapes::StringShape.new(name: 'SSMDocumentVersion')
@@ -546,6 +547,7 @@ module Aws::ConfigService
546
547
  ServicePrincipal = Shapes::StringShape.new(name: 'ServicePrincipal')
547
548
  ServicePrincipalValue = Shapes::StringShape.new(name: 'ServicePrincipalValue')
548
549
  ServicePrincipalValueList = Shapes::ListShape.new(name: 'ServicePrincipalValueList')
550
+ ServicePrincipals = Shapes::ListShape.new(name: 'ServicePrincipals')
549
551
  SortBy = Shapes::StringShape.new(name: 'SortBy')
550
552
  SortOrder = Shapes::StringShape.new(name: 'SortOrder')
551
553
  Source = Shapes::StructureShape.new(name: 'Source')
@@ -804,6 +806,7 @@ module Aws::ConfigService
804
806
  ConfigRule.add_member(:config_rule_state, Shapes::ShapeRef.new(shape: ConfigRuleState, location_name: "ConfigRuleState"))
805
807
  ConfigRule.add_member(:created_by, Shapes::ShapeRef.new(shape: StringWithCharLimit256, location_name: "CreatedBy"))
806
808
  ConfigRule.add_member(:evaluation_modes, Shapes::ShapeRef.new(shape: EvaluationModes, location_name: "EvaluationModes"))
809
+ ConfigRule.add_member(:rule_evaluation_visibility, Shapes::ShapeRef.new(shape: RuleEvaluationVisibility, location_name: "RuleEvaluationVisibility"))
807
810
  ConfigRule.struct_class = Types::ConfigRule
808
811
 
809
812
  ConfigRuleComplianceFilters.add_member(:config_rule_name, Shapes::ShapeRef.new(shape: ConfigRuleName, location_name: "ConfigRuleName"))
@@ -1175,6 +1178,7 @@ module Aws::ConfigService
1175
1178
  DescribeConfigRuleEvaluationStatusResponse.struct_class = Types::DescribeConfigRuleEvaluationStatusResponse
1176
1179
 
1177
1180
  DescribeConfigRulesFilters.add_member(:evaluation_mode, Shapes::ShapeRef.new(shape: EvaluationMode, location_name: "EvaluationMode"))
1181
+ DescribeConfigRulesFilters.add_member(:rule_evaluation_visibility, Shapes::ShapeRef.new(shape: RuleEvaluationVisibility, location_name: "RuleEvaluationVisibility"))
1178
1182
  DescribeConfigRulesFilters.struct_class = Types::DescribeConfigRulesFilters
1179
1183
 
1180
1184
  DescribeConfigRulesRequest.add_member(:config_rule_names, Shapes::ShapeRef.new(shape: ConfigRuleNames, location_name: "ConfigRuleNames"))
@@ -1967,6 +1971,7 @@ module Aws::ConfigService
1967
1971
  PutOrganizationConfigRuleRequest.add_member(:organization_custom_rule_metadata, Shapes::ShapeRef.new(shape: OrganizationCustomRuleMetadata, location_name: "OrganizationCustomRuleMetadata"))
1968
1972
  PutOrganizationConfigRuleRequest.add_member(:excluded_accounts, Shapes::ShapeRef.new(shape: ExcludedAccounts, location_name: "ExcludedAccounts"))
1969
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"))
1970
1975
  PutOrganizationConfigRuleRequest.struct_class = Types::PutOrganizationConfigRuleRequest
1971
1976
 
1972
1977
  PutOrganizationConfigRuleResponse.add_member(:organization_config_rule_arn, Shapes::ShapeRef.new(shape: StringWithCharLimit256, location_name: "OrganizationConfigRuleArn"))
@@ -1979,6 +1984,7 @@ module Aws::ConfigService
1979
1984
  PutOrganizationConformancePackRequest.add_member(:delivery_s3_key_prefix, Shapes::ShapeRef.new(shape: DeliveryS3KeyPrefix, location_name: "DeliveryS3KeyPrefix"))
1980
1985
  PutOrganizationConformancePackRequest.add_member(:conformance_pack_input_parameters, Shapes::ShapeRef.new(shape: ConformancePackInputParameters, location_name: "ConformancePackInputParameters"))
1981
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"))
1982
1988
  PutOrganizationConformancePackRequest.struct_class = Types::PutOrganizationConformancePackRequest
1983
1989
 
1984
1990
  PutOrganizationConformancePackResponse.add_member(:organization_conformance_pack_arn, Shapes::ShapeRef.new(shape: StringWithCharLimit256, location_name: "OrganizationConformancePackArn"))
@@ -2211,6 +2217,7 @@ module Aws::ConfigService
2211
2217
  Scope.add_member(:tag_key, Shapes::ShapeRef.new(shape: StringWithCharLimit128, location_name: "TagKey"))
2212
2218
  Scope.add_member(:tag_value, Shapes::ShapeRef.new(shape: StringWithCharLimit256, location_name: "TagValue"))
2213
2219
  Scope.add_member(:compliance_resource_id, Shapes::ShapeRef.new(shape: BaseResourceId, location_name: "ComplianceResourceId"))
2220
+ Scope.add_member(:service_principals, Shapes::ShapeRef.new(shape: ServicePrincipals, location_name: "ServicePrincipals"))
2214
2221
  Scope.struct_class = Types::Scope
2215
2222
 
2216
2223
  SelectAggregateResourceConfigRequest.add_member(:expression, Shapes::ShapeRef.new(shape: Expression, required: true, location_name: "Expression"))
@@ -2237,6 +2244,8 @@ module Aws::ConfigService
2237
2244
 
2238
2245
  ServicePrincipalValueList.member = Shapes::ShapeRef.new(shape: ServicePrincipalValue)
2239
2246
 
2247
+ ServicePrincipals.member = Shapes::ShapeRef.new(shape: StringWithCharLimit128)
2248
+
2240
2249
  Source.add_member(:owner, Shapes::ShapeRef.new(shape: Owner, required: true, location_name: "Owner"))
2241
2250
  Source.add_member(:source_identifier, Shapes::ShapeRef.new(shape: StringWithCharLimit256, location_name: "SourceIdentifier"))
2242
2251
  Source.add_member(:source_details, Shapes::ShapeRef.new(shape: SourceDetails, location_name: "SourceDetails"))
@@ -1086,6 +1086,13 @@ module Aws::ConfigService
1086
1086
  # only.
1087
1087
  # @return [Array<Types::EvaluationModeConfiguration>]
1088
1088
  #
1089
+ # @!attribute [rw] rule_evaluation_visibility
1090
+ # Indicates whether you can get Evaluations for the Config rule. You
1091
+ # can get Evaluations for the Amazon Web Services Config rule if this
1092
+ # value is `EXTERNAL`. You cannot get Evaluations for the Amazon Web
1093
+ # Services Config rule if this value is `INTERNAL`.
1094
+ # @return [String]
1095
+ #
1089
1096
  # @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/ConfigRule AWS API Documentation
1090
1097
  #
1091
1098
  class ConfigRule < Struct.new(
@@ -1099,7 +1106,8 @@ module Aws::ConfigService
1099
1106
  :maximum_execution_frequency,
1100
1107
  :config_rule_state,
1101
1108
  :created_by,
1102
- :evaluation_modes)
1109
+ :evaluation_modes,
1110
+ :rule_evaluation_visibility)
1103
1111
  SENSITIVE = []
1104
1112
  include Aws::Structure
1105
1113
  end
@@ -3034,10 +3042,15 @@ module Aws::ConfigService
3034
3042
  # Proactive.
3035
3043
  # @return [String]
3036
3044
  #
3045
+ # @!attribute [rw] rule_evaluation_visibility
3046
+ # Filters the results by `RuleEvaluationVisibility`.
3047
+ # @return [String]
3048
+ #
3037
3049
  # @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DescribeConfigRulesFilters AWS API Documentation
3038
3050
  #
3039
3051
  class DescribeConfigRulesFilters < Struct.new(
3040
- :evaluation_mode)
3052
+ :evaluation_mode,
3053
+ :rule_evaluation_visibility)
3041
3054
  SENSITIVE = []
3042
3055
  include Aws::Structure
3043
3056
  end
@@ -7245,6 +7258,11 @@ module Aws::ConfigService
7245
7258
  # Amazon Web Services resources against a rule.
7246
7259
  # @return [Types::OrganizationCustomPolicyRuleMetadata]
7247
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
+ #
7248
7266
  # @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/PutOrganizationConfigRuleRequest AWS API Documentation
7249
7267
  #
7250
7268
  class PutOrganizationConfigRuleRequest < Struct.new(
@@ -7252,7 +7270,8 @@ module Aws::ConfigService
7252
7270
  :organization_managed_rule_metadata,
7253
7271
  :organization_custom_rule_metadata,
7254
7272
  :excluded_accounts,
7255
- :organization_custom_policy_rule_metadata)
7273
+ :organization_custom_policy_rule_metadata,
7274
+ :tags)
7256
7275
  SENSITIVE = []
7257
7276
  include Aws::Structure
7258
7277
  end
@@ -7321,6 +7340,11 @@ module Aws::ConfigService
7321
7340
  # organization conformance pack while deploying a conformance pack.
7322
7341
  # @return [Array<String>]
7323
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
+ #
7324
7348
  # @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/PutOrganizationConformancePackRequest AWS API Documentation
7325
7349
  #
7326
7350
  class PutOrganizationConformancePackRequest < Struct.new(
@@ -7330,7 +7354,8 @@ module Aws::ConfigService
7330
7354
  :delivery_s3_bucket,
7331
7355
  :delivery_s3_key_prefix,
7332
7356
  :conformance_pack_input_parameters,
7333
- :excluded_accounts)
7357
+ :excluded_accounts,
7358
+ :tags)
7334
7359
  SENSITIVE = []
7335
7360
  include Aws::Structure
7336
7361
  end
@@ -8736,13 +8761,24 @@ module Aws::ConfigService
8736
8761
  # you must specify one resource type for `ComplianceResourceTypes`.
8737
8762
  # @return [String]
8738
8763
  #
8764
+ # @!attribute [rw] service_principals
8765
+ # The service principals of the Amazon Web Services services for the
8766
+ # rule.
8767
+ #
8768
+ # <note markdown="1"> The field is populated only if the service-linked rule is created by
8769
+ # a service. The field is empty if you create your own rule.
8770
+ #
8771
+ # </note>
8772
+ # @return [Array<String>]
8773
+ #
8739
8774
  # @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/Scope AWS API Documentation
8740
8775
  #
8741
8776
  class Scope < Struct.new(
8742
8777
  :compliance_resource_types,
8743
8778
  :tag_key,
8744
8779
  :tag_value,
8745
- :compliance_resource_id)
8780
+ :compliance_resource_id,
8781
+ :service_principals)
8746
8782
  SENSITIVE = []
8747
8783
  include Aws::Structure
8748
8784
  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.152.0'
57
+ GEM_VERSION = '1.154.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -361,7 +361,8 @@ module Aws
361
361
  ?config_rule_names: Array[::String],
362
362
  ?next_token: ::String,
363
363
  ?filters: {
364
- evaluation_mode: ("DETECTIVE" | "PROACTIVE")?
364
+ evaluation_mode: ("DETECTIVE" | "PROACTIVE")?,
365
+ rule_evaluation_visibility: ("EXTERNAL" | "INTERNAL")?
365
366
  }
366
367
  ) -> _DescribeConfigRulesResponseSuccess
367
368
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeConfigRulesResponseSuccess
@@ -1044,7 +1045,8 @@ module Aws
1044
1045
  compliance_resource_types: Array[::String]?,
1045
1046
  tag_key: ::String?,
1046
1047
  tag_value: ::String?,
1047
- compliance_resource_id: ::String?
1048
+ compliance_resource_id: ::String?,
1049
+ service_principals: Array[::String]?
1048
1050
  }?,
1049
1051
  source: {
1050
1052
  owner: ("CUSTOM_LAMBDA" | "AWS" | "CUSTOM_POLICY"),
@@ -1070,7 +1072,8 @@ module Aws
1070
1072
  {
1071
1073
  mode: ("DETECTIVE" | "PROACTIVE")?
1072
1074
  }
1073
- ]?
1075
+ ]?,
1076
+ rule_evaluation_visibility: ("EXTERNAL" | "INTERNAL")?
1074
1077
  },
1075
1078
  ?tags: Array[
1076
1079
  {
@@ -1280,7 +1283,13 @@ module Aws
1280
1283
  policy_runtime: ::String,
1281
1284
  policy_text: ::String,
1282
1285
  debug_log_delivery_accounts: Array[::String]?
1283
- }
1286
+ },
1287
+ ?tags: Array[
1288
+ {
1289
+ key: ::String?,
1290
+ value: ::String?
1291
+ }
1292
+ ]
1284
1293
  ) -> _PutOrganizationConfigRuleResponseSuccess
1285
1294
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutOrganizationConfigRuleResponseSuccess
1286
1295
 
@@ -1301,7 +1310,13 @@ module Aws
1301
1310
  parameter_value: ::String
1302
1311
  }
1303
1312
  ],
1304
- ?excluded_accounts: Array[::String]
1313
+ ?excluded_accounts: Array[::String],
1314
+ ?tags: Array[
1315
+ {
1316
+ key: ::String?,
1317
+ value: ::String?
1318
+ }
1319
+ ]
1305
1320
  ) -> _PutOrganizationConformancePackResponseSuccess
1306
1321
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutOrganizationConformancePackResponseSuccess
1307
1322
 
data/sig/types.rbs CHANGED
@@ -242,6 +242,7 @@ module Aws::ConfigService
242
242
  attr_accessor config_rule_state: ("ACTIVE" | "DELETING" | "DELETING_RESULTS" | "EVALUATING")
243
243
  attr_accessor created_by: ::String
244
244
  attr_accessor evaluation_modes: ::Array[Types::EvaluationModeConfiguration]
245
+ attr_accessor rule_evaluation_visibility: ("EXTERNAL" | "INTERNAL")
245
246
  SENSITIVE: []
246
247
  end
247
248
 
@@ -674,6 +675,7 @@ module Aws::ConfigService
674
675
 
675
676
  class DescribeConfigRulesFilters
676
677
  attr_accessor evaluation_mode: ("DETECTIVE" | "PROACTIVE")
678
+ attr_accessor rule_evaluation_visibility: ("EXTERNAL" | "INTERNAL")
677
679
  SENSITIVE: []
678
680
  end
679
681
 
@@ -1736,6 +1738,7 @@ module Aws::ConfigService
1736
1738
  attr_accessor organization_custom_rule_metadata: Types::OrganizationCustomRuleMetadata
1737
1739
  attr_accessor excluded_accounts: ::Array[::String]
1738
1740
  attr_accessor organization_custom_policy_rule_metadata: Types::OrganizationCustomPolicyRuleMetadata
1741
+ attr_accessor tags: ::Array[Types::Tag]
1739
1742
  SENSITIVE: []
1740
1743
  end
1741
1744
 
@@ -1752,6 +1755,7 @@ module Aws::ConfigService
1752
1755
  attr_accessor delivery_s3_key_prefix: ::String
1753
1756
  attr_accessor conformance_pack_input_parameters: ::Array[Types::ConformancePackInputParameter]
1754
1757
  attr_accessor excluded_accounts: ::Array[::String]
1758
+ attr_accessor tags: ::Array[Types::Tag]
1755
1759
  SENSITIVE: []
1756
1760
  end
1757
1761
 
@@ -2011,6 +2015,7 @@ module Aws::ConfigService
2011
2015
  attr_accessor tag_key: ::String
2012
2016
  attr_accessor tag_value: ::String
2013
2017
  attr_accessor compliance_resource_id: ::String
2018
+ attr_accessor service_principals: ::Array[::String]
2014
2019
  SENSITIVE: []
2015
2020
  end
2016
2021
 
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.152.0
4
+ version: 1.154.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services