Class: Aws::ApplicationSignals::Types::TagResourceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ApplicationSignals::Types::TagResourceRequest
- Defined in:
- gems/aws-sdk-applicationsignals/lib/aws-sdk-applicationsignals/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#resource_arn ⇒ String
The Amazon Resource Name (ARN) of the CloudWatch resource that you want to set tags for.
-
#tags ⇒ Array<Types::Tag>
The list of key-value pairs to associate with the alarm.
Instance Attribute Details
#resource_arn ⇒ String
The Amazon Resource Name (ARN) of the CloudWatch resource that you want to set tags for.
The ARN format of an Application Signals SLO is
arn:aws:cloudwatch:Region:account-id:slo:slo-name
For more information about ARN format, see Resource Types Defined by Amazon CloudWatch in the Amazon Web Services General Reference.
2364 2365 2366 2367 2368 2369 |
# File 'gems/aws-sdk-applicationsignals/lib/aws-sdk-applicationsignals/types.rb', line 2364 class TagResourceRequest < Struct.new( :resource_arn, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
The list of key-value pairs to associate with the alarm.
2364 2365 2366 2367 2368 2369 |
# File 'gems/aws-sdk-applicationsignals/lib/aws-sdk-applicationsignals/types.rb', line 2364 class TagResourceRequest < Struct.new( :resource_arn, :tags) SENSITIVE = [] include Aws::Structure end |