Interface Application.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Application.Builder,Application>,SdkBuilder<Application.Builder,Application>,SdkPojo
- Enclosing class:
- Application
public static interface Application.Builder extends SdkPojo, CopyableBuilder<Application.Builder,Application>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Application.BuilderapplicationId(String applicationId)The identifier for the Amazon Q application.Application.BuildercreatedAt(Instant createdAt)The Unix timestamp when the Amazon Q application was created.Application.BuilderdisplayName(String displayName)The name of the Amazon Q application.Application.Builderstatus(String status)The status of the Amazon Q application.Application.Builderstatus(ApplicationStatus status)The status of the Amazon Q application.Application.BuilderupdatedAt(Instant updatedAt)The Unix timestamp when the Amazon Q application was last updated.-
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
-
applicationId
Application.Builder applicationId(String applicationId)
The identifier for the Amazon Q application.
- Parameters:
applicationId- The identifier for the Amazon Q application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
createdAt
Application.Builder createdAt(Instant createdAt)
The Unix timestamp when the Amazon Q application was created.
- Parameters:
createdAt- The Unix timestamp when the Amazon Q application was created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
displayName
Application.Builder displayName(String displayName)
The name of the Amazon Q application.
- Parameters:
displayName- The name of the Amazon Q application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
Application.Builder status(String status)
The status of the Amazon Q application. The application is ready to use when the status is
ACTIVE.- Parameters:
status- The status of the Amazon Q application. The application is ready to use when the status isACTIVE.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ApplicationStatus,ApplicationStatus
-
status
Application.Builder status(ApplicationStatus status)
The status of the Amazon Q application. The application is ready to use when the status is
ACTIVE.- Parameters:
status- The status of the Amazon Q application. The application is ready to use when the status isACTIVE.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ApplicationStatus,ApplicationStatus
-
updatedAt
Application.Builder updatedAt(Instant updatedAt)
The Unix timestamp when the Amazon Q application was last updated.
- Parameters:
updatedAt- The Unix timestamp when the Amazon Q application was last updated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-