Show / Hide Table of Contents

Class CfnApi.DnsMapProperty

A map of DNS names for the Api.

Inheritance
object
CfnApi.DnsMapProperty
Implements
CfnApi.IDnsMapProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-api-dnsmap.html#cfn-appsync-api-dnsmap-http

Realtime

The domain name of the Api's real-time endpoint.

public string? Realtime { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-api-dnsmap.html#cfn-appsync-api-dnsmap-realtime

Implements

CfnApi.IDnsMapProperty
Back to top Generated by DocFX