interface DnsMapProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppSync.Mixins.CfnApiPropsMixin.DnsMapProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsappsync/mixins#CfnApiPropsMixin_DnsMapProperty |
Java | software.amazon.awscdk.mixins.preview.services.appsync.mixins.CfnApiPropsMixin.DnsMapProperty |
Python | aws_cdk.mixins_preview.aws_appsync.mixins.CfnApiPropsMixin.DnsMapProperty |
TypeScript | @aws-cdk/mixins-preview » aws_appsync » mixins » CfnApiPropsMixin » 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 { mixins as appsync_mixins } from '@aws-cdk/mixins-preview/aws-appsync';
const dnsMapProperty: appsync_mixins.CfnApiPropsMixin.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