Show / Hide Table of Contents

Class CertificateReference

A reference to a Certificate resource.

Inheritance
object
CertificateReference
Implements
ICertificateReference
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.Transfer
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CertificateReference : ICertificateReference
Syntax (vb)
Public Class CertificateReference Implements ICertificateReference
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.Transfer;

            var certificateReference = new CertificateReference {
                CertificateArn = "certificateArn",
                CertificateId = "certificateId"
            };

Synopsis

Constructors

CertificateReference()

A reference to a Certificate resource.

Properties

CertificateArn

The ARN of the Certificate resource.

CertificateId

The CertificateId of the Certificate resource.

Constructors

CertificateReference()

A reference to a Certificate resource.

public CertificateReference()
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.Transfer;

            var certificateReference = new CertificateReference {
                CertificateArn = "certificateArn",
                CertificateId = "certificateId"
            };

Properties

CertificateArn

The ARN of the Certificate resource.

public string CertificateArn { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

CertificateId

The CertificateId of the Certificate resource.

public string CertificateId { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Implements

ICertificateReference
Back to top Generated by DocFX