[][src]Struct rusoto_codedeploy::RevisionLocation

pub struct RevisionLocation {
    pub git_hub_location: Option<GitHubLocation>,
    pub revision_type: Option<String>,
    pub s_3_location: Option<S3Location>,
    pub string: Option<RawString>,
}

Information about the location of an application revision.

Fields

Information about the location of application artifacts stored in GitHub.

The type of application revision:

  • S3: An application revision stored in Amazon S3.

  • GitHub: An application revision stored in GitHub (EC2/On-premises deployments only)

  • String: A YAML-formatted or JSON-formatted string (AWS Lambda deployments only)

Information about the location of a revision stored in Amazon S3.

Information about the location of an AWS Lambda deployment revision stored as a RawString.

Trait Implementations

impl Clone for RevisionLocation
[src]

Performs copy-assignment from source. Read more

impl Default for RevisionLocation
[src]

impl PartialEq<RevisionLocation> for RevisionLocation
[src]

impl Debug for RevisionLocation
[src]

impl Serialize for RevisionLocation
[src]

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

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

impl<T> Same for T

Should always be Self

impl<T> Erased for T