Interface CfnResponderGateway.EksEndpointsConfigurationProperty

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

@Stability(Stable) public static interface CfnResponderGateway.EksEndpointsConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Describes the configuration of an Amazon Elastic Kubernetes Service endpoint.

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.rtbfabric.*;
 EksEndpointsConfigurationProperty eksEndpointsConfigurationProperty = EksEndpointsConfigurationProperty.builder()
         .clusterApiServerCaCertificateChain("clusterApiServerCaCertificateChain")
         .clusterApiServerEndpointUri("clusterApiServerEndpointUri")
         .clusterName("clusterName")
         .endpointsResourceName("endpointsResourceName")
         .endpointsResourceNamespace("endpointsResourceNamespace")
         .roleArn("roleArn")
         .build();
 

See Also: