CertificateAuthorityReference
- class aws_cdk.interfaces.aws_eks.CertificateAuthorityReference(*, certificate_authority_id, cluster_name)
Bases:
objectA reference to a CertificateAuthority resource.
- Parameters:
certificate_authority_id (
str) – The Id of the CertificateAuthority resource.cluster_name (
str) – The ClusterName of the CertificateAuthority resource.
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.interfaces import aws_eks as interfaces_eks certificate_authority_reference = interfaces_eks.CertificateAuthorityReference( certificate_authority_id="certificateAuthorityId", cluster_name="clusterName" )
Attributes
- certificate_authority_id
The Id of the CertificateAuthority resource.
- cluster_name
The ClusterName of the CertificateAuthority resource.