Class: Aws::DirectConnect::Types::UntagResourceRequest

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

Overview

Note:

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

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

Instance Attribute Summary collapse

Instance Attribute Details

#resource_arnString

The Amazon Resource Name (ARN) of the resource.

Returns:

  • (String)


2499
2500
2501
2502
2503
# File 'lib/aws-sdk-directconnect/types.rb', line 2499

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

#tag_keysArray<String>

The tag keys of the tags to remove.

Returns:

  • (Array<String>)


2499
2500
2501
2502
2503
# File 'lib/aws-sdk-directconnect/types.rb', line 2499

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