#[non_exhaustive]pub struct CreateApplicationInput {
pub application_name: Option<String>,
pub description: Option<String>,
pub resource_lifecycle_config: Option<ApplicationResourceLifecycleConfig>,
pub tags: Option<Vec<Tag>>,
}
Expand description
Request to create an application.
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_name: Option<String>
The name of the application. Must be unique within your account.
description: Option<String>
Your description of the application.
resource_lifecycle_config: Option<ApplicationResourceLifecycleConfig>
Specifies an application resource lifecycle configuration to prevent your application from accumulating too many versions.
Specifies the tags applied to the application.
Elastic Beanstalk applies these tags only to the application. Environments that you create in the application don't inherit the tags.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateApplication, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateApplication, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<CreateApplication
>
Creates a new builder-style object to manufacture CreateApplicationInput
The name of the application. Must be unique within your account.
Your description of the application.
Specifies an application resource lifecycle configuration to prevent your application from accumulating too many versions.
Specifies the tags applied to the application.
Elastic Beanstalk applies these tags only to the application. Environments that you create in the application don't inherit the tags.
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 RefUnwindSafe for CreateApplicationInput
impl Send for CreateApplicationInput
impl Sync for CreateApplicationInput
impl Unpin for CreateApplicationInput
impl UnwindSafe for CreateApplicationInput
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