Struct rusoto_serverlessrepo::CreateApplicationVersionInput[][src]

pub struct CreateApplicationVersionInput {
    pub source_code_url: Option<String>,
    pub template_body: Option<String>,
    pub template_url: Option<String>,
}

Create version request.

Fields

A link to a public repository for the source code of your application.

The raw packaged AWS SAM template of your application.

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

Trait Implementations

impl Default for CreateApplicationVersionInput
[src]

Returns the "default value" for a type. Read more

impl Debug for CreateApplicationVersionInput
[src]

Formats the value using the given formatter. Read more

impl Clone for CreateApplicationVersionInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for CreateApplicationVersionInput
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations