Class: Aws::SageMaker::Types::ClusterKubernetesTaint
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::ClusterKubernetesTaint
- 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
-
#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`.
6191 6192 6193 6194 6195 6196 6197 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 6191 class ClusterKubernetesTaint < Struct.new( :key, :value, :effect) SENSITIVE = [] include Aws::Structure end |
#key ⇒ String
The key of the taint.
6191 6192 6193 6194 6195 6196 6197 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 6191 class ClusterKubernetesTaint < Struct.new( :key, :value, :effect) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
The value of the taint.
6191 6192 6193 6194 6195 6196 6197 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 6191 class ClusterKubernetesTaint < Struct.new( :key, :value, :effect) SENSITIVE = [] include Aws::Structure end |