aws-sdk-observabilityadmin 1.36.0 → 1.37.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: 9cce1b87ef7ac5f8861b824abf5ee58bf9be6c908ac6c7e2c4391100f578738c
4
- data.tar.gz: 33c21a594e424bc5c6959bc3e6e590bb882c7180d208ed13e4e0f03f6d05811b
3
+ metadata.gz: ebae83ff2ea6e68437ad38088d94614013763c230b35fdd930f27244064225c3
4
+ data.tar.gz: 80945fdab8195068587b90586d89121b6ee2cd34a494cebeaee0d5ab953453b1
5
5
  SHA512:
6
- metadata.gz: c9fd20c427bccf47e09b9109abcd7dffd7b08fb1bc836f168f65fb84aa4d3d53fe6bbffc83cfd8002c65d73276428a9ca100102ea037cdbb57e31fe4689da963
7
- data.tar.gz: 2a658ae7cb8972e9b88dd9732e8ee23f27257fc3cb1d66f5d4630d0a8e86660895f893ac4425df2e64a908dc7431f24c2e2965382101085b1e477a425f357575
6
+ metadata.gz: e72fb31617dde646b1403ac93a528de9db2ab66608b8d999c8ecf71cfd3e4fa56512151c012885824572e8968f3a9f2c3d19c2ba459af419c867ce8b9157dcd8
7
+ data.tar.gz: 89a57a334e93ffaa76ef1dcd9183f6f3fcb486ae9f15e6916ebc98c049e152d03ba0bf71c99fcfc1a0409f1b7cbde15987bb179f948c23ef580acb2de29156b3
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.37.0 (2026-08-14)
5
+ ------------------
6
+
7
+ * Feature - CloudWatch Logs centralization rules now support tag propagation. You can configure a TagPropagationConfiguration on your centralization rule to automatically sync resource tags from source to destination log groups, with configurable conflict resolution strategies.
8
+
4
9
  1.36.0 (2026-08-03)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.36.0
1
+ 1.37.0
@@ -530,6 +530,10 @@ module Aws::ObservabilityAdmin
530
530
  # log_group_name_configuration: {
531
531
  # log_group_name_pattern: "LogGroupNamePattern", # required
532
532
  # },
533
+ # tag_propagation_configuration: {
534
+ # destination_role_arn: "IamRoleArn", # required
535
+ # tag_conflict_resolution_strategy: "IN_SYNC", # accepts IN_SYNC, ADD_ONLY, UPDATE_SYNC
536
+ # },
533
537
  # },
534
538
  # destination_metrics_configuration: {
535
539
  # backup_configuration: {
@@ -1044,6 +1048,8 @@ module Aws::ObservabilityAdmin
1044
1048
  # * {Types::GetCentralizationRuleForOrganizationOutput#last_update_time_stamp #last_update_time_stamp} => Integer
1045
1049
  # * {Types::GetCentralizationRuleForOrganizationOutput#rule_health #rule_health} => String
1046
1050
  # * {Types::GetCentralizationRuleForOrganizationOutput#failure_reason #failure_reason} => String
1051
+ # * {Types::GetCentralizationRuleForOrganizationOutput#tag_propagation_status #tag_propagation_status} => String
1052
+ # * {Types::GetCentralizationRuleForOrganizationOutput#tag_propagation_failure_reason #tag_propagation_failure_reason} => String
1047
1053
  # * {Types::GetCentralizationRuleForOrganizationOutput#centralization_rule #centralization_rule} => Types::CentralizationRule
1048
1054
  #
1049
1055
  # @example Request syntax with placeholder values
@@ -1062,6 +1068,8 @@ module Aws::ObservabilityAdmin
1062
1068
  # resp.last_update_time_stamp #=> Integer
1063
1069
  # resp.rule_health #=> String, one of "Healthy", "Unhealthy", "Provisioning"
1064
1070
  # resp.failure_reason #=> String, one of "TRUSTED_ACCESS_NOT_ENABLED", "DESTINATION_ACCOUNT_NOT_IN_ORGANIZATION", "INTERNAL_SERVER_ERROR"
1071
+ # resp.tag_propagation_status #=> String, one of "Healthy", "Unhealthy"
1072
+ # resp.tag_propagation_failure_reason #=> String, one of "RoleNotAssumable", "RoleLacksPermissions"
1065
1073
  # resp.centralization_rule.source.regions #=> Array
1066
1074
  # resp.centralization_rule.source.regions[0] #=> String
1067
1075
  # resp.centralization_rule.source.scope #=> String
@@ -1078,6 +1086,8 @@ module Aws::ObservabilityAdmin
1078
1086
  # resp.centralization_rule.destination.destination_logs_configuration.backup_configuration.region #=> String
1079
1087
  # resp.centralization_rule.destination.destination_logs_configuration.backup_configuration.kms_key_arn #=> String
1080
1088
  # resp.centralization_rule.destination.destination_logs_configuration.log_group_name_configuration.log_group_name_pattern #=> String
1089
+ # resp.centralization_rule.destination.destination_logs_configuration.tag_propagation_configuration.destination_role_arn #=> String
1090
+ # resp.centralization_rule.destination.destination_logs_configuration.tag_propagation_configuration.tag_conflict_resolution_strategy #=> String, one of "IN_SYNC", "ADD_ONLY", "UPDATE_SYNC"
1081
1091
  # resp.centralization_rule.destination.destination_metrics_configuration.backup_configuration.region #=> String
1082
1092
  #
1083
1093
  # @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/GetCentralizationRuleForOrganization AWS API Documentation
@@ -1495,6 +1505,8 @@ module Aws::ObservabilityAdmin
1495
1505
  # resp.centralization_rule_summaries[0].last_update_time_stamp #=> Integer
1496
1506
  # resp.centralization_rule_summaries[0].rule_health #=> String, one of "Healthy", "Unhealthy", "Provisioning"
1497
1507
  # resp.centralization_rule_summaries[0].failure_reason #=> String, one of "TRUSTED_ACCESS_NOT_ENABLED", "DESTINATION_ACCOUNT_NOT_IN_ORGANIZATION", "INTERNAL_SERVER_ERROR"
1508
+ # resp.centralization_rule_summaries[0].tag_propagation_status #=> String, one of "Healthy", "Unhealthy"
1509
+ # resp.centralization_rule_summaries[0].tag_propagation_failure_reason #=> String, one of "RoleNotAssumable", "RoleLacksPermissions"
1498
1510
  # resp.centralization_rule_summaries[0].destination_account_id #=> String
1499
1511
  # resp.centralization_rule_summaries[0].destination_region #=> String
1500
1512
  # resp.next_token #=> String
@@ -2228,6 +2240,10 @@ module Aws::ObservabilityAdmin
2228
2240
  # log_group_name_configuration: {
2229
2241
  # log_group_name_pattern: "LogGroupNamePattern", # required
2230
2242
  # },
2243
+ # tag_propagation_configuration: {
2244
+ # destination_role_arn: "IamRoleArn", # required
2245
+ # tag_conflict_resolution_strategy: "IN_SYNC", # accepts IN_SYNC, ADD_ONLY, UPDATE_SYNC
2246
+ # },
2231
2247
  # },
2232
2248
  # destination_metrics_configuration: {
2233
2249
  # backup_configuration: {
@@ -2636,7 +2652,7 @@ module Aws::ObservabilityAdmin
2636
2652
  tracer: tracer
2637
2653
  )
2638
2654
  context[:gem_name] = 'aws-sdk-observabilityadmin'
2639
- context[:gem_version] = '1.36.0'
2655
+ context[:gem_version] = '1.37.0'
2640
2656
  Seahorse::Client::Request.new(handlers, context)
2641
2657
  end
2642
2658
 
@@ -85,6 +85,7 @@ module Aws::ObservabilityAdmin
85
85
  GetTelemetryRuleForOrganizationOutput = Shapes::StructureShape.new(name: 'GetTelemetryRuleForOrganizationOutput')
86
86
  GetTelemetryRuleInput = Shapes::StructureShape.new(name: 'GetTelemetryRuleInput')
87
87
  GetTelemetryRuleOutput = Shapes::StructureShape.new(name: 'GetTelemetryRuleOutput')
88
+ IamRoleArn = Shapes::StringShape.new(name: 'IamRoleArn')
88
89
  Integer = Shapes::IntegerShape.new(name: 'Integer')
89
90
  IntegrationStatus = Shapes::StringShape.new(name: 'IntegrationStatus')
90
91
  IntegrationSummaries = Shapes::ListShape.new(name: 'IntegrationSummaries')
@@ -177,10 +178,14 @@ module Aws::ObservabilityAdmin
177
178
  StopTelemetryEnrichmentOutput = Shapes::StructureShape.new(name: 'StopTelemetryEnrichmentOutput')
178
179
  String = Shapes::StringShape.new(name: 'String')
179
180
  StringList = Shapes::ListShape.new(name: 'StringList')
181
+ TagConflictResolutionStrategy = Shapes::StringShape.new(name: 'TagConflictResolutionStrategy')
180
182
  TagKey = Shapes::StringShape.new(name: 'TagKey')
181
183
  TagKeyList = Shapes::ListShape.new(name: 'TagKeyList')
182
184
  TagMapInput = Shapes::MapShape.new(name: 'TagMapInput')
183
185
  TagMapOutput = Shapes::MapShape.new(name: 'TagMapOutput')
186
+ TagPropagationConfiguration = Shapes::StructureShape.new(name: 'TagPropagationConfiguration')
187
+ TagPropagationFailureReason = Shapes::StringShape.new(name: 'TagPropagationFailureReason')
188
+ TagPropagationStatus = Shapes::StringShape.new(name: 'TagPropagationStatus')
184
189
  TagResourceInput = Shapes::StructureShape.new(name: 'TagResourceInput')
185
190
  TagValue = Shapes::StringShape.new(name: 'TagValue')
186
191
  TelemetryConfiguration = Shapes::StructureShape.new(name: 'TelemetryConfiguration')
@@ -275,6 +280,8 @@ module Aws::ObservabilityAdmin
275
280
  CentralizationRuleSummary.add_member(:last_update_time_stamp, Shapes::ShapeRef.new(shape: Long, location_name: "LastUpdateTimeStamp"))
276
281
  CentralizationRuleSummary.add_member(:rule_health, Shapes::ShapeRef.new(shape: RuleHealth, location_name: "RuleHealth"))
277
282
  CentralizationRuleSummary.add_member(:failure_reason, Shapes::ShapeRef.new(shape: CentralizationFailureReason, location_name: "FailureReason"))
283
+ CentralizationRuleSummary.add_member(:tag_propagation_status, Shapes::ShapeRef.new(shape: TagPropagationStatus, location_name: "TagPropagationStatus"))
284
+ CentralizationRuleSummary.add_member(:tag_propagation_failure_reason, Shapes::ShapeRef.new(shape: TagPropagationFailureReason, location_name: "TagPropagationFailureReason"))
278
285
  CentralizationRuleSummary.add_member(:destination_account_id, Shapes::ShapeRef.new(shape: String, location_name: "DestinationAccountId"))
279
286
  CentralizationRuleSummary.add_member(:destination_region, Shapes::ShapeRef.new(shape: Region, location_name: "DestinationRegion"))
280
287
  CentralizationRuleSummary.struct_class = Types::CentralizationRuleSummary
@@ -366,6 +373,7 @@ module Aws::ObservabilityAdmin
366
373
  DestinationLogsConfiguration.add_member(:logs_encryption_configuration, Shapes::ShapeRef.new(shape: LogsEncryptionConfiguration, location_name: "LogsEncryptionConfiguration"))
367
374
  DestinationLogsConfiguration.add_member(:backup_configuration, Shapes::ShapeRef.new(shape: LogsBackupConfiguration, location_name: "BackupConfiguration"))
368
375
  DestinationLogsConfiguration.add_member(:log_group_name_configuration, Shapes::ShapeRef.new(shape: LogGroupNameConfiguration, location_name: "LogGroupNameConfiguration"))
376
+ DestinationLogsConfiguration.add_member(:tag_propagation_configuration, Shapes::ShapeRef.new(shape: TagPropagationConfiguration, location_name: "TagPropagationConfiguration"))
369
377
  DestinationLogsConfiguration.struct_class = Types::DestinationLogsConfiguration
370
378
 
371
379
  DestinationMetricsConfiguration.add_member(:backup_configuration, Shapes::ShapeRef.new(shape: MetricsBackupConfiguration, location_name: "BackupConfiguration"))
@@ -408,6 +416,8 @@ module Aws::ObservabilityAdmin
408
416
  GetCentralizationRuleForOrganizationOutput.add_member(:last_update_time_stamp, Shapes::ShapeRef.new(shape: Long, location_name: "LastUpdateTimeStamp"))
409
417
  GetCentralizationRuleForOrganizationOutput.add_member(:rule_health, Shapes::ShapeRef.new(shape: RuleHealth, location_name: "RuleHealth"))
410
418
  GetCentralizationRuleForOrganizationOutput.add_member(:failure_reason, Shapes::ShapeRef.new(shape: CentralizationFailureReason, location_name: "FailureReason"))
419
+ GetCentralizationRuleForOrganizationOutput.add_member(:tag_propagation_status, Shapes::ShapeRef.new(shape: TagPropagationStatus, location_name: "TagPropagationStatus"))
420
+ GetCentralizationRuleForOrganizationOutput.add_member(:tag_propagation_failure_reason, Shapes::ShapeRef.new(shape: TagPropagationFailureReason, location_name: "TagPropagationFailureReason"))
411
421
  GetCentralizationRuleForOrganizationOutput.add_member(:centralization_rule, Shapes::ShapeRef.new(shape: CentralizationRule, location_name: "CentralizationRule"))
412
422
  GetCentralizationRuleForOrganizationOutput.struct_class = Types::GetCentralizationRuleForOrganizationOutput
413
423
 
@@ -681,6 +691,10 @@ module Aws::ObservabilityAdmin
681
691
  TagMapOutput.key = Shapes::ShapeRef.new(shape: String)
682
692
  TagMapOutput.value = Shapes::ShapeRef.new(shape: String)
683
693
 
694
+ TagPropagationConfiguration.add_member(:destination_role_arn, Shapes::ShapeRef.new(shape: IamRoleArn, required: true, location_name: "DestinationRoleArn"))
695
+ TagPropagationConfiguration.add_member(:tag_conflict_resolution_strategy, Shapes::ShapeRef.new(shape: TagConflictResolutionStrategy, location_name: "TagConflictResolutionStrategy"))
696
+ TagPropagationConfiguration.struct_class = Types::TagPropagationConfiguration
697
+
684
698
  TagResourceInput.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ResourceArn, required: true, location_name: "ResourceARN"))
685
699
  TagResourceInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagMapInput, required: true, location_name: "Tags"))
686
700
  TagResourceInput.struct_class = Types::TagResourceInput
@@ -247,6 +247,18 @@ module Aws::ObservabilityAdmin
247
247
  # UNHEALTHY.
248
248
  # @return [String]
249
249
  #
250
+ # @!attribute [rw] tag_propagation_status
251
+ # The health status of tag propagation for this rule. This status is
252
+ # independent of the overall `RuleHealth` for log delivery. Returns
253
+ # `Healthy` when the most recent tag-propagation attempt succeeded, or
254
+ # `Unhealthy` when the most recent attempt failed.
255
+ # @return [String]
256
+ #
257
+ # @!attribute [rw] tag_propagation_failure_reason
258
+ # The reason tag propagation is unhealthy for this rule. Only present
259
+ # when `TagPropagationStatus` is `Unhealthy`.
260
+ # @return [String]
261
+ #
250
262
  # @!attribute [rw] destination_account_id
251
263
  # The primary destination account of the organization centralization
252
264
  # rule.
@@ -268,6 +280,8 @@ module Aws::ObservabilityAdmin
268
280
  :last_update_time_stamp,
269
281
  :rule_health,
270
282
  :failure_reason,
283
+ :tag_propagation_status,
284
+ :tag_propagation_failure_reason,
271
285
  :destination_account_id,
272
286
  :destination_region)
273
287
  SENSITIVE = []
@@ -686,12 +700,20 @@ module Aws::ObservabilityAdmin
686
700
  # when log groups are created.
687
701
  # @return [Types::LogGroupNameConfiguration]
688
702
  #
703
+ # @!attribute [rw] tag_propagation_configuration
704
+ # Specifies the tag propagation configuration for this centralization
705
+ # rule. When present, `LogGroupNameConfiguration` must use a
706
+ # `LogGroupNamePattern` that contains `${source.logGroup}`,
707
+ # `${source.accountId}`, and `${source.region}`.
708
+ # @return [Types::TagPropagationConfiguration]
709
+ #
689
710
  # @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/DestinationLogsConfiguration AWS API Documentation
690
711
  #
691
712
  class DestinationLogsConfiguration < Struct.new(
692
713
  :logs_encryption_configuration,
693
714
  :backup_configuration,
694
- :log_group_name_configuration)
715
+ :log_group_name_configuration,
716
+ :tag_propagation_configuration)
695
717
  SENSITIVE = []
696
718
  include Aws::Structure
697
719
  end
@@ -863,6 +885,18 @@ module Aws::ObservabilityAdmin
863
885
  # UNHEALTHY.
864
886
  # @return [String]
865
887
  #
888
+ # @!attribute [rw] tag_propagation_status
889
+ # The health status of tag propagation for this rule. This status is
890
+ # independent of the overall `RuleHealth` for log delivery. Returns
891
+ # `Healthy` when the most recent tag-propagation attempt succeeded, or
892
+ # `Unhealthy` when the most recent attempt failed.
893
+ # @return [String]
894
+ #
895
+ # @!attribute [rw] tag_propagation_failure_reason
896
+ # The reason tag propagation is unhealthy for this rule. Only present
897
+ # when `TagPropagationStatus` is `Unhealthy`.
898
+ # @return [String]
899
+ #
866
900
  # @!attribute [rw] centralization_rule
867
901
  # The configuration details for the organization centralization rule.
868
902
  # @return [Types::CentralizationRule]
@@ -878,6 +912,8 @@ module Aws::ObservabilityAdmin
878
912
  :last_update_time_stamp,
879
913
  :rule_health,
880
914
  :failure_reason,
915
+ :tag_propagation_status,
916
+ :tag_propagation_failure_reason,
881
917
  :centralization_rule)
882
918
  SENSITIVE = []
883
919
  include Aws::Structure
@@ -2176,6 +2212,43 @@ module Aws::ObservabilityAdmin
2176
2212
  include Aws::Structure
2177
2213
  end
2178
2214
 
2215
+ # Specifies configuration for propagating resource tags from source log
2216
+ # groups to centralized destination log groups. The service uses a
2217
+ # customer-managed IAM role in the destination account to add, update,
2218
+ # and remove tags on destination log groups.
2219
+ #
2220
+ # @!attribute [rw] destination_role_arn
2221
+ # The ARN of a customer-managed IAM role in the destination account.
2222
+ # The service assumes this role to propagate tags to destination log
2223
+ # groups. You must have `iam:PassRole` permission on this role.
2224
+ # @return [String]
2225
+ #
2226
+ # @!attribute [rw] tag_conflict_resolution_strategy
2227
+ # The strategy for resolving conflicts when a tag key exists on both
2228
+ # the source and destination log groups. If not specified, defaults to
2229
+ # `UPDATE_SYNC`.
2230
+ #
2231
+ # * `ADD_ONLY` – Only adds new tags from the source without modifying
2232
+ # existing destination tags.
2233
+ #
2234
+ # * `UPDATE_SYNC` – Adds new tags and updates existing tags from the
2235
+ # source. Does not remove destination tags that are absent from the
2236
+ # source.
2237
+ #
2238
+ # * `IN_SYNC` – Keeps destination tags fully synchronized with source
2239
+ # tags, including removing destination tags that do not exist on the
2240
+ # source.
2241
+ # @return [String]
2242
+ #
2243
+ # @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/TagPropagationConfiguration AWS API Documentation
2244
+ #
2245
+ class TagPropagationConfiguration < Struct.new(
2246
+ :destination_role_arn,
2247
+ :tag_conflict_resolution_strategy)
2248
+ SENSITIVE = []
2249
+ include Aws::Structure
2250
+ end
2251
+
2179
2252
  # @!attribute [rw] resource_arn
2180
2253
  # The Amazon Resource Name (ARN) of the telemetry rule resource to
2181
2254
  # tag.
@@ -55,7 +55,7 @@ module Aws::ObservabilityAdmin
55
55
  autoload :EndpointProvider, 'aws-sdk-observabilityadmin/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-observabilityadmin/endpoints'
57
57
 
58
- GEM_VERSION = '1.36.0'
58
+ GEM_VERSION = '1.37.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -186,6 +186,8 @@ module Aws
186
186
  def last_update_time_stamp: () -> ::Integer
187
187
  def rule_health: () -> ("Healthy" | "Unhealthy" | "Provisioning")
188
188
  def failure_reason: () -> ("TRUSTED_ACCESS_NOT_ENABLED" | "DESTINATION_ACCOUNT_NOT_IN_ORGANIZATION" | "INTERNAL_SERVER_ERROR")
189
+ def tag_propagation_status: () -> ("Healthy" | "Unhealthy")
190
+ def tag_propagation_failure_reason: () -> ("RoleNotAssumable" | "RoleLacksPermissions")
189
191
  def centralization_rule: () -> Types::CentralizationRule
190
192
  end
191
193
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ObservabilityAdmin/Client.html#get_centralization_rule_for_organization-instance_method
data/sig/params.rbs CHANGED
@@ -34,6 +34,10 @@ module Aws
34
34
  }?,
35
35
  log_group_name_configuration: {
36
36
  log_group_name_pattern: ::String
37
+ }?,
38
+ tag_propagation_configuration: {
39
+ destination_role_arn: ::String,
40
+ tag_conflict_resolution_strategy: ("IN_SYNC" | "ADD_ONLY" | "UPDATE_SYNC")?
37
41
  }?
38
42
  }
39
43
 
data/sig/types.rbs CHANGED
@@ -67,6 +67,8 @@ module Aws::ObservabilityAdmin
67
67
  attr_accessor last_update_time_stamp: ::Integer
68
68
  attr_accessor rule_health: ("Healthy" | "Unhealthy" | "Provisioning")
69
69
  attr_accessor failure_reason: ("TRUSTED_ACCESS_NOT_ENABLED" | "DESTINATION_ACCOUNT_NOT_IN_ORGANIZATION" | "INTERNAL_SERVER_ERROR")
70
+ attr_accessor tag_propagation_status: ("Healthy" | "Unhealthy")
71
+ attr_accessor tag_propagation_failure_reason: ("RoleNotAssumable" | "RoleLacksPermissions")
70
72
  attr_accessor destination_account_id: ::String
71
73
  attr_accessor destination_region: ::String
72
74
  SENSITIVE: []
@@ -197,6 +199,7 @@ module Aws::ObservabilityAdmin
197
199
  attr_accessor logs_encryption_configuration: Types::LogsEncryptionConfiguration
198
200
  attr_accessor backup_configuration: Types::LogsBackupConfiguration
199
201
  attr_accessor log_group_name_configuration: Types::LogGroupNameConfiguration
202
+ attr_accessor tag_propagation_configuration: Types::TagPropagationConfiguration
200
203
  SENSITIVE: []
201
204
  end
202
205
 
@@ -246,6 +249,8 @@ module Aws::ObservabilityAdmin
246
249
  attr_accessor last_update_time_stamp: ::Integer
247
250
  attr_accessor rule_health: ("Healthy" | "Unhealthy" | "Provisioning")
248
251
  attr_accessor failure_reason: ("TRUSTED_ACCESS_NOT_ENABLED" | "DESTINATION_ACCOUNT_NOT_IN_ORGANIZATION" | "INTERNAL_SERVER_ERROR")
252
+ attr_accessor tag_propagation_status: ("Healthy" | "Unhealthy")
253
+ attr_accessor tag_propagation_failure_reason: ("RoleNotAssumable" | "RoleLacksPermissions")
249
254
  attr_accessor centralization_rule: Types::CentralizationRule
250
255
  SENSITIVE: []
251
256
  end
@@ -590,6 +595,12 @@ module Aws::ObservabilityAdmin
590
595
  SENSITIVE: []
591
596
  end
592
597
 
598
+ class TagPropagationConfiguration
599
+ attr_accessor destination_role_arn: ::String
600
+ attr_accessor tag_conflict_resolution_strategy: ("IN_SYNC" | "ADD_ONLY" | "UPDATE_SYNC")
601
+ SENSITIVE: []
602
+ end
603
+
593
604
  class TagResourceInput
594
605
  attr_accessor resource_arn: ::String
595
606
  attr_accessor tags: ::Hash[::String, ::String]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-observabilityadmin
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.36.0
4
+ version: 1.37.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services