Interface ProjectMetadata.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ProjectMetadata.Builder,ProjectMetadata>,SdkBuilder<ProjectMetadata.Builder,ProjectMetadata>,SdkPojo
- Enclosing class:
- ProjectMetadata
public static interface ProjectMetadata.Builder extends SdkPojo, CopyableBuilder<ProjectMetadata.Builder,ProjectMetadata>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ProjectMetadata.BuildercreationTimestamp(Instant creationTimestamp)The unix timestamp for the date and time that the project was created.ProjectMetadata.BuilderprojectArn(String projectArn)The Amazon Resource Name (ARN) of the project.ProjectMetadata.BuilderprojectName(String projectName)The name 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
-
projectArn
ProjectMetadata.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.
-
projectName
ProjectMetadata.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.
-
creationTimestamp
ProjectMetadata.Builder creationTimestamp(Instant creationTimestamp)
The unix timestamp for the date and time that the project was created.
- Parameters:
creationTimestamp- The unix timestamp for the date and time that the project was created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-