Class: Aws::CostExplorer::Types::UntagResourceRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-costexplorer/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#resource_arnString

The Amazon Resource Name (ARN) of the resource. For a list of supported resources, see [ResourceTag].

[1]: docs.aws.amazon.com/aws-cost-management/latest/APIReference/API_ResourceTag.html

Returns:

  • (String)


7092
7093
7094
7095
7096
7097
# File 'lib/aws-sdk-costexplorer/types.rb', line 7092

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

#resource_tag_keysArray<String>

A list of tag keys associated with tags that need to be removed from the resource. If you specify a tag key that doesn’t exist, it’s ignored. Although the maximum number of array members is 200, user-tag maximum is 50. The remaining are reserved for Amazon Web Services use.

Returns:

  • (Array<String>)


7092
7093
7094
7095
7096
7097
# File 'lib/aws-sdk-costexplorer/types.rb', line 7092

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