libZSservicesZSamazonka-apprunnerZSamazonka-apprunner
Copyright(c) 2013-2021 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone

Amazonka.AppRunner.Types.CustomDomain

Description

 
Synopsis

Documentation

data CustomDomain Source #

Describes a custom domain that's associated with an App Runner service.

See: newCustomDomain smart constructor.

Constructors

CustomDomain' 

Fields

Instances

Instances details
Eq CustomDomain Source # 
Instance details

Defined in Amazonka.AppRunner.Types.CustomDomain

Read CustomDomain Source # 
Instance details

Defined in Amazonka.AppRunner.Types.CustomDomain

Show CustomDomain Source # 
Instance details

Defined in Amazonka.AppRunner.Types.CustomDomain

Generic CustomDomain Source # 
Instance details

Defined in Amazonka.AppRunner.Types.CustomDomain

Associated Types

type Rep CustomDomain :: Type -> Type #

NFData CustomDomain Source # 
Instance details

Defined in Amazonka.AppRunner.Types.CustomDomain

Methods

rnf :: CustomDomain -> () #

Hashable CustomDomain Source # 
Instance details

Defined in Amazonka.AppRunner.Types.CustomDomain

FromJSON CustomDomain Source # 
Instance details

Defined in Amazonka.AppRunner.Types.CustomDomain

type Rep CustomDomain Source # 
Instance details

Defined in Amazonka.AppRunner.Types.CustomDomain

type Rep CustomDomain = D1 ('MetaData "CustomDomain" "Amazonka.AppRunner.Types.CustomDomain" "libZSservicesZSamazonka-apprunnerZSamazonka-apprunner" 'False) (C1 ('MetaCons "CustomDomain'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "certificateValidationRecords") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [CertificateValidationRecord])) :*: S1 ('MetaSel ('Just "domainName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)) :*: (S1 ('MetaSel ('Just "enableWWWSubdomain") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Bool) :*: S1 ('MetaSel ('Just "status") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 CustomDomainAssociationStatus))))

newCustomDomain Source #

Create a value of CustomDomain with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:certificateValidationRecords:CustomDomain', customDomain_certificateValidationRecords - A list of certificate CNAME records that's used for this domain name.

$sel:domainName:CustomDomain', customDomain_domainName - An associated custom domain endpoint. It can be a root domain (for example, example.com), a subdomain (for example, login.example.com or admin.login.example.com), or a wildcard (for example, *.example.com).

$sel:enableWWWSubdomain:CustomDomain', customDomain_enableWWWSubdomain - When true, the subdomain www.DomainName is associated with the App Runner service in addition to the base domain.

$sel:status:CustomDomain', customDomain_status - The current state of the domain name association.

customDomain_certificateValidationRecords :: Lens' CustomDomain (Maybe [CertificateValidationRecord]) Source #

A list of certificate CNAME records that's used for this domain name.

customDomain_domainName :: Lens' CustomDomain Text Source #

An associated custom domain endpoint. It can be a root domain (for example, example.com), a subdomain (for example, login.example.com or admin.login.example.com), or a wildcard (for example, *.example.com).

customDomain_enableWWWSubdomain :: Lens' CustomDomain Bool Source #

When true, the subdomain www.DomainName is associated with the App Runner service in addition to the base domain.

customDomain_status :: Lens' CustomDomain CustomDomainAssociationStatus Source #

The current state of the domain name association.