Class CfnApi.DnsMapProperty
A map of DNS names for the Api.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.AppSync
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnApi.DnsMapProperty : CfnApi.IDnsMapProperty
Syntax (vb)
Public Class CfnApi.DnsMapProperty Implements CfnApi.IDnsMapProperty
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-api-dnsmap.html
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.AWS.AppSync;
var dnsMapProperty = new DnsMapProperty {
Http = "http",
Realtime = "realtime"
};
Synopsis
Constructors
DnsMapProperty() | A map of DNS names for the Api. |
Properties
Http | The domain name of the Api's HTTP endpoint. |
Realtime | The domain name of the Api's real-time endpoint. |
Constructors
DnsMapProperty()
A map of DNS names for the Api.
public DnsMapProperty()
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-api-dnsmap.html
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.AWS.AppSync;
var dnsMapProperty = new DnsMapProperty {
Http = "http",
Realtime = "realtime"
};
Properties
Http
The domain name of the Api's HTTP endpoint.
public string? Http { get; set; }
Property Value
Remarks
Realtime
The domain name of the Api's real-time endpoint.
public string? Realtime { get; set; }