You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::MachineLearning::Types::DeleteTagsInput

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing DeleteTagsInput as input to an Aws::Client method, you can use a vanilla Hash:

{
  tag_keys: ["TagKey"], # required
  resource_id: "EntityId", # required
  resource_type: "BatchPrediction", # required, accepts BatchPrediction, DataSource, Evaluation, MLModel
}

Instance Attribute Summary collapse

Instance Attribute Details

#resource_idString

The ID of the tagged ML object. For example, exampleModelId.

Returns:

  • (String)

    The ID of the tagged ML object.

#resource_typeString

The type of the tagged ML object.

Possible values:

  • BatchPrediction
  • DataSource
  • Evaluation
  • MLModel

Returns:

  • (String)

    The type of the tagged ML object.

#tag_keysArray<String>

One or more tags to delete.

Returns:

  • (Array<String>)

    One or more tags to delete.