Interface DomainInfo.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DomainInfo.Builder,DomainInfo>,SdkBuilder<DomainInfo.Builder,DomainInfo>,SdkPojo
- Enclosing class:
- DomainInfo
public static interface DomainInfo.Builder extends SdkPojo, CopyableBuilder<DomainInfo.Builder,DomainInfo>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DomainInfo.Builderarn(String arn)The ARN of the domain.DomainInfo.Builderdescription(String description)The description of the domain provided through RegisterDomain.DomainInfo.Buildername(String name)The name of the domain.DomainInfo.Builderstatus(String status)The status of the domain:DomainInfo.Builderstatus(RegistrationStatus status)The status of the domain:-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
name
DomainInfo.Builder name(String name)
The name of the domain. This name is unique within the account.
- Parameters:
name- The name of the domain. This name is unique within the account.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
DomainInfo.Builder status(String 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.
- Parameters:
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.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
RegistrationStatus,RegistrationStatus
-
-
status
DomainInfo.Builder status(RegistrationStatus 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.
- Parameters:
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.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
RegistrationStatus,RegistrationStatus
-
-
description
DomainInfo.Builder description(String description)
The description of the domain provided through RegisterDomain.
- Parameters:
description- The description of the domain provided through RegisterDomain.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
arn
DomainInfo.Builder arn(String arn)
The ARN of the domain.
- Parameters:
arn- The ARN of the domain.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-