Class: Aws::SageMaker::Types::Tag

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

Overview

A tag object that consists of a key and an optional value, used to manage metadata for SageMaker Amazon Web Services resources.

You can add tags to notebook instances, training jobs, hyperparameter tuning jobs, batch transform jobs, models, labeling jobs, work teams, endpoint configurations, and endpoints. For more information on adding tags to SageMaker resources, see [AddTags].

For more information on adding metadata to your Amazon Web Services resources with tagging, see [Tagging Amazon Web Services resources]. For advice on best practices for managing Amazon Web Services resources with tagging, see [Tagging Best Practices: Implement an Effective Amazon Web Services Resource Tagging Strategy].

[1]: docs.aws.amazon.com/sagemaker/latest/APIReference/API_AddTags.html [2]: docs.aws.amazon.com/general/latest/gr/aws_tagging.html [3]: d1.awsstatic.com/whitepapers/aws-tagging-best-practices.pdf

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

The tag key. Tag keys must be unique per resource.

Returns:

  • (String)


37616
37617
37618
37619
37620
37621
# File 'lib/aws-sdk-sagemaker/types.rb', line 37616

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

#valueString

The tag value.

Returns:

  • (String)


37616
37617
37618
37619
37620
37621
# File 'lib/aws-sdk-sagemaker/types.rb', line 37616

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