PermissionReference
- class aws_cdk.interfaces.aws_acmpca.PermissionReference(*, certificate_authority_arn, principal)
Bases:
objectA reference to a Permission resource.
- Parameters:
certificate_authority_arn (
str) – The CertificateAuthorityArn of the Permission resource.principal (
str) – The Principal of the Permission 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_acmpca as interfaces_aws_acmpca permission_reference = interfaces_aws_acmpca.PermissionReference( certificate_authority_arn="certificateAuthorityArn", principal="principal" )
Attributes
- certificate_authority_arn
The CertificateAuthorityArn of the Permission resource.
- principal
The Principal of the Permission resource.