Interface ProjectDescription.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ProjectDescription.Builder,ProjectDescription>,SdkBuilder<ProjectDescription.Builder,ProjectDescription>,SdkPojo
- Enclosing class:
- ProjectDescription
public static interface ProjectDescription.Builder extends SdkPojo, CopyableBuilder<ProjectDescription.Builder,ProjectDescription>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ProjectDescription.BuilderautoUpdate(String autoUpdate)Indicates whether automatic retraining will be attempted for the versions of the project.ProjectDescription.BuilderautoUpdate(ProjectAutoUpdate autoUpdate)Indicates whether automatic retraining will be attempted for the versions of the project.ProjectDescription.BuildercreationTimestamp(Instant creationTimestamp)The Unix timestamp for the date and time that the project was created.ProjectDescription.Builderdatasets(Collection<DatasetMetadata> datasets)Information about the training and test datasets in the project.ProjectDescription.Builderdatasets(Consumer<DatasetMetadata.Builder>... datasets)Information about the training and test datasets in the project.ProjectDescription.Builderdatasets(DatasetMetadata... datasets)Information about the training and test datasets in the project.ProjectDescription.Builderfeature(String feature)Specifies the project that is being customized.ProjectDescription.Builderfeature(CustomizationFeature feature)Specifies the project that is being customized.ProjectDescription.BuilderprojectArn(String projectArn)The Amazon Resource Name (ARN) of the project.ProjectDescription.Builderstatus(String status)The current status of the project.ProjectDescription.Builderstatus(ProjectStatus status)The current 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
-
projectArn
ProjectDescription.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.
-
creationTimestamp
ProjectDescription.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.
-
status
ProjectDescription.Builder status(String status)
The current status of the project.
- Parameters:
status- The current status of the project.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ProjectStatus,ProjectStatus
-
status
ProjectDescription.Builder status(ProjectStatus status)
The current status of the project.
- Parameters:
status- The current status of the project.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ProjectStatus,ProjectStatus
-
datasets
ProjectDescription.Builder datasets(Collection<DatasetMetadata> datasets)
Information about the training and test datasets in the project.
- Parameters:
datasets- Information about the training and test datasets in the project.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
datasets
ProjectDescription.Builder datasets(DatasetMetadata... datasets)
Information about the training and test datasets in the project.
- Parameters:
datasets- Information about the training and test datasets in the project.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
datasets
ProjectDescription.Builder datasets(Consumer<DatasetMetadata.Builder>... datasets)
Information about the training and test datasets in the project.
This is a convenience method that creates an instance of theDatasetMetadata.Builderavoiding the need to create one manually viaDatasetMetadata.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#datasets(List.) - Parameters:
datasets- a consumer that will call methods onDatasetMetadata.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#datasets(java.util.Collection)
-
feature
ProjectDescription.Builder feature(String feature)
Specifies the project that is being customized.
- Parameters:
feature- Specifies the project that is being customized.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
CustomizationFeature,CustomizationFeature
-
feature
ProjectDescription.Builder feature(CustomizationFeature feature)
Specifies the project that is being customized.
- Parameters:
feature- Specifies the project that is being customized.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
CustomizationFeature,CustomizationFeature
-
autoUpdate
ProjectDescription.Builder autoUpdate(String autoUpdate)
Indicates whether automatic retraining will be attempted for the versions of the project. Applies only to adapters.
- Parameters:
autoUpdate- Indicates whether automatic retraining will be attempted for the versions of the project. Applies only to adapters.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ProjectAutoUpdate,ProjectAutoUpdate
-
autoUpdate
ProjectDescription.Builder autoUpdate(ProjectAutoUpdate autoUpdate)
Indicates whether automatic retraining will be attempted for the versions of the project. Applies only to adapters.
- Parameters:
autoUpdate- Indicates whether automatic retraining will be attempted for the versions of the project. Applies only to adapters.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ProjectAutoUpdate,ProjectAutoUpdate
-
-