Struct aws_sdk_rekognition::types::builders::SummaryBuilder
source · #[non_exhaustive]pub struct SummaryBuilder { /* private fields */ }Expand description
A builder for Summary.
Implementations§
source§impl SummaryBuilder
impl SummaryBuilder
sourcepub fn s3_object(self, input: S3Object) -> Self
pub fn s3_object(self, input: S3Object) -> Self
Provides the S3 bucket name and object name.
The region for the S3 bucket containing the S3 object must match the region you use for Amazon Rekognition operations.
For Amazon Rekognition to process an S3 object, the user must have permission to access the S3 object. For more information, see How Amazon Rekognition works with IAM in the Amazon Rekognition Developer Guide.
sourcepub fn set_s3_object(self, input: Option<S3Object>) -> Self
pub fn set_s3_object(self, input: Option<S3Object>) -> Self
Provides the S3 bucket name and object name.
The region for the S3 bucket containing the S3 object must match the region you use for Amazon Rekognition operations.
For Amazon Rekognition to process an S3 object, the user must have permission to access the S3 object. For more information, see How Amazon Rekognition works with IAM in the Amazon Rekognition Developer Guide.
sourcepub fn get_s3_object(&self) -> &Option<S3Object>
pub fn get_s3_object(&self) -> &Option<S3Object>
Provides the S3 bucket name and object name.
The region for the S3 bucket containing the S3 object must match the region you use for Amazon Rekognition operations.
For Amazon Rekognition to process an S3 object, the user must have permission to access the S3 object. For more information, see How Amazon Rekognition works with IAM in the Amazon Rekognition Developer Guide.
Trait Implementations§
source§impl Clone for SummaryBuilder
impl Clone for SummaryBuilder
source§fn clone(&self) -> SummaryBuilder
fn clone(&self) -> SummaryBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for SummaryBuilder
impl Debug for SummaryBuilder
source§impl Default for SummaryBuilder
impl Default for SummaryBuilder
source§fn default() -> SummaryBuilder
fn default() -> SummaryBuilder
source§impl PartialEq for SummaryBuilder
impl PartialEq for SummaryBuilder
source§fn eq(&self, other: &SummaryBuilder) -> bool
fn eq(&self, other: &SummaryBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for SummaryBuilder
Auto Trait Implementations§
impl Freeze for SummaryBuilder
impl RefUnwindSafe for SummaryBuilder
impl Send for SummaryBuilder
impl Sync for SummaryBuilder
impl Unpin for SummaryBuilder
impl UnwindSafe for SummaryBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more