Class AaaaRecord
A DNS AAAA record.
Inherited Members
Namespace: Amazon.CDK.AWS.Route53
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class AaaaRecord : RecordSet, IRecordSet, IResource, IConstruct, IDependable
Syntax (vb)
Public Class AaaaRecord Inherits RecordSet Implements IRecordSet, IResource, IConstruct, IDependable
Remarks
Resource: AWS::Route53::RecordSet
ExampleMetadata: infused
Examples
using Amazon.CDK.AWS.CloudFront;
HostedZone myZone;
CloudFrontWebDistribution distribution;
new AaaaRecord(this, "Alias", new AaaaRecordProps {
Zone = myZone,
Target = RecordTarget.FromAlias(new CloudFrontTarget(distribution))
});
Synopsis
Constructors
AaaaRecord(Construct, string, IAaaaRecordProps) | A DNS AAAA record. |
Properties
PROPERTY_INJECTION_ID | Uniquely identifies this class. |
Constructors
AaaaRecord(Construct, string, IAaaaRecordProps)
A DNS AAAA record.
public AaaaRecord(Construct scope, string id, IAaaaRecordProps props)
Parameters
- scope Construct
- id string
- props IAaaaRecordProps
Remarks
Resource: AWS::Route53::RecordSet
ExampleMetadata: infused
Examples
using Amazon.CDK.AWS.CloudFront;
HostedZone myZone;
CloudFrontWebDistribution distribution;
new AaaaRecord(this, "Alias", new AaaaRecordProps {
Zone = myZone,
Target = RecordTarget.FromAlias(new CloudFrontTarget(distribution))
});
Properties
PROPERTY_INJECTION_ID
Uniquely identifies this class.
public static string PROPERTY_INJECTION_ID { get; }
Property Value
Remarks
Resource: AWS::Route53::RecordSet
ExampleMetadata: infused
Implements
Constructs.IConstruct
Constructs.IDependable