Show / Hide Table of Contents

Interface IAaaaRecordProps

Construction properties for a AaaaRecord.

Inherited Members
IRecordSetOptions.Zone
IRecordSetOptions.CidrRoutingConfig
IRecordSetOptions.Comment
IRecordSetOptions.DeleteExisting
IRecordSetOptions.GeoLocation
IRecordSetOptions.HealthCheck
IRecordSetOptions.MultiValueAnswer
IRecordSetOptions.RecordName
IRecordSetOptions.Region
IRecordSetOptions.SetIdentifier
IRecordSetOptions.Ttl
IRecordSetOptions.Weight
Namespace: Amazon.CDK.AWS.Route53
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IAaaaRecordProps : IRecordSetOptions
Syntax (vb)
Public Interface IAaaaRecordProps Inherits IRecordSetOptions
Remarks

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

Properties

Target

The target.

Properties

Target

The target.

RecordTarget Target { get; }
Property Value

RecordTarget

Remarks

ExampleMetadata: infused

Back to top Generated by DocFX