Struct aws_sdk_codedeploy::input::CreateApplicationInput [−][src]
#[non_exhaustive]pub struct CreateApplicationInput {
pub application_name: Option<String>,
pub compute_platform: Option<ComputePlatform>,
pub tags: Option<Vec<Tag>>,
}
Expand description
Represents the input of a CreateApplication
operation.
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. This name must be unique with the applicable IAM user or AWS account.
compute_platform: Option<ComputePlatform>
The destination platform type for the deployment (Lambda
,
Server
, or ECS
).
The metadata that you apply to CodeDeploy applications to help you organize and categorize them. Each tag consists of a key and an optional value, both of which you define.
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. This name must be unique with the applicable IAM user or AWS account.
The destination platform type for the deployment (Lambda
,
Server
, or ECS
).
The metadata that you apply to CodeDeploy applications to help you organize and categorize them. Each tag consists of a key and an optional value, both of which you define.
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