Interface DetectModerationLabelsRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<DetectModerationLabelsRequest.Builder,DetectModerationLabelsRequest>,RekognitionRequest.Builder,SdkBuilder<DetectModerationLabelsRequest.Builder,DetectModerationLabelsRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- DetectModerationLabelsRequest
public static interface DetectModerationLabelsRequest.Builder extends RekognitionRequest.Builder, SdkPojo, CopyableBuilder<DetectModerationLabelsRequest.Builder,DetectModerationLabelsRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default DetectModerationLabelsRequest.BuilderhumanLoopConfig(Consumer<HumanLoopConfig.Builder> humanLoopConfig)Sets up the configuration for human evaluation, including the FlowDefinition the image will be sent to.DetectModerationLabelsRequest.BuilderhumanLoopConfig(HumanLoopConfig humanLoopConfig)Sets up the configuration for human evaluation, including the FlowDefinition the image will be sent to.default DetectModerationLabelsRequest.Builderimage(Consumer<Image.Builder> image)The input image as base64-encoded bytes or an S3 object.DetectModerationLabelsRequest.Builderimage(Image image)The input image as base64-encoded bytes or an S3 object.DetectModerationLabelsRequest.BuilderminConfidence(Float minConfidence)Specifies the minimum confidence level for the labels to return.DetectModerationLabelsRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)DetectModerationLabelsRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)DetectModerationLabelsRequest.BuilderprojectVersion(String projectVersion)Identifier for the custom adapter.-
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, sdkFields
-
-
-
-
Method Detail
-
image
DetectModerationLabelsRequest.Builder image(Image image)
The input image as base64-encoded bytes or an S3 object. If you use the AWS CLI to call Amazon Rekognition operations, passing base64-encoded image bytes is not supported.
If you are using an AWS SDK to call Amazon Rekognition, you might not need to base64-encode image bytes passed using the
Bytesfield. For more information, see Images in the Amazon Rekognition developer guide.- Parameters:
image- The input image as base64-encoded bytes or an S3 object. If you use the AWS CLI to call Amazon Rekognition operations, passing base64-encoded image bytes is not supported.If you are using an AWS SDK to call Amazon Rekognition, you might not need to base64-encode image bytes passed using the
Bytesfield. For more information, see Images in the Amazon Rekognition developer guide.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
image
default DetectModerationLabelsRequest.Builder image(Consumer<Image.Builder> image)
The input image as base64-encoded bytes or an S3 object. If you use the AWS CLI to call Amazon Rekognition operations, passing base64-encoded image bytes is not supported.
If you are using an AWS SDK to call Amazon Rekognition, you might not need to base64-encode image bytes passed using the
This is a convenience method that creates an instance of theBytesfield. For more information, see Images in the Amazon Rekognition developer guide.Image.Builderavoiding the need to create one manually viaImage.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toimage(Image).- Parameters:
image- a consumer that will call methods onImage.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
image(Image)
-
minConfidence
DetectModerationLabelsRequest.Builder minConfidence(Float minConfidence)
Specifies the minimum confidence level for the labels to return. Amazon Rekognition doesn't return any labels with a confidence level lower than this specified value.
If you don't specify
MinConfidence, the operation returns labels with confidence values greater than or equal to 50 percent.- Parameters:
minConfidence- Specifies the minimum confidence level for the labels to return. Amazon Rekognition doesn't return any labels with a confidence level lower than this specified value.If you don't specify
MinConfidence, the operation returns labels with confidence values greater than or equal to 50 percent.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
humanLoopConfig
DetectModerationLabelsRequest.Builder humanLoopConfig(HumanLoopConfig humanLoopConfig)
Sets up the configuration for human evaluation, including the FlowDefinition the image will be sent to.
- Parameters:
humanLoopConfig- Sets up the configuration for human evaluation, including the FlowDefinition the image will be sent to.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
humanLoopConfig
default DetectModerationLabelsRequest.Builder humanLoopConfig(Consumer<HumanLoopConfig.Builder> humanLoopConfig)
Sets up the configuration for human evaluation, including the FlowDefinition the image will be sent to.
This is a convenience method that creates an instance of theHumanLoopConfig.Builderavoiding the need to create one manually viaHumanLoopConfig.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tohumanLoopConfig(HumanLoopConfig).- Parameters:
humanLoopConfig- a consumer that will call methods onHumanLoopConfig.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
humanLoopConfig(HumanLoopConfig)
-
projectVersion
DetectModerationLabelsRequest.Builder projectVersion(String projectVersion)
Identifier for the custom adapter. Expects the ProjectVersionArn as a value. Use the CreateProject or CreateProjectVersion APIs to create a custom adapter.
- Parameters:
projectVersion- Identifier for the custom adapter. Expects the ProjectVersionArn as a value. Use the CreateProject or CreateProjectVersion APIs to create a custom adapter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
DetectModerationLabelsRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
DetectModerationLabelsRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-