Class: Aws::AlexaForBusiness::Types::Tag

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

Overview

Note:

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

{
  key: "TagKey", # required
  value: "TagValue", # required
}

A key-value pair that can be associated with a resource.

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

The key of a tag. Tag keys are case-sensitive.

Returns:

  • (String)


3779
3780
3781
3782
3783
# File 'lib/aws-sdk-alexaforbusiness/types.rb', line 3779

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

#valueString

The value of a tag. Tag values are case-sensitive and can be null.

Returns:

  • (String)


3779
3780
3781
3782
3783
# File 'lib/aws-sdk-alexaforbusiness/types.rb', line 3779

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