Class: Aws::SageMaker::Types::ClusterKubernetesConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::ClusterKubernetesConfig
- Defined in:
- gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb
Overview
Kubernetes configuration that specifies labels and taints to be applied to cluster nodes in an instance group.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#labels ⇒ Hash<String,String>
Key-value pairs of labels to be applied to cluster nodes.
-
#taints ⇒ Array<Types::ClusterKubernetesTaint>
List of taints to be applied to cluster nodes.
Instance Attribute Details
#labels ⇒ Hash<String,String>
Key-value pairs of labels to be applied to cluster nodes.
5777 5778 5779 5780 5781 5782 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 5777 class ClusterKubernetesConfig < Struct.new( :labels, :taints) SENSITIVE = [] include Aws::Structure end |
#taints ⇒ Array<Types::ClusterKubernetesTaint>
List of taints to be applied to cluster nodes.
5777 5778 5779 5780 5781 5782 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 5777 class ClusterKubernetesConfig < Struct.new( :labels, :taints) SENSITIVE = [] include Aws::Structure end |