Struct aws_sdk_rekognition::types::S3Destination
source · #[non_exhaustive]pub struct S3Destination {
pub bucket: Option<String>,
pub key_prefix: Option<String>,
}Expand description
The Amazon S3 bucket location to which Amazon Rekognition publishes the detailed inference results of a video analysis operation. These results include the name of the stream processor resource, the session ID of the stream processing session, and labeled timestamps and bounding boxes for detected labels.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.bucket: Option<String>The name of the Amazon S3 bucket you want to associate with the streaming video project. You must be the owner of the Amazon S3 bucket.
key_prefix: Option<String>The prefix value of the location within the bucket that you want the information to be published to. For more information, see Using prefixes.
Implementations§
source§impl S3Destination
impl S3Destination
sourcepub fn bucket(&self) -> Option<&str>
pub fn bucket(&self) -> Option<&str>
The name of the Amazon S3 bucket you want to associate with the streaming video project. You must be the owner of the Amazon S3 bucket.
sourcepub fn key_prefix(&self) -> Option<&str>
pub fn key_prefix(&self) -> Option<&str>
The prefix value of the location within the bucket that you want the information to be published to. For more information, see Using prefixes.
source§impl S3Destination
impl S3Destination
sourcepub fn builder() -> S3DestinationBuilder
pub fn builder() -> S3DestinationBuilder
Creates a new builder-style object to manufacture S3Destination.
Trait Implementations§
source§impl Clone for S3Destination
impl Clone for S3Destination
source§fn clone(&self) -> S3Destination
fn clone(&self) -> S3Destination
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for S3Destination
impl Debug for S3Destination
source§impl PartialEq for S3Destination
impl PartialEq for S3Destination
source§fn eq(&self, other: &S3Destination) -> bool
fn eq(&self, other: &S3Destination) -> bool
self and other values to be equal, and is used
by ==.