Interface SolutionSummary.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<SolutionSummary.Builder,SolutionSummary>,SdkBuilder<SolutionSummary.Builder,SolutionSummary>,SdkPojo
- Enclosing class:
- SolutionSummary
public static interface SolutionSummary.Builder extends SdkPojo, CopyableBuilder<SolutionSummary.Builder,SolutionSummary>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SolutionSummary.BuildercreationDateTime(Instant creationDateTime)The date and time (in Unix time) that the solution was created.SolutionSummary.BuilderlastUpdatedDateTime(Instant lastUpdatedDateTime)The date and time (in Unix time) that the solution was last updated.SolutionSummary.Buildername(String name)The name of the solution.SolutionSummary.BuilderrecipeArn(String recipeArn)The Amazon Resource Name (ARN) of the recipe used by the solution.SolutionSummary.BuildersolutionArn(String solutionArn)The Amazon Resource Name (ARN) of the solution.SolutionSummary.Builderstatus(String status)The status of the solution.-
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
-
name
SolutionSummary.Builder name(String name)
The name of the solution.
- Parameters:
name- The name of the solution.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
solutionArn
SolutionSummary.Builder solutionArn(String solutionArn)
The Amazon Resource Name (ARN) of the solution.
- Parameters:
solutionArn- The Amazon Resource Name (ARN) of the solution.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
SolutionSummary.Builder status(String status)
The status of the solution.
A solution can be in one of the following states:
-
CREATE PENDING > CREATE IN_PROGRESS > ACTIVE -or- CREATE FAILED
-
DELETE PENDING > DELETE IN_PROGRESS
- Parameters:
status- The status of the solution.A solution can be in one of the following states:
-
CREATE PENDING > CREATE IN_PROGRESS > ACTIVE -or- CREATE FAILED
-
DELETE PENDING > DELETE IN_PROGRESS
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-
creationDateTime
SolutionSummary.Builder creationDateTime(Instant creationDateTime)
The date and time (in Unix time) that the solution was created.
- Parameters:
creationDateTime- The date and time (in Unix time) that the solution was created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastUpdatedDateTime
SolutionSummary.Builder lastUpdatedDateTime(Instant lastUpdatedDateTime)
The date and time (in Unix time) that the solution was last updated.
- Parameters:
lastUpdatedDateTime- The date and time (in Unix time) that the solution was last updated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
recipeArn
SolutionSummary.Builder recipeArn(String recipeArn)
The Amazon Resource Name (ARN) of the recipe used by the solution.
- Parameters:
recipeArn- The Amazon Resource Name (ARN) of the recipe used by the solution.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-