@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-07T23:47:12.915Z") @Stability(value=Experimental) public interface SrvRecordProps extends software.amazon.jsii.JsiiSerializable, RecordSetOptions
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.core.*;
import software.amazon.awscdk.services.route53.*;
Duration duration;
HostedZone hostedZone;
SrvRecordProps srvRecordProps = SrvRecordProps.builder()
.values(List.of(SrvRecordValue.builder()
.hostName("hostName")
.port(123)
.priority(123)
.weight(123)
.build()))
.zone(hostedZone)
// the properties below are optional
.comment("comment")
.recordName("recordName")
.ttl(duration)
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
SrvRecordProps.Builder
A builder for
SrvRecordProps |
static class |
SrvRecordProps.Jsii$Proxy
An implementation for
SrvRecordProps |
| Modifier and Type | Method and Description |
|---|---|
static SrvRecordProps.Builder |
builder() |
List<SrvRecordValue> |
getValues()
(experimental) The values.
|
getComment, getRecordName, getTtl, getZone@Stability(value=Experimental) @NotNull List<SrvRecordValue> getValues()
@Stability(value=Experimental) static SrvRecordProps.Builder builder()
builder in interface RecordSetOptionsSrvRecordProps.Builder of SrvRecordPropsCopyright © 2022. All rights reserved.