Interface CfnNodegroupPropsMixin.RemoteAccessProperty

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

@Stability(Stable) public static interface CfnNodegroupPropsMixin.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.cfnpropertymixins.services.eks.*;
 RemoteAccessProperty remoteAccessProperty = RemoteAccessProperty.builder()
         .ec2SshKey("ec2SshKey")
         .sourceSecurityGroups(List.of("sourceSecurityGroups"))
         .build();
 

See Also: