Interface CfnResponderGatewayPropsMixin.EksEndpointsConfigurationProperty

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

@Stability(Stable) public static interface CfnResponderGatewayPropsMixin.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.cfnpropertymixins.services.rtbfabric.*;
 EksEndpointsConfigurationProperty eksEndpointsConfigurationProperty = EksEndpointsConfigurationProperty.builder()
         .clusterApiServerCaCertificateChain("clusterApiServerCaCertificateChain")
         .clusterApiServerEndpointUri("clusterApiServerEndpointUri")
         .clusterName("clusterName")
         .endpointsResourceName("endpointsResourceName")
         .endpointsResourceNamespace("endpointsResourceNamespace")
         .roleArn("roleArn")
         .build();
 

See Also: