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)


5863
5864
5865
5866
5867
5868
5869
# File 'lib/aws-sdk-sagemaker/types.rb', line 5863

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

#keyString

The key of the taint.

Returns:

  • (String)


5863
5864
5865
5866
5867
5868
5869
# File 'lib/aws-sdk-sagemaker/types.rb', line 5863

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

#valueString

The value of the taint.

Returns:

  • (String)


5863
5864
5865
5866
5867
5868
5869
# File 'lib/aws-sdk-sagemaker/types.rb', line 5863

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