Class DsRecord
A DNS DS record.
Inherited Members
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
Remarks
Resource: AWS::Route53::RecordSet
ExampleMetadata: infused
Implements
Constructs.IConstruct
Constructs.IDependable