Class: Aws::GuardDuty::Types::Tag

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

Overview

A tag of the EC2 instance.

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

EC2 instance tag key.

Returns:

  • (String)


2616
2617
2618
2619
2620
# File 'lib/aws-sdk-guardduty/types.rb', line 2616

class Tag < Struct.new(
  :key,
  :value)
  include Aws::Structure
end

#valueString

EC2 instance tag value.

Returns:

  • (String)


2616
2617
2618
2619
2620
# File 'lib/aws-sdk-guardduty/types.rb', line 2616

class Tag < Struct.new(
  :key,
  :value)
  include Aws::Structure
end