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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-sagemaker/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 'gems/aws-sdk-sagemaker/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 'gems/aws-sdk-sagemaker/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 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 5863

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