pub struct CreateApplicationInput {
pub application_name: String,
pub compute_platform: Option<String>,
pub tags: Option<Vec<Tag>>,
}
Expand description
Represents the input of a CreateApplication
operation.
Fields§
§application_name: String
The name of the application. This name must be unique with the applicable IAM user or AWS account.
compute_platform: Option<String>
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§
Source§impl Clone for CreateApplicationInput
impl Clone for CreateApplicationInput
Source§fn clone(&self) -> CreateApplicationInput
fn clone(&self) -> CreateApplicationInput
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 Debug for CreateApplicationInput
impl Debug for CreateApplicationInput
Source§impl Default for CreateApplicationInput
impl Default for CreateApplicationInput
Source§fn default() -> CreateApplicationInput
fn default() -> CreateApplicationInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for CreateApplicationInput
impl PartialEq for CreateApplicationInput
Source§impl Serialize for CreateApplicationInput
impl Serialize for CreateApplicationInput
impl StructuralPartialEq for CreateApplicationInput
Auto Trait Implementations§
impl Freeze for CreateApplicationInput
impl RefUnwindSafe for CreateApplicationInput
impl Send for CreateApplicationInput
impl Sync for CreateApplicationInput
impl Unpin for CreateApplicationInput
impl UnwindSafe for CreateApplicationInput
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