Show / Hide Table of Contents

Class CfnDomainNameProps

Properties for defining a CfnDomainName.

Inheritance
System.Object
CfnDomainNameProps
Implements
ICfnDomainNameProps
Namespace: Amazon.CDK.AWS.AppSync
Assembly: Amazon.CDK.AWS.AppSync.dll
Syntax (csharp)
public class CfnDomainNameProps : Object, ICfnDomainNameProps
Syntax (vb)
Public Class CfnDomainNameProps
    Inherits Object
    Implements ICfnDomainNameProps
Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-domainname.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 cfnDomainNameProps = new CfnDomainNameProps {
    CertificateArn = "certificateArn",
    DomainName = "domainName",

    // the properties below are optional
    Description = "description"
};

Synopsis

Constructors

CfnDomainNameProps()

Properties

CertificateArn

The Amazon Resource Name (ARN) of the certificate.

Description

The decription for your domain name.

DomainName

The domain name.

Constructors

CfnDomainNameProps()

public CfnDomainNameProps()

Properties

CertificateArn

The Amazon Resource Name (ARN) of the certificate.

public string CertificateArn { get; set; }
Property Value

System.String

Remarks

This will be an AWS Certificate Manager certificate.

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-domainname.html#cfn-appsync-domainname-certificatearn

Description

The decription for your domain name.

public string Description { get; set; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-domainname.html#cfn-appsync-domainname-description

DomainName

The domain name.

public string DomainName { get; set; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-domainname.html#cfn-appsync-domainname-domainname

Implements

ICfnDomainNameProps
Back to top Generated by DocFX