Interface PlacementSummary.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<PlacementSummary.Builder,PlacementSummary>,SdkBuilder<PlacementSummary.Builder,PlacementSummary>,SdkPojo
- Enclosing class:
- PlacementSummary
public static interface PlacementSummary.Builder extends SdkPojo, CopyableBuilder<PlacementSummary.Builder,PlacementSummary>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PlacementSummary.BuildercreatedDate(Instant createdDate)The date when the placement was originally created, in UNIX epoch time format.PlacementSummary.BuilderplacementName(String placementName)The name of the placement being summarized.PlacementSummary.BuilderprojectName(String projectName)The name of the project containing the placement.PlacementSummary.BuilderupdatedDate(Instant updatedDate)The date when the placement was last updated, in UNIX epoch time format.-
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
-
projectName
PlacementSummary.Builder projectName(String projectName)
The name of the project containing the placement.
- Parameters:
projectName- The name of the project containing the placement.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
placementName
PlacementSummary.Builder placementName(String placementName)
The name of the placement being summarized.
- Parameters:
placementName- The name of the placement being summarized.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
createdDate
PlacementSummary.Builder createdDate(Instant createdDate)
The date when the placement was originally created, in UNIX epoch time format.
- Parameters:
createdDate- The date when the placement was originally created, in UNIX epoch time format.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
updatedDate
PlacementSummary.Builder updatedDate(Instant updatedDate)
The date when the placement was last updated, in UNIX epoch time format. If the placement was not updated, then
createdDateandupdatedDateare the same.- Parameters:
updatedDate- The date when the placement was last updated, in UNIX epoch time format. If the placement was not updated, thencreatedDateandupdatedDateare the same.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-