Interface CreateProjectRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<CreateProjectRequest.Builder,CreateProjectRequest>,RekognitionRequest.Builder,SdkBuilder<CreateProjectRequest.Builder,CreateProjectRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- CreateProjectRequest
public static interface CreateProjectRequest.Builder extends RekognitionRequest.Builder, SdkPojo, CopyableBuilder<CreateProjectRequest.Builder,CreateProjectRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CreateProjectRequest.BuilderautoUpdate(String autoUpdate)Specifies whether automatic retraining should be attempted for the versions of the project.CreateProjectRequest.BuilderautoUpdate(ProjectAutoUpdate autoUpdate)Specifies whether automatic retraining should be attempted for the versions of the project.CreateProjectRequest.Builderfeature(String feature)Specifies feature that is being customized.CreateProjectRequest.Builderfeature(CustomizationFeature feature)Specifies feature that is being customized.CreateProjectRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)CreateProjectRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)CreateProjectRequest.BuilderprojectName(String projectName)The name of the project to create.CreateProjectRequest.Buildertags(Map<String,String> tags)A set of tags (key-value pairs) that you want to attach to the project.-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.rekognition.model.RekognitionRequest.Builder
build
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
projectName
CreateProjectRequest.Builder projectName(String projectName)
The name of the project to create.
- Parameters:
projectName- The name of the project to create.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
feature
CreateProjectRequest.Builder feature(String feature)
Specifies feature that is being customized. If no value is provided CUSTOM_LABELS is used as a default.
- Parameters:
feature- Specifies feature that is being customized. If no value is provided CUSTOM_LABELS is used as a default.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
CustomizationFeature,CustomizationFeature
-
feature
CreateProjectRequest.Builder feature(CustomizationFeature feature)
Specifies feature that is being customized. If no value is provided CUSTOM_LABELS is used as a default.
- Parameters:
feature- Specifies feature that is being customized. If no value is provided CUSTOM_LABELS is used as a default.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
CustomizationFeature,CustomizationFeature
-
autoUpdate
CreateProjectRequest.Builder autoUpdate(String autoUpdate)
Specifies whether automatic retraining should be attempted for the versions of the project. Automatic retraining is done as a best effort. Required argument for Content Moderation. Applicable only to adapters.
- Parameters:
autoUpdate- Specifies whether automatic retraining should be attempted for the versions of the project. Automatic retraining is done as a best effort. Required argument for Content Moderation. Applicable only to adapters.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ProjectAutoUpdate,ProjectAutoUpdate
-
autoUpdate
CreateProjectRequest.Builder autoUpdate(ProjectAutoUpdate autoUpdate)
Specifies whether automatic retraining should be attempted for the versions of the project. Automatic retraining is done as a best effort. Required argument for Content Moderation. Applicable only to adapters.
- Parameters:
autoUpdate- Specifies whether automatic retraining should be attempted for the versions of the project. Automatic retraining is done as a best effort. Required argument for Content Moderation. Applicable only to adapters.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ProjectAutoUpdate,ProjectAutoUpdate
-
tags
CreateProjectRequest.Builder tags(Map<String,String> tags)
A set of tags (key-value pairs) that you want to attach to the project.
- Parameters:
tags- A set of tags (key-value pairs) that you want to attach to the project.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
CreateProjectRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
CreateProjectRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-