Interface ConnectedHomeSettings.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ConnectedHomeSettings.Builder,ConnectedHomeSettings>,SdkBuilder<ConnectedHomeSettings.Builder,ConnectedHomeSettings>,SdkPojo
- Enclosing class:
- ConnectedHomeSettings
public static interface ConnectedHomeSettings.Builder extends SdkPojo, CopyableBuilder<ConnectedHomeSettings.Builder,ConnectedHomeSettings>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ConnectedHomeSettings.Builderlabels(String... labels)Specifies what you want to detect in the video, such as people, packages, or pets.ConnectedHomeSettings.Builderlabels(Collection<String> labels)Specifies what you want to detect in the video, such as people, packages, or pets.ConnectedHomeSettings.BuilderminConfidence(Float minConfidence)The minimum confidence required to label an object in the video.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
labels
ConnectedHomeSettings.Builder labels(Collection<String> 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".
- Parameters:
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".- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
labels
ConnectedHomeSettings.Builder labels(String... 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".
- Parameters:
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".- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
minConfidence
ConnectedHomeSettings.Builder minConfidence(Float minConfidence)
The minimum confidence required to label an object in the video.
- Parameters:
minConfidence- The minimum confidence required to label an object in the video.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-