libZSservicesZSamazonka-swfZSamazonka-swf
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.SWF.Types.DomainInfo

Description

 
Synopsis

Documentation

data DomainInfo Source #

Contains general information about a domain.

See: newDomainInfo smart constructor.

Constructors

DomainInfo' 

Fields

  • arn :: Maybe Text

    The ARN of the domain.

  • description :: Maybe Text

    The description of the domain provided through RegisterDomain.

  • name :: Text

    The name of the domain. This name is unique within the account.

  • status :: RegistrationStatus

    The status of the domain:

    • REGISTERED – The domain is properly registered and available. You can use this domain for registering types and creating new workflow executions.
    • DEPRECATED – The domain was deprecated using DeprecateDomain, but is still in use. You should not create new workflow executions in this domain.

Instances

Instances details
Eq DomainInfo Source # 
Instance details

Defined in Amazonka.SWF.Types.DomainInfo

Read DomainInfo Source # 
Instance details

Defined in Amazonka.SWF.Types.DomainInfo

Show DomainInfo Source # 
Instance details

Defined in Amazonka.SWF.Types.DomainInfo

Generic DomainInfo Source # 
Instance details

Defined in Amazonka.SWF.Types.DomainInfo

Associated Types

type Rep DomainInfo :: Type -> Type #

NFData DomainInfo Source # 
Instance details

Defined in Amazonka.SWF.Types.DomainInfo

Methods

rnf :: DomainInfo -> () #

Hashable DomainInfo Source # 
Instance details

Defined in Amazonka.SWF.Types.DomainInfo

FromJSON DomainInfo Source # 
Instance details

Defined in Amazonka.SWF.Types.DomainInfo

type Rep DomainInfo Source # 
Instance details

Defined in Amazonka.SWF.Types.DomainInfo

type Rep DomainInfo = D1 ('MetaData "DomainInfo" "Amazonka.SWF.Types.DomainInfo" "libZSservicesZSamazonka-swfZSamazonka-swf" 'False) (C1 ('MetaCons "DomainInfo'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "arn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "description") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "status") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 RegistrationStatus))))

newDomainInfo Source #

Create a value of DomainInfo 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:arn:DomainInfo', domainInfo_arn - The ARN of the domain.

$sel:description:DomainInfo', domainInfo_description - The description of the domain provided through RegisterDomain.

$sel:name:DomainInfo', domainInfo_name - The name of the domain. This name is unique within the account.

$sel:status:DomainInfo', domainInfo_status - The status of the domain:

  • REGISTERED – The domain is properly registered and available. You can use this domain for registering types and creating new workflow executions.
  • DEPRECATED – The domain was deprecated using DeprecateDomain, but is still in use. You should not create new workflow executions in this domain.

domainInfo_arn :: Lens' DomainInfo (Maybe Text) Source #

The ARN of the domain.

domainInfo_description :: Lens' DomainInfo (Maybe Text) Source #

The description of the domain provided through RegisterDomain.

domainInfo_name :: Lens' DomainInfo Text Source #

The name of the domain. This name is unique within the account.

domainInfo_status :: Lens' DomainInfo RegistrationStatus Source #

The status of the domain:

  • REGISTERED – The domain is properly registered and available. You can use this domain for registering types and creating new workflow executions.
  • DEPRECATED – The domain was deprecated using DeprecateDomain, but is still in use. You should not create new workflow executions in this domain.