
com.pulumi.awsnative.rekognition.kotlin.outputs.StreamProcessorConnectedHomeSettings.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.rekognition.kotlin.outputs
import kotlin.Double
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
* Connected home settings to use on a streaming video. Note that either ConnectedHomeSettings or FaceSearchSettings should be set. Not both
* @property labels Specifies what you want to detect in the video, such as people, packages, or pets. The current valid labels you can include in this list are: "PERSON", "PET", "PACKAGE", and "ALL".
* @property minConfidence Minimum object class match confidence score that must be met to return a result for a recognized object.
*/
public data class StreamProcessorConnectedHomeSettings(
public val labels: List,
public val minConfidence: Double? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.rekognition.outputs.StreamProcessorConnectedHomeSettings): StreamProcessorConnectedHomeSettings = StreamProcessorConnectedHomeSettings(
labels = javaType.labels().map({ args0 -> args0 }),
minConfidence = javaType.minConfidence().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy