Show / Hide Table of Contents

Class DsRecord

A DNS DS record.

Inheritance
object
Resource
RecordSet
DsRecord
Implements
IRecordSet
IResource
IConstruct
IDependable
IEnvironmentAware
Inherited Members
RecordSet.DomainName
Resource.IsOwnedResource(IConstruct)
Resource.IsResource(IConstruct)
Resource.ApplyRemovalPolicy(RemovalPolicy)
Resource.GeneratePhysicalName()
Resource.GetResourceArnAttribute(string, IArnComponents)
Resource.GetResourceNameAttribute(string)
Resource.Env
Resource.PhysicalName
Resource.Stack
Namespace: Amazon.CDK.AWS.Route53
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class DsRecord : RecordSet, IRecordSet, IResource, IConstruct, IDependable, IEnvironmentAware
Syntax (vb)
Public Class DsRecord Inherits RecordSet Implements IRecordSet, IResource, IConstruct, IDependable, IEnvironmentAware
Remarks

Resource: AWS::Route53::RecordSet

ExampleMetadata: infused

Examples
HostedZone myZone;


             new DsRecord(this, "DSRecord", new DsRecordProps {
                 Zone = myZone,
                 RecordName = "foo",
                 Values = new [] { "12345 3 1 123456789abcdef67890123456789abcdef67890" },
                 Ttl = Duration.Minutes(90)
             });

Synopsis

Constructors

DsRecord(Construct, string, IDsRecordProps)

A DNS DS record.

Properties

PROPERTY_INJECTION_ID

Uniquely identifies this class.

Constructors

DsRecord(Construct, string, IDsRecordProps)

A DNS DS record.

public DsRecord(Construct scope, string id, IDsRecordProps props)
Parameters
scope Construct
id string
props IDsRecordProps
Remarks

Resource: AWS::Route53::RecordSet

ExampleMetadata: infused

Examples
HostedZone myZone;


             new DsRecord(this, "DSRecord", new DsRecordProps {
                 Zone = myZone,
                 RecordName = "foo",
                 Values = new [] { "12345 3 1 123456789abcdef67890123456789abcdef67890" },
                 Ttl = Duration.Minutes(90)
             });

Properties

PROPERTY_INJECTION_ID

Uniquely identifies this class.

public static string PROPERTY_INJECTION_ID { get; }
Property Value

string

Remarks

Resource: AWS::Route53::RecordSet

ExampleMetadata: infused

Implements

IRecordSet
IResource
Constructs.IConstruct
Constructs.IDependable
IEnvironmentAware
Back to top Generated by DocFX