Struct aws_sdk_codepipeline::model::S3ArtifactLocation
source · [−]#[non_exhaustive]pub struct S3ArtifactLocation {
pub bucket_name: Option<String>,
pub object_key: Option<String>,
}
Expand description
The location of the S3 bucket that contains a revision.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.bucket_name: Option<String>
The name of the S3 bucket.
object_key: Option<String>
The key of the object in the S3 bucket, which uniquely identifies the object in the bucket.
Implementations
The name of the S3 bucket.
The key of the object in the S3 bucket, which uniquely identifies the object in the bucket.
Creates a new builder-style object to manufacture S3ArtifactLocation
Trait Implementations
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 RefUnwindSafe for S3ArtifactLocation
impl Send for S3ArtifactLocation
impl Sync for S3ArtifactLocation
impl Unpin for S3ArtifactLocation
impl UnwindSafe for S3ArtifactLocation
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more