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