| Copyright | (c) 2013-2023 Brendan Hay |
|---|---|
| License | Mozilla Public License, v. 2.0. |
| Maintainer | Brendan Hay |
| Stability | auto-generated |
| Portability | non-portable (GHC extensions) |
| Safe Haskell | Safe-Inferred |
| Language | Haskell2010 |
Amazonka.SWF.Types.DomainInfo
Description
Synopsis
- data DomainInfo = DomainInfo' {
- arn :: Maybe Text
- description :: Maybe Text
- name :: Text
- status :: RegistrationStatus
- newDomainInfo :: Text -> RegistrationStatus -> DomainInfo
- domainInfo_arn :: Lens' DomainInfo (Maybe Text)
- domainInfo_description :: Lens' DomainInfo (Maybe Text)
- domainInfo_name :: Lens' DomainInfo Text
- domainInfo_status :: Lens' DomainInfo RegistrationStatus
Documentation
data DomainInfo Source #
Contains general information about a domain.
See: newDomainInfo smart constructor.
Constructors
| DomainInfo' | |
Fields
| |
Instances
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.