Interface CfnNodegroup.RemoteAccessProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnNodegroup.RemoteAccessProperty.Jsii$Proxy
Enclosing class:
CfnNodegroup

@Stability(Stable) public static interface CfnNodegroup.RemoteAccessProperty extends software.amazon.jsii.JsiiSerializable
An object representing the remote access configuration for the managed node group.

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.eks.*;
 RemoteAccessProperty remoteAccessProperty = RemoteAccessProperty.builder()
         .ec2SshKey("ec2SshKey")
         // the properties below are optional
         .sourceSecurityGroups(List.of("sourceSecurityGroups"))
         .build();
 
  • Method Details