CfnDomainMixinProps

class aws_cdk.mixins_preview.aws_lightsail.mixins.CfnDomainMixinProps(*, domain_entries=None, domain_name=None, tags=None)

Bases: object

Properties for CfnDomainPropsMixin.

Parameters:
  • domain_entries (Union[IResolvable, Sequence[Union[IResolvable, DomainEntryProperty, Dict[str, Any]]], None]) – An array of key-value pairs containing information about the domain entries.

  • domain_name (Optional[str]) – The fully qualified domain name in the certificate request.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – The tag keys and optional values for the resource. 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

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.mixins_preview.aws_lightsail import mixins as lightsail_mixins

cfn_domain_mixin_props = lightsail_mixins.CfnDomainMixinProps(
    domain_entries=[lightsail_mixins.CfnDomainPropsMixin.DomainEntryProperty(
        id="id",
        is_alias=False,
        name="name",
        target="target",
        type="type"
    )],
    domain_name="domainName",
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

domain_entries

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

See:

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

domain_name

The fully qualified domain name in the certificate request.

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.

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