[][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:

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 PartialEq<RevisionLocation> for RevisionLocation[src]

impl Default for RevisionLocation[src]

impl Clone for RevisionLocation[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for RevisionLocation[src]

impl Serialize for RevisionLocation[src]

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

Auto Trait Implementations

impl Send for RevisionLocation

impl Sync for RevisionLocation

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]

type Owned = T

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

type Error = !

🔬 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> BorrowMut for T where
    T: ?Sized
[src]

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

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

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

The type returned in the event of a conversion error.

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

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

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self