Struct aws_sdk_lookoutvision::types::S3Location
source · #[non_exhaustive]pub struct S3Location {
pub bucket: Option<String>,
pub prefix: Option<String>,
}Expand description
Information about the location of training output or the output of a model packaging job.
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 S3 bucket that contains the training or model packaging job output. If you are training a model, the bucket must in your AWS account. If you use an S3 bucket for a model packaging job, the S3 bucket must be in the same AWS Region and AWS account in which you use AWS IoT Greengrass.
prefix: Option<String>The path of the folder, within the S3 bucket, that contains the output.
Implementations§
source§impl S3Location
impl S3Location
sourcepub fn bucket(&self) -> Option<&str>
pub fn bucket(&self) -> Option<&str>
The S3 bucket that contains the training or model packaging job output. If you are training a model, the bucket must in your AWS account. If you use an S3 bucket for a model packaging job, the S3 bucket must be in the same AWS Region and AWS account in which you use AWS IoT Greengrass.
source§impl S3Location
impl S3Location
sourcepub fn builder() -> S3LocationBuilder
pub fn builder() -> S3LocationBuilder
Creates a new builder-style object to manufacture S3Location.
Trait Implementations§
source§impl Clone for S3Location
impl Clone for S3Location
source§fn clone(&self) -> S3Location
fn clone(&self) -> S3Location
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for S3Location
impl Debug for S3Location
source§impl PartialEq for S3Location
impl PartialEq for S3Location
source§fn eq(&self, other: &S3Location) -> bool
fn eq(&self, other: &S3Location) -> bool
self and other values to be equal, and is used
by ==.