Class: Aws::HealthLake::Types::Tag

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-healthlake/lib/aws-sdk-healthlake/types.rb

Overview

A tag is a label consisting of a user-defined key and value. The form for tags is {"Key", "Value"\}

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

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

Returns:

  • (String)


1079
1080
1081
1082
1083
1084
# File 'gems/aws-sdk-healthlake/lib/aws-sdk-healthlake/types.rb', line 1079

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

#valueString

The value portion of a tag. Tag values are case sensitive.

Returns:

  • (String)


1079
1080
1081
1082
1083
1084
# File 'gems/aws-sdk-healthlake/lib/aws-sdk-healthlake/types.rb', line 1079

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