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

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

Overview

Contains information about a tag associated with the EC2 instance.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

The EC2 instance tag key.

Returns:

  • (String)


7329
7330
7331
7332
7333
7334
# File 'lib/aws-sdk-guardduty/types.rb', line 7329

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

#valueString

The EC2 instance tag value.

Returns:

  • (String)


7329
7330
7331
7332
7333
7334
# File 'lib/aws-sdk-guardduty/types.rb', line 7329

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