interface EksEndpointsConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.RTBFabric.Mixins.CfnResponderGatewayPropsMixin.EksEndpointsConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsrtbfabric/mixins#CfnResponderGatewayPropsMixin_EksEndpointsConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.rtbfabric.mixins.CfnResponderGatewayPropsMixin.EksEndpointsConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_rtbfabric.mixins.CfnResponderGatewayPropsMixin.EksEndpointsConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_rtbfabric » mixins » CfnResponderGatewayPropsMixin » EksEndpointsConfigurationProperty |
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 { mixins as rtbfabric_mixins } from '@aws-cdk/mixins-preview/aws-rtbfabric';
const eksEndpointsConfigurationProperty: rtbfabric_mixins.CfnResponderGatewayPropsMixin.EksEndpointsConfigurationProperty = {
clusterApiServerCaCertificateChain: 'clusterApiServerCaCertificateChain',
clusterApiServerEndpointUri: 'clusterApiServerEndpointUri',
clusterName: 'clusterName',
endpointsResourceName: 'endpointsResourceName',
endpointsResourceNamespace: 'endpointsResourceNamespace',
roleArn: 'roleArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| cluster | string | The CA certificate chain of the cluster API server. |
| cluster | string | The URI of the cluster API server endpoint. |
| cluster | string | The name of the cluster. |
| endpoints | string | The name of the endpoint resource. |
| endpoints | string | The namespace of the endpoint resource. |
| role | string | The role ARN for the cluster. |
clusterApiServerCaCertificateChain?
Type:
string
(optional)
The CA certificate chain of the cluster API server.
clusterApiServerEndpointUri?
Type:
string
(optional)
The URI of the cluster API server endpoint.
clusterName?
Type:
string
(optional)
The name of the cluster.
endpointsResourceName?
Type:
string
(optional)
The name of the endpoint resource.
endpointsResourceNamespace?
Type:
string
(optional)
The namespace of the endpoint resource.
roleArn?
Type:
string
(optional)
The role ARN for the cluster.

.NET
Go
Java
Python
TypeScript