Class: Aws::MachineLearning::Types::Tag
- Inherits:
-
Struct
- Object
- Struct
- Aws::MachineLearning::Types::Tag
- Defined in:
- gems/aws-sdk-machinelearning/lib/aws-sdk-machinelearning/types.rb
Overview
A custom key-value pair associated with an ML object, such as an ML model.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#key ⇒ String
A unique identifier for the tag.
-
#value ⇒ String
An optional string, typically used to describe or define the tag.
Instance Attribute Details
#key ⇒ String
A unique identifier for the tag. Valid characters include Unicode letters, digits, white space, _, ., /, =, +, -, %, and @.
3524 3525 3526 3527 3528 3529 |
# File 'gems/aws-sdk-machinelearning/lib/aws-sdk-machinelearning/types.rb', line 3524 class Tag < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
An optional string, typically used to describe or define the tag. Valid characters include Unicode letters, digits, white space, _, ., /, =, +, -, %, and @.
3524 3525 3526 3527 3528 3529 |
# File 'gems/aws-sdk-machinelearning/lib/aws-sdk-machinelearning/types.rb', line 3524 class Tag < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |