Class CfnHostedZone.HostedZoneConfigProperty
A complex type that contains an optional comment about your hosted zone.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.Route53
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnHostedZone.HostedZoneConfigProperty : CfnHostedZone.IHostedZoneConfigProperty
Syntax (vb)
Public Class CfnHostedZone.HostedZoneConfigProperty Implements CfnHostedZone.IHostedZoneConfigProperty
Remarks
If you don't want to specify a comment, omit both the HostedZoneConfig and Comment elements.
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.Route53;
var hostedZoneConfigProperty = new HostedZoneConfigProperty {
Comment = "comment"
};
Synopsis
Constructors
| HostedZoneConfigProperty() | A complex type that contains an optional comment about your hosted zone. |
Properties
| Comment | Any comments that you want to include about the hosted zone. |
Constructors
HostedZoneConfigProperty()
A complex type that contains an optional comment about your hosted zone.
public HostedZoneConfigProperty()
Remarks
If you don't want to specify a comment, omit both the HostedZoneConfig and Comment elements.
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.Route53;
var hostedZoneConfigProperty = new HostedZoneConfigProperty {
Comment = "comment"
};
Properties
Comment
Any comments that you want to include about the hosted zone.
public string? Comment { get; set; }