Class PermissionReference
A reference to a Permission resource.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.ACMPCA
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class PermissionReference : IPermissionReference
Syntax (vb)
Public Class PermissionReference Implements IPermissionReference
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.ACMPCA;
var permissionReference = new PermissionReference {
CertificateAuthorityArn = "certificateAuthorityArn",
Principal = "principal"
};
Synopsis
Constructors
PermissionReference() | A reference to a Permission resource. |
Properties
CertificateAuthorityArn | The CertificateAuthorityArn of the Permission resource. |
Principal | The Principal of the Permission resource. |
Constructors
PermissionReference()
A reference to a Permission resource.
public PermissionReference()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.ACMPCA;
var permissionReference = new PermissionReference {
CertificateAuthorityArn = "certificateAuthorityArn",
Principal = "principal"
};
Properties
CertificateAuthorityArn
The CertificateAuthorityArn of the Permission resource.
public string CertificateAuthorityArn { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated
Principal
The Principal of the Permission resource.
public string Principal { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated