Interface ProjectDetails.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ProjectDetails.Builder,ProjectDetails>,SdkBuilder<ProjectDetails.Builder,ProjectDetails>,SdkPojo
- Enclosing class:
- ProjectDetails
public static interface ProjectDetails.Builder extends SdkPojo, CopyableBuilder<ProjectDetails.Builder,ProjectDetails>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ProjectDetails.BuilderconsoleUrl(String consoleUrl)Website URL for this project in the AWS Mobile Hub console.ProjectDetails.BuildercreatedDate(Instant createdDate)Date the project was created.ProjectDetails.BuilderlastUpdatedDate(Instant lastUpdatedDate)Date of the last modification of the project.ProjectDetails.Buildername(String name)Sets the value of the Name property for this object.ProjectDetails.BuilderprojectId(String projectId)Sets the value of the ProjectId property for this object.ProjectDetails.Builderregion(String region)Sets the value of the Region property for this object.ProjectDetails.Builderresources(Collection<Resource> resources)Sets the value of the Resources property for this object.ProjectDetails.Builderresources(Consumer<Resource.Builder>... resources)Sets the value of the Resources property for this object.ProjectDetails.Builderresources(Resource... resources)Sets the value of the Resources property for this object.ProjectDetails.Builderstate(String state)Sets the value of the State property for this object.ProjectDetails.Builderstate(ProjectState state)Sets the value of the State property for this object.-
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
-
name
ProjectDetails.Builder name(String name)
Sets the value of the Name property for this object.- Parameters:
name- The new value for the Name property for this object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
projectId
ProjectDetails.Builder projectId(String projectId)
Sets the value of the ProjectId property for this object.- Parameters:
projectId- The new value for the ProjectId property for this object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
region
ProjectDetails.Builder region(String region)
Sets the value of the Region property for this object.- Parameters:
region- The new value for the Region property for this object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
state
ProjectDetails.Builder state(String state)
Sets the value of the State property for this object.- Parameters:
state- The new value for the State property for this object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ProjectState,ProjectState
-
state
ProjectDetails.Builder state(ProjectState state)
Sets the value of the State property for this object.- Parameters:
state- The new value for the State property for this object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ProjectState,ProjectState
-
createdDate
ProjectDetails.Builder createdDate(Instant createdDate)
Date the project was created.
- Parameters:
createdDate- Date the project was created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastUpdatedDate
ProjectDetails.Builder lastUpdatedDate(Instant lastUpdatedDate)
Date of the last modification of the project.
- Parameters:
lastUpdatedDate- Date of the last modification of the project.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
consoleUrl
ProjectDetails.Builder consoleUrl(String consoleUrl)
Website URL for this project in the AWS Mobile Hub console.
- Parameters:
consoleUrl- Website URL for this project in the AWS Mobile Hub console.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
resources
ProjectDetails.Builder resources(Collection<Resource> resources)
Sets the value of the Resources property for this object.- Parameters:
resources- The new value for the Resources property for this object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
resources
ProjectDetails.Builder resources(Resource... resources)
Sets the value of the Resources property for this object.- Parameters:
resources- The new value for the Resources property for this object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
resources
ProjectDetails.Builder resources(Consumer<Resource.Builder>... resources)
Sets the value of the Resources property for this object. This is a convenience method that creates an instance of theResource.Builderavoiding the need to create one manually viaResource.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#resources(List.) - Parameters:
resources- a consumer that will call methods onResource.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#resources(java.util.Collection)
-
-