interface CertificateAuthorityProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EKSv2.CfnCluster.CertificateAuthorityProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awseksv2#CfnCluster_CertificateAuthorityProperty |
Java | software.amazon.awscdk.services.eks_v2.CfnCluster.CertificateAuthorityProperty |
Python | aws_cdk.aws_eks_v2.CfnCluster.CertificateAuthorityProperty |
TypeScript | aws-cdk-lib » aws_eks_v2 » CfnCluster » CertificateAuthorityProperty |
The certificate authority information for the cluster, including the trust bundle and the currently active signing certificate authority.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_eks_v2 as eks_v2 } from 'aws-cdk-lib';
const certificateAuthorityProperty: eks_v2.CfnCluster.CertificateAuthorityProperty = {
active: {
activatedBy: 'activatedBy',
id: 'id',
},
data: 'data',
};
Properties
| Name | Type | Description |
|---|---|---|
| active? | IResolvable | Active | Identifies the certificate authority currently signing certificates for the cluster. |
| data? | string | The base64-encoded certificate-authority trust bundle for the cluster (all trusted CAs). |
active?
Type:
IResolvable | Active
(optional)
Identifies the certificate authority currently signing certificates for the cluster.
data?
Type:
string
(optional)
The base64-encoded certificate-authority trust bundle for the cluster (all trusted CAs).

.NET
Go
Java
Python
TypeScript