Class: Aws::SageMaker::Types::ClusterKubernetesTaint
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::ClusterKubernetesTaint
- 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
-
#effect ⇒ String
The effect of the taint.
-
#key ⇒ String
The key of the taint.
-
#value ⇒ String
The value of the taint.
Instance Attribute Details
#effect ⇒ String
The effect of the taint. Valid values are NoSchedule,
PreferNoSchedule, and NoExecute.
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 |
#key ⇒ String
The key of the taint.
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 |
#value ⇒ String
The value of the taint.
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 |