Interface LaunchDetails.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<LaunchDetails.Builder,LaunchDetails>,SdkBuilder<LaunchDetails.Builder,LaunchDetails>,SdkPojo
- Enclosing class:
- LaunchDetails
public static interface LaunchDetails.Builder extends SdkPojo, CopyableBuilder<LaunchDetails.Builder,LaunchDetails>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description LaunchDetails.BuilderlatestLaunchTime(Instant latestLaunchTime)The latest time that this application was launched successfully.LaunchDetails.BuilderstackId(String stackId)The ID of the latest stack launched for this application.LaunchDetails.BuilderstackName(String stackName)The name of the latest stack launched for this 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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
latestLaunchTime
LaunchDetails.Builder latestLaunchTime(Instant latestLaunchTime)
The latest time that this application was launched successfully.
- Parameters:
latestLaunchTime- The latest time that this application was launched successfully.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
stackName
LaunchDetails.Builder stackName(String stackName)
The name of the latest stack launched for this application.
- Parameters:
stackName- The name of the latest stack launched for this application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
stackId
LaunchDetails.Builder stackId(String stackId)
The ID of the latest stack launched for this application.
- Parameters:
stackId- The ID of the latest stack launched for this application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-