Show / Hide Table of Contents

Class CfnDomainMixinProps

Properties for CfnDomainPropsMixin.

Inheritance
object
CfnDomainMixinProps
Implements
ICfnDomainMixinProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Mixins.Preview.AWS.Lightsail.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnDomainMixinProps : ICfnDomainMixinProps
Syntax (vb)
Public Class CfnDomainMixinProps Implements ICfnDomainMixinProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lightsail-domain.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.Mixins.Preview.AWS.Lightsail.Mixins;

             var cfnDomainMixinProps = new CfnDomainMixinProps {
                 DomainEntries = new [] { new DomainEntryProperty {
                     Id = "id",
                     IsAlias = false,
                     Name = "name",
                     Target = "target",
                     Type = "type"
                 } },
                 DomainName = "domainName",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Synopsis

Constructors

CfnDomainMixinProps()

Properties for CfnDomainPropsMixin.

Properties

DomainEntries

An array of key-value pairs containing information about the domain entries.

DomainName

The fully qualified domain name in the certificate request.

Tags

The tag keys and optional values for the resource.

Constructors

CfnDomainMixinProps()

Properties for CfnDomainPropsMixin.

public CfnDomainMixinProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lightsail-domain.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.Mixins.Preview.AWS.Lightsail.Mixins;

             var cfnDomainMixinProps = new CfnDomainMixinProps {
                 DomainEntries = new [] { new DomainEntryProperty {
                     Id = "id",
                     IsAlias = false,
                     Name = "name",
                     Target = "target",
                     Type = "type"
                 } },
                 DomainName = "domainName",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Properties

DomainEntries

An array of key-value pairs containing information about the domain entries.

public object? DomainEntries { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lightsail-domain.html#cfn-lightsail-domain-domainentries

Type union: either IResolvable or (either IResolvable or CfnDomainPropsMixin.IDomainEntryProperty)[]

DomainName

The fully qualified domain name in the certificate request.

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

string

Remarks

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

Tags

The tag keys and optional values for the resource.

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

ICfnTag[]

Remarks

For more information about tags in Lightsail, see the Amazon Lightsail Developer Guide .

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

Implements

ICfnDomainMixinProps
Back to top Generated by DocFX