PermissionReference

class aws_cdk.aws_acmpca.PermissionReference(*, certificate_authority_arn, principal)

Bases: object

A 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 import aws_acmpca as acmpca

permission_reference = 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.