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