Class CertificateReference
A reference to a Certificate resource.
Implements
Inherited Members
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
Remarks
ExampleMetadata: fixture=_generated
CertificateId
The CertificateId of the Certificate resource.
public string CertificateId { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated