interface ActiveCertificateAuthorityProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EKSv2.CfnCluster.ActiveCertificateAuthorityProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awseksv2#CfnCluster_ActiveCertificateAuthorityProperty |
Java | software.amazon.awscdk.services.eks_v2.CfnCluster.ActiveCertificateAuthorityProperty |
Python | aws_cdk.aws_eks_v2.CfnCluster.ActiveCertificateAuthorityProperty |
TypeScript | aws-cdk-lib » aws_eks_v2 » CfnCluster » ActiveCertificateAuthorityProperty |
Identifies the certificate authority currently signing certificates for the cluster.
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 activeCertificateAuthorityProperty: eks_v2.CfnCluster.ActiveCertificateAuthorityProperty = {
activatedBy: 'activatedBy',
id: 'id',
};
Properties
| Name | Type | Description |
|---|---|---|
| activated | string | Indicates whether the active certificate authority was activated by EKS or by the customer. |
| id? | string | The ID of the active (signing) certificate authority. |
activatedBy?
Type:
string
(optional)
Indicates whether the active certificate authority was activated by EKS or by the customer.
id?
Type:
string
(optional)
The ID of the active (signing) certificate authority.

.NET
Go
Java
Python
TypeScript