@Generated(value="jsii-pacmak/1.74.0 (build 6d08790)", date="2023-05-19T23:09:29.712Z") @Stability(value=Stable) public class RecordSet extends Resource implements IRecordSet
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.route53.*; import software.amazon.awscdk.core.*; HostedZone hostedZone; RecordTarget recordTarget; RecordSet recordSet = RecordSet.Builder.create(this, "MyRecordSet") .recordType(RecordType.A) .target(recordTarget) .zone(hostedZone) // the properties below are optional .comment("comment") .recordName("recordName") .ttl(Duration.minutes(30)) .build();
Modifier and Type | Class and Description |
---|---|
static class |
RecordSet.Builder
A fluent builder for
RecordSet . |
software.amazon.jsii.JsiiObject.InitializationMode
IRecordSet.Jsii$Default, IRecordSet.Jsii$Proxy
Modifier | Constructor and Description |
---|---|
|
RecordSet(software.constructs.Construct scope,
String id,
RecordSetProps props) |
protected |
RecordSet(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) |
protected |
RecordSet(software.amazon.jsii.JsiiObjectRef objRef) |
Modifier and Type | Method and Description |
---|---|
String |
getDomainName()
The domain name of the record.
|
applyRemovalPolicy, generatePhysicalName, getEnv, getPhysicalName, getResourceArnAttribute, getResourceNameAttribute, getStack, isResource
getNode, isConstruct, onPrepare, onSynthesize, onValidate, prepare, synthesize, validate
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
applyRemovalPolicy, getEnv, getStack
getNode
protected RecordSet(software.amazon.jsii.JsiiObjectRef objRef)
protected RecordSet(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
@Stability(value=Stable) public RecordSet(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull RecordSetProps props)
scope
- This parameter is required.id
- This parameter is required.props
- This parameter is required.@Stability(value=Stable) @NotNull public String getDomainName()
getDomainName
in interface IRecordSet
Copyright © 2023. All rights reserved.