Class Nodegroup
java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
software.amazon.awscdk.core.Construct
software.amazon.awscdk.core.Resource
software.amazon.awscdk.services.eks.Nodegroup
- All Implemented Interfaces:
IConstruct
,IDependable
,IResource
,INodegroup
,software.amazon.jsii.JsiiSerializable
,software.constructs.IConstruct
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:46.650Z")
@Stability(Stable)
public class Nodegroup
extends Resource
implements INodegroup
The Nodegroup resource class.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.ec2.*; import software.amazon.awscdk.services.eks.*; import software.amazon.awscdk.services.iam.*; Cluster cluster; InstanceType instanceType; Role role; SecurityGroup securityGroup; Subnet subnet; SubnetFilter subnetFilter; Nodegroup nodegroup = Nodegroup.Builder.create(this, "MyNodegroup") .cluster(cluster) // the properties below are optional .amiType(NodegroupAmiType.AL2_X86_64) .capacityType(CapacityType.SPOT) .desiredSize(123) .diskSize(123) .forceUpdate(false) .instanceType(instanceType) .instanceTypes(List.of(instanceType)) .labels(Map.of( "labelsKey", "labels")) .launchTemplateSpec(LaunchTemplateSpec.builder() .id("id") // the properties below are optional .version("version") .build()) .maxSize(123) .minSize(123) .nodegroupName("nodegroupName") .nodeRole(role) .releaseVersion("releaseVersion") .remoteAccess(NodegroupRemoteAccess.builder() .sshKeyName("sshKeyName") // the properties below are optional .sourceSecurityGroups(List.of(securityGroup)) .build()) .subnets(SubnetSelection.builder() .availabilityZones(List.of("availabilityZones")) .onePerAz(false) .subnetFilters(List.of(subnetFilter)) .subnetGroupName("subnetGroupName") .subnetName("subnetName") .subnets(List.of(subnet)) .subnetType(SubnetType.ISOLATED) .build()) .tags(Map.of( "tagsKey", "tags")) .taints(List.of(TaintSpec.builder() .effect(TaintEffect.NO_SCHEDULE) .key("key") .value("value") .build())) .build();
-
Nested Class Summary
Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationMode
Nested classes/interfaces inherited from interface software.amazon.awscdk.core.IConstruct
IConstruct.Jsii$Default
Nested classes/interfaces inherited from interface software.constructs.IConstruct
software.constructs.IConstruct.Jsii$Default
Nested classes/interfaces inherited from interface software.amazon.awscdk.services.eks.INodegroup
INodegroup.Jsii$Default, INodegroup.Jsii$Proxy
Nested classes/interfaces inherited from interface software.amazon.awscdk.core.IResource
IResource.Jsii$Default
-
Constructor Summary
ModifierConstructorDescriptionprotected
Nodegroup
(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protected
Nodegroup
(software.amazon.jsii.JsiiObjectRef objRef) Nodegroup
(software.constructs.Construct scope, String id, NodegroupProps props) -
Method Summary
Modifier and TypeMethodDescriptionstatic INodegroup
fromNodegroupName
(software.constructs.Construct scope, String id, String nodegroupName) Import the Nodegroup from attributes.the Amazon EKS cluster resource.ARN of the nodegroup.Nodegroup name.getRole()
IAM role of the instance profile for the nodegroup.Methods inherited from class software.amazon.awscdk.core.Resource
applyRemovalPolicy, generatePhysicalName, getEnv, getPhysicalName, getResourceArnAttribute, getResourceNameAttribute, getStack, isResource
Methods inherited from class software.amazon.awscdk.core.Construct
getNode, isConstruct, onPrepare, onSynthesize, onValidate, prepare, synthesize, validate
Methods inherited from class software.constructs.Construct
toString
Methods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface software.amazon.awscdk.core.IConstruct
getNode
Methods inherited from interface software.amazon.awscdk.core.IResource
applyRemovalPolicy, getEnv, getStack
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Constructor Details
-
Nodegroup
protected Nodegroup(software.amazon.jsii.JsiiObjectRef objRef) -
Nodegroup
protected Nodegroup(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
Nodegroup
@Stability(Stable) public Nodegroup(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull NodegroupProps props) - Parameters:
scope
- This parameter is required.id
- This parameter is required.props
- This parameter is required.
-
-
Method Details
-
fromNodegroupName
@Stability(Stable) @NotNull public static INodegroup fromNodegroupName(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull String nodegroupName) Import the Nodegroup from attributes.- Parameters:
scope
- This parameter is required.id
- This parameter is required.nodegroupName
- This parameter is required.
-
getCluster
the Amazon EKS cluster resource. -
getNodegroupArn
ARN of the nodegroup. -
getNodegroupName
Nodegroup name.- Specified by:
getNodegroupName
in interfaceINodegroup
-
getRole
IAM role of the instance profile for the nodegroup.
-