Struct aws_sdk_serverlessapplicationrepository::input::CreateApplicationVersionInput [−][src]
#[non_exhaustive]pub struct CreateApplicationVersionInput {
pub application_id: Option<String>,
pub semantic_version: Option<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 (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.application_id: Option<String>
The Amazon Resource Name (ARN) of the application.
semantic_version: Option<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.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateApplicationVersion, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateApplicationVersion, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<CreateApplicationVersion
>
Creates a new builder-style object to manufacture CreateApplicationVersionInput
The Amazon Resource Name (ARN) of the application.
The semantic version of the new version.
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
A link to a public repository for the source code of your application, for example the URL of a specific GitHub commit.
The raw packaged AWS SAM template of your application.
A link to the packaged AWS SAM template of your application.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl Send for CreateApplicationVersionInput
impl Sync for CreateApplicationVersionInput
impl Unpin for CreateApplicationVersionInput
impl UnwindSafe for CreateApplicationVersionInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more