Class: Aws::CloudWatch::Types::UntagResourceInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudWatch::Types::UntagResourceInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudwatch/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#resource_arn ⇒ String
The ARN of the CloudWatch resource that you’re removing tags from.
-
#tag_keys ⇒ Array<String>
The list of tag keys to remove from the resource.
Instance Attribute Details
#resource_arn ⇒ String
The ARN of the CloudWatch resource that you’re removing tags from.
The ARN format of an alarm is ‘arn:aws:cloudwatch:Region:account-id:alarm:alarm-name `
The ARN format of a Contributor Insights rule is ‘arn:aws:cloudwatch:Region:account-id:insight-rule:insight-rule-name `
For more information about ARN format, see [ Resource Types Defined by Amazon CloudWatch] in the *Amazon Web Services General Reference*.
4329 4330 4331 4332 4333 4334 |
# File 'lib/aws-sdk-cloudwatch/types.rb', line 4329 class UntagResourceInput < Struct.new( :resource_arn, :tag_keys) SENSITIVE = [] include Aws::Structure end |
#tag_keys ⇒ Array<String>
The list of tag keys to remove from the resource.
4329 4330 4331 4332 4333 4334 |
# File 'lib/aws-sdk-cloudwatch/types.rb', line 4329 class UntagResourceInput < Struct.new( :resource_arn, :tag_keys) SENSITIVE = [] include Aws::Structure end |