class SvcbRecordValue
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Route53.SvcbRecordValue |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsroute53#SvcbRecordValue |
![]() | software.amazon.awscdk.services.route53.SvcbRecordValue |
![]() | aws_cdk.aws_route53.SvcbRecordValue |
![]() | aws-cdk-lib » aws_route53 » SvcbRecordValue |
Represents an SVCB record value.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_route53 as route53 } from 'aws-cdk-lib';
const svcbRecordValue = route53.SvcbRecordValue.alias('targetName');
Methods
Name | Description |
---|---|
to | Returns the string representation of SVCB and HTTPS record value. |
static alias(targetName) | An SVCB AliasMode record value. |
static service(props?) | An SVCB ServiceMode record value. |
toString()
public toString(): string
Returns
string
Returns the string representation of SVCB and HTTPS record value.
static alias(targetName)
public static alias(targetName: string): SvcbRecordValue
Parameters
- targetName
string
— The domain name of the alternative endpoint.
Returns
An SVCB AliasMode record value.
static service(props?)
public static service(props?: SvcbRecordServiceModeProps): SvcbRecordValue
Parameters
Returns
An SVCB ServiceMode record value.