[][src]Struct rusoto_serverlessrepo::CreateApplicationVersionRequest

pub struct CreateApplicationVersionRequest {
    pub application_id: String,
    pub semantic_version: String,
    pub source_code_archive_url: Option<String>,
    pub source_code_url: Option<String>,
    pub template_body: Option<String>,
    pub template_url: Option<String>,
}

Fields

application_id: String

The Amazon Resource Name (ARN) of the application.

semantic_version: String

The semantic version of the new version.

source_code_archive_url: Option<String>

A link to the S3 object that contains the ZIP archive of the source code for this version of your application.

Maximum size 50 MB

source_code_url: Option<String>

A link to a public repository for the source code of your application, for example the URL of a specific GitHub commit.

template_body: Option<String>

The raw packaged AWS SAM template of your application.

template_url: Option<String>

A link to the packaged AWS SAM template of your application.

Trait Implementations

impl Clone for CreateApplicationVersionRequest[src]

impl Debug for CreateApplicationVersionRequest[src]

impl Default for CreateApplicationVersionRequest[src]

impl PartialEq<CreateApplicationVersionRequest> for CreateApplicationVersionRequest[src]

impl Serialize for CreateApplicationVersionRequest[src]

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