interface DnsMapProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.AppSync.CfnApi.DnsMapProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsappsync#CfnApi_DnsMapProperty |
Java | software.amazon.awscdk.services.appsync.CfnApi.DnsMapProperty |
Python | aws_cdk.aws_appsync.CfnApi.DnsMapProperty |
TypeScript | aws-cdk-lib » aws_appsync » CfnApi » DnsMapProperty |
A map of DNS names for the Api.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-api-dnsmap.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_appsync as appsync } from 'aws-cdk-lib';
const dnsMapProperty: appsync.CfnApi.DnsMapProperty = {
http: 'http',
realtime: 'realtime',
};
Properties
| Name | Type | Description |
|---|---|---|
| http? | string | The domain name of the Api's HTTP endpoint. |
| realtime? | string | The domain name of the Api's real-time endpoint. |
http?
Type:
string
(optional)
The domain name of the Api's HTTP endpoint.
realtime?
Type:
string
(optional)
The domain name of the Api's real-time endpoint.

.NET
Go
Java
Python
TypeScript