Class: Aws::SageMaker::Types::ClusterKubernetesConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::ClusterKubernetesConfig
- Includes:
- Aws::Structure
- Defined in:
- 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.
5910 5911 5912 5913 5914 5915 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 5910 class ClusterKubernetesConfig < Struct.new( :labels, :taints) SENSITIVE = [] include Aws::Structure end |
#taints ⇒ Array<Types::ClusterKubernetesTaint>
List of taints to be applied to cluster nodes.
5910 5911 5912 5913 5914 5915 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 5910 class ClusterKubernetesConfig < Struct.new( :labels, :taints) SENSITIVE = [] include Aws::Structure end |