[][src]Struct rusoto_codepipeline::S3ArtifactLocation

pub struct S3ArtifactLocation {
    pub bucket_name: String,
    pub object_key: String,
}

The location of the S3 bucket that contains a revision.

Fields

bucket_name: String

The name of the S3 bucket.

object_key: String

The key of the object in the S3 bucket, which uniquely identifies the object in the bucket.

Trait Implementations

impl Clone for S3ArtifactLocation[src]

impl Debug for S3ArtifactLocation[src]

impl Default for S3ArtifactLocation[src]

impl<'de> Deserialize<'de> for S3ArtifactLocation[src]

impl PartialEq<S3ArtifactLocation> for S3ArtifactLocation[src]

impl StructuralPartialEq for S3ArtifactLocation[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.