Class: Aws::Synthetics::Types::UntagResourceRequest

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-synthetics/lib/aws-sdk-synthetics/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#resource_arnString

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

Returns:

  • (String)


1655
1656
1657
1658
1659
1660
# File 'gems/aws-sdk-synthetics/lib/aws-sdk-synthetics/types.rb', line 1655

class UntagResourceRequest < Struct.new(
  :resource_arn,
  :tag_keys)
  SENSITIVE = []
  include Aws::Structure
end

#tag_keysArray<String>

The list of tag keys to remove from the resource.

Returns:

  • (Array<String>)


1655
1656
1657
1658
1659
1660
# File 'gems/aws-sdk-synthetics/lib/aws-sdk-synthetics/types.rb', line 1655

class UntagResourceRequest < Struct.new(
  :resource_arn,
  :tag_keys)
  SENSITIVE = []
  include Aws::Structure
end