Class: Aws::TimestreamWrite::Types::UntagResourceRequest

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

Overview

Note:

When making an API call, you may pass UntagResourceRequest data as a hash:

{
  resource_arn: "AmazonResourceName", # required
  tag_keys: ["TagKey"], # required
}

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#resource_arnString

The Timestream resource that the tags will be removed from. This value is an Amazon Resource Name (ARN).

Returns:

  • (String)


1177
1178
1179
1180
1181
1182
# File 'lib/aws-sdk-timestreamwrite/types.rb', line 1177

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

#tag_keysArray<String>

A list of tags keys. Existing tags of the resource whose keys are members of this list will be removed from the Timestream resource.

Returns:

  • (Array<String>)


1177
1178
1179
1180
1181
1182
# File 'lib/aws-sdk-timestreamwrite/types.rb', line 1177

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