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.BuildercreationTime(Instant creationTime)The time that the project was created.ProjectSummary.BuilderprojectArn(String projectArn)The Amazon Resource Name (ARN) of the project.ProjectSummary.BuilderprojectDescription(String projectDescription)The description of the project.ProjectSummary.BuilderprojectId(String projectId)The ID of the project.ProjectSummary.BuilderprojectName(String projectName)The name of the project.ProjectSummary.BuilderprojectStatus(String projectStatus)The status of the project.ProjectSummary.BuilderprojectStatus(ProjectStatus projectStatus)The status of the project.-
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
ProjectSummary.Builder projectName(String projectName)
The name of the project.
- Parameters:
projectName- The name of the project.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
projectDescription
ProjectSummary.Builder projectDescription(String projectDescription)
The description of the project.
- Parameters:
projectDescription- The description of the project.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
projectArn
ProjectSummary.Builder projectArn(String projectArn)
The Amazon Resource Name (ARN) of the project.
- Parameters:
projectArn- The Amazon Resource Name (ARN) of the project.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
projectId
ProjectSummary.Builder projectId(String projectId)
The ID of the project.
- Parameters:
projectId- The ID of the project.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
creationTime
ProjectSummary.Builder creationTime(Instant creationTime)
The time that the project was created.
- Parameters:
creationTime- The time that the project was created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
projectStatus
ProjectSummary.Builder projectStatus(String projectStatus)
The status of the project.
- Parameters:
projectStatus- The status of the project.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ProjectStatus,ProjectStatus
-
projectStatus
ProjectSummary.Builder projectStatus(ProjectStatus projectStatus)
The status of the project.
- Parameters:
projectStatus- The status of the project.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ProjectStatus,ProjectStatus
-
-