interface PermissionReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.ACMPCA.PermissionReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsacmpca#PermissionReference |
Java | software.amazon.awscdk.interfaces.acmpca.PermissionReference |
Python | aws_cdk.interfaces.aws_acmpca.PermissionReference |
TypeScript | aws-cdk-lib » interfaces » aws_acmpca » PermissionReference |
A reference to a Permission resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_acmpca as interfaces_aws_acmpca } from 'aws-cdk-lib/interfaces';
const permissionReference: interfaces_aws_acmpca.PermissionReference = {
certificateAuthorityArn: 'certificateAuthorityArn',
principal: 'principal',
};
Properties
| Name | Type | Description |
|---|---|---|
| certificate | string | The CertificateAuthorityArn of the Permission resource. |
| principal | string | The Principal of the Permission resource. |
certificateAuthorityArn
Type:
string
The CertificateAuthorityArn of the Permission resource.
principal
Type:
string
The Principal of the Permission resource.

.NET
Go
Java
Python
TypeScript