VideoSource
module-attribute
¶
VideoSource = Union[VideoSourceBytes | VideoSourceS3Location | VideoSourceUnknown]
A video source. You can upload a smaller video as a base64-encoded string as long as the encoded file is less than 25MB. You can also transfer videos up to 1GB in size from an S3 bucket.
Union Members¶
VideoSourceBytes
dataclass
¶
Video content encoded in base64.
Source code in src/aws_sdk_bedrock_runtime/models.py
7580 7581 7582 7583 7584 7585 7586 7587 7588 7589 7590 7591 7592 7593 7594 | |
VideoSourceS3Location
dataclass
¶
The location of a video object in an Amazon S3 bucket. To see which models support S3 uploads, see Supported models and features for Converse.
Source code in src/aws_sdk_bedrock_runtime/models.py
7597 7598 7599 7600 7601 7602 7603 7604 7605 7606 7607 7608 7609 7610 7611 7612 7613 7614 | |
VideoSourceUnknown
dataclass
¶
Represents an unknown variant.
If you receive this value, you will need to update your library to receive the parsed value.
This value may not be deliberately sent.
Source code in src/aws_sdk_bedrock_runtime/models.py
7617 7618 7619 7620 7621 7622 7623 7624 7625 7626 7627 7628 7629 7630 7631 7632 7633 7634 7635 7636 7637 | |