[][src]Struct rusoto_codedeploy::RevisionLocation

pub struct RevisionLocation {
    pub app_spec_content: Option<AppSpecContent>,
    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

app_spec_content: Option<AppSpecContent>

The content of an AppSpec file for an AWS Lambda or Amazon ECS deployment. The content is formatted as JSON or YAML and stored as a RawString.

git_hub_location: Option<GitHubLocation>

Information about the location of application artifacts stored in GitHub.

revision_type: Option<String>

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).

  • AppSpecContent: An AppSpecContent object that contains the contents of an AppSpec file for an AWS Lambda or Amazon ECS deployment. The content is formatted as JSON or YAML stored as a RawString.

s_3_location: Option<S3Location>

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

string: Option<RawString>

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

Trait Implementations

impl Clone for RevisionLocation[src]

impl Debug for RevisionLocation[src]

impl Default for RevisionLocation[src]

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

impl PartialEq<RevisionLocation> for RevisionLocation[src]

impl Serialize for RevisionLocation[src]

impl StructuralPartialEq for RevisionLocation[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> 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.