Interface PlacementDescription.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<PlacementDescription.Builder,PlacementDescription>,SdkBuilder<PlacementDescription.Builder,PlacementDescription>,SdkPojo
- Enclosing class:
- PlacementDescription
public static interface PlacementDescription.Builder extends SdkPojo, CopyableBuilder<PlacementDescription.Builder,PlacementDescription>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PlacementDescription.Builderattributes(Map<String,String> attributes)The user-defined attributes associated with the placement.PlacementDescription.BuildercreatedDate(Instant createdDate)The date when the placement was initially created, in UNIX epoch time format.PlacementDescription.BuilderplacementName(String placementName)The name of the placement.PlacementDescription.BuilderprojectName(String projectName)The name of the project containing the placement.PlacementDescription.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
PlacementDescription.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
PlacementDescription.Builder placementName(String placementName)
The name of the placement.
- Parameters:
placementName- The name of the placement.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
attributes
PlacementDescription.Builder attributes(Map<String,String> attributes)
The user-defined attributes associated with the placement.
- Parameters:
attributes- The user-defined attributes associated with the placement.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
createdDate
PlacementDescription.Builder createdDate(Instant createdDate)
The date when the placement was initially created, in UNIX epoch time format.
- Parameters:
createdDate- The date when the placement was initially created, in UNIX epoch time format.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
updatedDate
PlacementDescription.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.
-
-