Interface DomainSummary.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DomainSummary.Builder,DomainSummary>,SdkBuilder<DomainSummary.Builder,DomainSummary>,SdkPojo
- Enclosing class:
- DomainSummary
public static interface DomainSummary.Builder extends SdkPojo, CopyableBuilder<DomainSummary.Builder,DomainSummary>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DomainSummary.Builderarn(String arn)The ARN of the domain.DomainSummary.BuildercreatedTime(Instant createdTime)A timestamp that contains the date and time the domain was created.DomainSummary.BuilderencryptionKey(String encryptionKey)The key used to encrypt the domain.DomainSummary.Buildername(String name)The name of the domain.DomainSummary.Builderowner(String owner)The 12-digit account number of the Amazon Web Services account that owns the domain.DomainSummary.Builderstatus(String status)A string that contains the status of the domain.DomainSummary.Builderstatus(DomainStatus status)A string that contains 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, sdkFields
-
-
-
-
Method Detail
-
name
DomainSummary.Builder name(String name)
The name of the domain.
- Parameters:
name- The name of the domain.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
owner
DomainSummary.Builder owner(String owner)
The 12-digit account number of the Amazon Web Services account that owns the domain. It does not include dashes or spaces.
- Parameters:
owner- The 12-digit account number of the Amazon Web Services account that owns the domain. It does not include dashes or spaces.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
arn
DomainSummary.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.
-
status
DomainSummary.Builder status(String status)
A string that contains the status of the domain.
- Parameters:
status- A string that contains the status of the domain.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DomainStatus,DomainStatus
-
status
DomainSummary.Builder status(DomainStatus status)
A string that contains the status of the domain.
- Parameters:
status- A string that contains the status of the domain.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DomainStatus,DomainStatus
-
createdTime
DomainSummary.Builder createdTime(Instant createdTime)
A timestamp that contains the date and time the domain was created.
- Parameters:
createdTime- A timestamp that contains the date and time the domain was created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
encryptionKey
DomainSummary.Builder encryptionKey(String encryptionKey)
The key used to encrypt the domain.
- Parameters:
encryptionKey- The key used to encrypt the domain.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-