Struct rusoto_rekognition::S3Object[][src]

pub struct S3Object {
    pub bucket: Option<String>,
    pub name: Option<String>,
    pub version: Option<String>,
}

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 manage-access-resource-policies.

Fields

Name of the S3 bucket.

S3 object key name.

If the bucket is versioning enabled, you can specify the object version.

Trait Implementations

impl Default for S3Object
[src]

Returns the "default value" for a type. Read more

impl Debug for S3Object
[src]

Formats the value using the given formatter. Read more

impl Clone for S3Object
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for S3Object
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

impl Send for S3Object

impl Sync for S3Object