Show / Hide Table of Contents

Class PermissionReference

A reference to a Permission resource.

Inheritance
object
PermissionReference
Implements
IPermissionReference
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

string

Remarks

ExampleMetadata: fixture=_generated

Principal

The Principal of the Permission resource.

public string Principal { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Implements

IPermissionReference
Back to top Generated by DocFX