Interface DetectedProperties.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DetectedProperties.Builder,DetectedProperties>,SdkBuilder<DetectedProperties.Builder,DetectedProperties>,SdkPojo
- Enclosing class:
- DetectedProperties
public static interface DetectedProperties.Builder extends SdkPojo, CopyableBuilder<DetectedProperties.Builder,DetectedProperties>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DetectedProperties.BuilderdurationMillis(Long durationMillis)The detected duration of the input file, in milliseconds.DetectedProperties.BuilderfileSize(Long fileSize)The detected file size of the input file, in bytes.DetectedProperties.BuilderframeRate(String frameRate)The detected frame rate of the input file, in frames per second.DetectedProperties.Builderheight(Integer height)The detected height of the input file, in pixels.DetectedProperties.Builderwidth(Integer width)The detected width of the input file, in pixels.-
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, sdkFields
-
-
-
-
Method Detail
-
width
DetectedProperties.Builder width(Integer width)
The detected width of the input file, in pixels.
- Parameters:
width- The detected width of the input file, in pixels.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
height
DetectedProperties.Builder height(Integer height)
The detected height of the input file, in pixels.
- Parameters:
height- The detected height of the input file, in pixels.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
frameRate
DetectedProperties.Builder frameRate(String frameRate)
The detected frame rate of the input file, in frames per second.
- Parameters:
frameRate- The detected frame rate of the input file, in frames per second.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
fileSize
DetectedProperties.Builder fileSize(Long fileSize)
The detected file size of the input file, in bytes.
- Parameters:
fileSize- The detected file size of the input file, in bytes.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
durationMillis
DetectedProperties.Builder durationMillis(Long durationMillis)
The detected duration of the input file, in milliseconds.
- Parameters:
durationMillis- The detected duration of the input file, in milliseconds.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-