interface CertificateAuthorityReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.EKS.CertificateAuthorityReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awseks#CertificateAuthorityReference |
Java | software.amazon.awscdk.interfaces.eks.CertificateAuthorityReference |
Python | aws_cdk.interfaces.aws_eks.CertificateAuthorityReference |
TypeScript | aws-cdk-lib » interfaces » aws_eks » CertificateAuthorityReference |
A reference to a CertificateAuthority resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_eks as interfaces_eks } from 'aws-cdk-lib/interfaces';
const certificateAuthorityReference: interfaces_eks.CertificateAuthorityReference = {
certificateAuthorityId: 'certificateAuthorityId',
clusterName: 'clusterName',
};
Properties
| Name | Type | Description |
|---|---|---|
| certificate | string | The Id of the CertificateAuthority resource. |
| cluster | string | The ClusterName of the CertificateAuthority resource. |
certificateAuthorityId
Type:
string
The Id of the CertificateAuthority resource.
clusterName
Type:
string
The ClusterName of the CertificateAuthority resource.

.NET
Go
Java
Python
TypeScript