interface CertificateAuthorityProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.EKS.CfnClusterPropsMixin.CertificateAuthorityProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awseks#CfnClusterPropsMixin_CertificateAuthorityProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.eks.CfnClusterPropsMixin.CertificateAuthorityProperty |
Python | aws_cdk.cfn_property_mixins.aws_eks.CfnClusterPropsMixin.CertificateAuthorityProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_eks » CfnClusterPropsMixin » 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 as eks } from '@aws-cdk/cfn-property-mixins';
const certificateAuthorityProperty: eks.CfnClusterPropsMixin.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