Interface VideoSource.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<VideoSource.Builder,VideoSource>,SdkBuilder<VideoSource.Builder,VideoSource>,SdkPojo
- Enclosing class:
- VideoSource
public static interface VideoSource.Builder extends SdkPojo, CopyableBuilder<VideoSource.Builder,VideoSource>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description VideoSource.Builderbytes(SdkBytes bytes)Video content encoded in base64.default VideoSource.Builders3Location(Consumer<S3Location.Builder> s3Location)The location of a video object in an S3 bucket.VideoSource.Builders3Location(S3Location s3Location)The location of a video object in an S3 bucket.-
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
-
bytes
VideoSource.Builder bytes(SdkBytes bytes)
Video content encoded in base64.
- Parameters:
bytes- Video content encoded in base64.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
s3Location
VideoSource.Builder s3Location(S3Location s3Location)
The location of a video object in an S3 bucket.
- Parameters:
s3Location- The location of a video object in an S3 bucket.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
s3Location
default VideoSource.Builder s3Location(Consumer<S3Location.Builder> s3Location)
The location of a video object in an S3 bucket.
This is a convenience method that creates an instance of theS3Location.Builderavoiding the need to create one manually viaS3Location.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tos3Location(S3Location).- Parameters:
s3Location- a consumer that will call methods onS3Location.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
s3Location(S3Location)
-
-