Interface ApplicationSummary.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ApplicationSummary.Builder,ApplicationSummary>,SdkBuilder<ApplicationSummary.Builder,ApplicationSummary>,SdkPojo
- Enclosing class:
- ApplicationSummary
public static interface ApplicationSummary.Builder extends SdkPojo, CopyableBuilder<ApplicationSummary.Builder,ApplicationSummary>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ApplicationSummary.BuilderapplicationCreationDate(Long applicationCreationDate)The date (in Unix epoch time) when the web application was created.ApplicationSummary.BuilderapplicationDescription(String applicationDescription)An optional description of the web application.ApplicationSummary.BuilderapplicationId(String applicationId)The unique Id of the web application.ApplicationSummary.BuilderapplicationLastUpdateDate(Long applicationLastUpdateDate)The date (in Unix epoch time) when the web application was last updated.ApplicationSummary.BuilderapplicationName(String applicationName)The name of the web application.ApplicationSummary.BuilderapplicationState(String applicationState)The current state of the web application.ApplicationSummary.BuilderapplicationState(ApplicationState applicationState)The current state of the web application.ApplicationSummary.BuilderapplicationUrl(String applicationUrl)The URL of the web application.-
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
ApplicationSummary.Builder applicationId(String applicationId)
The unique Id of the web application.
- Parameters:
applicationId- The unique Id of the web application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
applicationName
ApplicationSummary.Builder applicationName(String applicationName)
The name of the web application.
- Parameters:
applicationName- The name of the web application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
applicationDescription
ApplicationSummary.Builder applicationDescription(String applicationDescription)
An optional description of the web application.
- Parameters:
applicationDescription- An optional description of the web application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
applicationUrl
ApplicationSummary.Builder applicationUrl(String applicationUrl)
The URL of the web application.
- Parameters:
applicationUrl- The URL of the web application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
applicationCreationDate
ApplicationSummary.Builder applicationCreationDate(Long applicationCreationDate)
The date (in Unix epoch time) when the web application was created.
- Parameters:
applicationCreationDate- The date (in Unix epoch time) when the web application was created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
applicationLastUpdateDate
ApplicationSummary.Builder applicationLastUpdateDate(Long applicationLastUpdateDate)
The date (in Unix epoch time) when the web application was last updated.
- Parameters:
applicationLastUpdateDate- The date (in Unix epoch time) when the web application was last updated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
applicationState
ApplicationSummary.Builder applicationState(String applicationState)
The current state of the web application.
- Parameters:
applicationState- The current state of the web application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ApplicationState,ApplicationState
-
applicationState
ApplicationSummary.Builder applicationState(ApplicationState applicationState)
The current state of the web application.
- Parameters:
applicationState- The current state of the web application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ApplicationState,ApplicationState
-
-