Struct aws_sdk_swf::model::DomainInfo
source · [−]#[non_exhaustive]pub struct DomainInfo {
pub name: Option<String>,
pub status: Option<RegistrationStatus>,
pub description: Option<String>,
pub arn: Option<String>,
}
Expand description
Contains general information about a domain.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.name: Option<String>
The name of the domain. This name is unique within the account.
status: Option<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 usingDeprecateDomain
, but is still in use. You should not create new workflow executions in this domain.
description: Option<String>
The description of the domain provided through RegisterDomain
.
arn: Option<String>
The ARN of the domain.
Implementations
The name of the domain. This name is unique within the account.
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 usingDeprecateDomain
, but is still in use. You should not create new workflow executions in this domain.
The description of the domain provided through RegisterDomain
.
Creates a new builder-style object to manufacture DomainInfo
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for DomainInfo
impl Send for DomainInfo
impl Sync for DomainInfo
impl Unpin for DomainInfo
impl UnwindSafe for DomainInfo
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more