Show / Hide Table of Contents

Class CfnDomainNameMixinProps

Properties for CfnDomainNamePropsMixin.

Inheritance
object
CfnDomainNameMixinProps
Implements
ICfnDomainNameMixinProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.AppSync
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnDomainNameMixinProps : ICfnDomainNameMixinProps
Syntax (vb)
Public Class CfnDomainNameMixinProps Implements ICfnDomainNameMixinProps
Remarks

See: 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.CfnPropertyMixins.AWS.AppSync;

             var cfnDomainNameMixinProps = new CfnDomainNameMixinProps {
                 CertificateArn = "certificateArn",
                 Description = "description",
                 DomainName = "domainName",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Synopsis

Constructors

CfnDomainNameMixinProps()

Properties for CfnDomainNamePropsMixin.

Properties

CertificateArn

The Amazon Resource Name (ARN) of the certificate.

Description

The decription for your domain name.

DomainName

The domain name.

Tags

A set of tags (key-value pairs) for this domain name.

Constructors

CfnDomainNameMixinProps()

Properties for CfnDomainNamePropsMixin.

public CfnDomainNameMixinProps()
Remarks

See: 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.CfnPropertyMixins.AWS.AppSync;

             var cfnDomainNameMixinProps = new CfnDomainNameMixinProps {
                 CertificateArn = "certificateArn",
                 Description = "description",
                 DomainName = "domainName",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Properties

CertificateArn

The Amazon Resource Name (ARN) of the certificate.

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

string

Remarks

This will be an Certificate Manager certificate.

See: 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

string

Remarks

See: 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

string

Remarks

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

Tags

A set of tags (key-value pairs) for this domain name.

public ICfnTag[]? Tags { get; set; }
Property Value

ICfnTag[]

Remarks

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

Implements

ICfnDomainNameMixinProps
Back to top Generated by DocFX