Class: Aws::EC2::Types::RequestIpamResourceTag

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

Overview

A tag on an IPAM resource.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.

Returns:

  • (String)


55369
55370
55371
55372
55373
55374
# File 'lib/aws-sdk-ec2/types.rb', line 55369

class RequestIpamResourceTag < Struct.new(
  :key,
  :value)
  SENSITIVE = []
  include Aws::Structure
end

#valueString

The value for the tag.

Returns:

  • (String)


55369
55370
55371
55372
55373
55374
# File 'lib/aws-sdk-ec2/types.rb', line 55369

class RequestIpamResourceTag < Struct.new(
  :key,
  :value)
  SENSITIVE = []
  include Aws::Structure
end