Interface AccountEnrollmentStatus.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<AccountEnrollmentStatus.Builder,AccountEnrollmentStatus>,SdkBuilder<AccountEnrollmentStatus.Builder,AccountEnrollmentStatus>,SdkPojo
- Enclosing class:
- AccountEnrollmentStatus
public static interface AccountEnrollmentStatus.Builder extends SdkPojo, CopyableBuilder<AccountEnrollmentStatus.Builder,AccountEnrollmentStatus>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AccountEnrollmentStatus.BuilderaccountId(String accountId)The Amazon Web Services account ID.AccountEnrollmentStatus.BuildercreatedTimestamp(Instant createdTimestamp)The time when the account enrollment status was created.AccountEnrollmentStatus.BuilderlastUpdatedTimestamp(Instant lastUpdatedTimestamp)The time when the account enrollment status was last updated.AccountEnrollmentStatus.Builderstatus(String status)The account enrollment status.AccountEnrollmentStatus.Builderstatus(EnrollmentStatus status)The account enrollment status.-
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
-
accountId
AccountEnrollmentStatus.Builder accountId(String accountId)
The Amazon Web Services account ID.
- Parameters:
accountId- The Amazon Web Services account ID.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
AccountEnrollmentStatus.Builder status(String status)
The account enrollment status.
- Parameters:
status- The account enrollment status.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
EnrollmentStatus,EnrollmentStatus
-
status
AccountEnrollmentStatus.Builder status(EnrollmentStatus status)
The account enrollment status.
- Parameters:
status- The account enrollment status.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
EnrollmentStatus,EnrollmentStatus
-
lastUpdatedTimestamp
AccountEnrollmentStatus.Builder lastUpdatedTimestamp(Instant lastUpdatedTimestamp)
The time when the account enrollment status was last updated.
- Parameters:
lastUpdatedTimestamp- The time when the account enrollment status was last updated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
createdTimestamp
AccountEnrollmentStatus.Builder createdTimestamp(Instant createdTimestamp)
The time when the account enrollment status was created.
- Parameters:
createdTimestamp- The time when the account enrollment status was created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-