Class: Aws::Synthetics::Types::UntagResourceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Synthetics::Types::UntagResourceRequest
- Defined in:
- gems/aws-sdk-synthetics/lib/aws-sdk-synthetics/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#resource_arn ⇒ String
The ARN of the canary or group 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 canary or group that you're removing tags from.
The ARN format of a canary is
arn:aws:synthetics:Region:account-id:canary:canary-name
.
The ARN format of a group is
arn:aws:synthetics:Region:account-id:group:group-name
1724 1725 1726 1727 1728 1729 |
# File 'gems/aws-sdk-synthetics/lib/aws-sdk-synthetics/types.rb', line 1724 class UntagResourceRequest < 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.
1724 1725 1726 1727 1728 1729 |
# File 'gems/aws-sdk-synthetics/lib/aws-sdk-synthetics/types.rb', line 1724 class UntagResourceRequest < Struct.new( :resource_arn, :tag_keys) SENSITIVE = [] include Aws::Structure end |