interface EksEndpointsConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.RTBFabric.CfnResponderGateway.EksEndpointsConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsrtbfabric#CfnResponderGateway_EksEndpointsConfigurationProperty |
Java | software.amazon.awscdk.services.rtbfabric.CfnResponderGateway.EksEndpointsConfigurationProperty |
Python | aws_cdk.aws_rtbfabric.CfnResponderGateway.EksEndpointsConfigurationProperty |
TypeScript | aws-cdk-lib » aws_rtbfabric » CfnResponderGateway » 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 { aws_rtbfabric as rtbfabric } from 'aws-cdk-lib';
const eksEndpointsConfigurationProperty: rtbfabric.CfnResponderGateway.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
The CA certificate chain of the cluster API server.
clusterApiServerEndpointUri
Type:
string
The URI of the cluster API server endpoint.
clusterName
Type:
string
The name of the cluster.
endpointsResourceName
Type:
string
The name of the endpoint resource.
endpointsResourceNamespace
Type:
string
The namespace of the endpoint resource.
roleArn
Type:
string
The role ARN for the cluster.

.NET
Go
Java
Python
TypeScript