Class: Aws::SageMaker::Types::ClusterKubernetesTaint

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

Overview

A Kubernetes taint that can be applied to cluster nodes.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#effectString

The effect of the taint. Valid values are ‘NoSchedule`, `PreferNoSchedule`, and `NoExecute`.

Returns:

  • (String)


5996
5997
5998
5999
6000
6001
6002
# File 'lib/aws-sdk-sagemaker/types.rb', line 5996

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

#keyString

The key of the taint.

Returns:

  • (String)


5996
5997
5998
5999
6000
6001
6002
# File 'lib/aws-sdk-sagemaker/types.rb', line 5996

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

#valueString

The value of the taint.

Returns:

  • (String)


5996
5997
5998
5999
6000
6001
6002
# File 'lib/aws-sdk-sagemaker/types.rb', line 5996

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