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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnResponderGatewayPropsMixin.EksEndpointsConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe CA certificate chain of the cluster API server.default StringThe URI of the cluster API server endpoint.default StringThe name of the cluster.default StringThe name of the endpoint resource.default StringThe namespace of the endpoint resource.default StringThe role ARN for the cluster.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getClusterApiServerCaCertificateChain
The CA certificate chain of the cluster API server.- See Also:
-
getClusterApiServerEndpointUri
The URI of the cluster API server endpoint.- See Also:
-
getClusterName
The name of the cluster.- See Also:
-
getEndpointsResourceName
The name of the endpoint resource.- See Also:
-
getEndpointsResourceNamespace
The namespace of the endpoint resource.- See Also:
-
getRoleArn
The role ARN for the cluster.- See Also:
-
builder
@Stability(Stable) static CfnResponderGatewayPropsMixin.EksEndpointsConfigurationProperty.Builder builder()
-