com.pulumi.aws.rekognition.inputs.StreamProcessorSettingsFaceSearchArgs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws Show documentation
Show all versions of aws Show documentation
A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.aws.rekognition.inputs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Double;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class StreamProcessorSettingsFaceSearchArgs extends com.pulumi.resources.ResourceArgs {
public static final StreamProcessorSettingsFaceSearchArgs Empty = new StreamProcessorSettingsFaceSearchArgs();
/**
* ID of a collection that contains faces that you want to search for.
*
*/
@Import(name="collectionId", required=true)
private Output collectionId;
/**
* @return ID of a collection that contains faces that you want to search for.
*
*/
public Output collectionId() {
return this.collectionId;
}
/**
* Minimum face match confidence score that must be met to return a result for a recognized face.
*
*/
@Import(name="faceMatchThreshold")
private @Nullable Output faceMatchThreshold;
/**
* @return Minimum face match confidence score that must be met to return a result for a recognized face.
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy