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.BuilderappRegistryArn(String appRegistryArn)The Amazon Resource Name (ARN) of the Application Registry.Application.Builderarn(String arn)The Amazon Resource Name (ARN) of the application.Application.Buildercomponents(String... components)The components of the application.Application.Buildercomponents(Collection<String> components)The components of the application.Application.BuilderdiscoveryStatus(String discoveryStatus)The latest discovery result for the application.Application.BuilderdiscoveryStatus(ApplicationDiscoveryStatus discoveryStatus)The latest discovery result for the application.Application.Builderid(String id)The ID of the application.Application.BuilderlastUpdated(Instant lastUpdated)The time at which the application was last updated.Application.Builderstatus(String status)The status of the application.Application.Builderstatus(ApplicationStatus status)The status of the application.Application.BuilderstatusMessage(String statusMessage)The status message.Application.Buildertype(String type)The type of the application.Application.Buildertype(ApplicationType type)The type of the 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
-
id
Application.Builder id(String id)
The ID of the application.
- Parameters:
id- The ID of the application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
type
Application.Builder type(String type)
The type of the application.
- Parameters:
type- The type of the application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ApplicationType,ApplicationType
-
type
Application.Builder type(ApplicationType type)
The type of the application.
- Parameters:
type- The type of the application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ApplicationType,ApplicationType
-
arn
Application.Builder arn(String arn)
The Amazon Resource Name (ARN) of the application.
- Parameters:
arn- The Amazon Resource Name (ARN) of the application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
appRegistryArn
Application.Builder appRegistryArn(String appRegistryArn)
The Amazon Resource Name (ARN) of the Application Registry.
- Parameters:
appRegistryArn- The Amazon Resource Name (ARN) of the Application Registry.- 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 application.
- Parameters:
status- The status of the application.- 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 application.
- Parameters:
status- The status of the application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ApplicationStatus,ApplicationStatus
-
discoveryStatus
Application.Builder discoveryStatus(String discoveryStatus)
The latest discovery result for the application.
- Parameters:
discoveryStatus- The latest discovery result for the application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ApplicationDiscoveryStatus,ApplicationDiscoveryStatus
-
discoveryStatus
Application.Builder discoveryStatus(ApplicationDiscoveryStatus discoveryStatus)
The latest discovery result for the application.
- Parameters:
discoveryStatus- The latest discovery result for the application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ApplicationDiscoveryStatus,ApplicationDiscoveryStatus
-
components
Application.Builder components(Collection<String> components)
The components of the application.
- Parameters:
components- The components of the application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
components
Application.Builder components(String... components)
The components of the application.
- Parameters:
components- The components of the application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastUpdated
Application.Builder lastUpdated(Instant lastUpdated)
The time at which the application was last updated.
- Parameters:
lastUpdated- The time at which the application was last updated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
statusMessage
Application.Builder statusMessage(String statusMessage)
The status message.
- Parameters:
statusMessage- The status message.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-