Interface ISvcbRecordProps
Construction properties for an SvcbRecord.
Inherited Members
Namespace: Amazon.CDK.AWS.Route53
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ISvcbRecordProps : IRecordSetOptions
Syntax (vb)
Public Interface ISvcbRecordProps Inherits IRecordSetOptions
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK;
using Amazon.CDK.AWS.Route53;
CidrRoutingConfig cidrRoutingConfig;
GeoLocation geoLocation;
HealthCheck healthCheck;
HostedZone hostedZone;
SvcbRecordValue svcbRecordValue;
var svcbRecordProps = new SvcbRecordProps {
Values = new [] { svcbRecordValue },
Zone = hostedZone,
// the properties below are optional
CidrRoutingConfig = cidrRoutingConfig,
Comment = "comment",
DeleteExisting = false,
GeoLocation = geoLocation,
HealthCheck = healthCheck,
MultiValueAnswer = false,
RecordName = "recordName",
Region = "region",
SetIdentifier = "setIdentifier",
Ttl = Duration.Minutes(30),
Weight = 123
};
Synopsis
Properties
| Values | The values. |
Properties
Values
The values.
SvcbRecordValue[] Values { get; }
Property Value
Remarks
ExampleMetadata: fixture=_generated