Class CfnDistributionTenant.CertificateProperty
The AWS Certificate Manager (ACM) certificate associated with your distribution.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.CloudFront
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDistributionTenant.CertificateProperty : CfnDistributionTenant.ICertificateProperty
Syntax (vb)
Public Class CfnDistributionTenant.CertificateProperty Implements CfnDistributionTenant.ICertificateProperty
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.CloudFront;
var certificateProperty = new CertificateProperty {
Arn = "arn"
};
Synopsis
Constructors
CertificateProperty() | The AWS Certificate Manager (ACM) certificate associated with your distribution. |
Properties
Arn | The Amazon Resource Name (ARN) of the ACM certificate. |
Constructors
CertificateProperty()
The AWS Certificate Manager (ACM) certificate associated with your distribution.
public CertificateProperty()
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.CloudFront;
var certificateProperty = new CertificateProperty {
Arn = "arn"
};
Properties
Arn
The Amazon Resource Name (ARN) of the ACM certificate.
public string? Arn { get; set; }