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§
Source§impl Clone for CreateApplicationVersionRequest
impl Clone for CreateApplicationVersionRequest
Source§fn clone(&self) -> CreateApplicationVersionRequest
fn clone(&self) -> CreateApplicationVersionRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for CreateApplicationVersionRequest
impl Default for CreateApplicationVersionRequest
Source§fn default() -> CreateApplicationVersionRequest
fn default() -> CreateApplicationVersionRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for CreateApplicationVersionRequest
impl PartialEq for CreateApplicationVersionRequest
Source§fn eq(&self, other: &CreateApplicationVersionRequest) -> bool
fn eq(&self, other: &CreateApplicationVersionRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for CreateApplicationVersionRequest
Auto Trait Implementations§
impl Freeze for CreateApplicationVersionRequest
impl RefUnwindSafe for CreateApplicationVersionRequest
impl Send for CreateApplicationVersionRequest
impl Sync for CreateApplicationVersionRequest
impl Unpin for CreateApplicationVersionRequest
impl UnwindSafe for CreateApplicationVersionRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more