pub struct RegisterApplicationRevisionInput {
pub application_name: String,
pub description: Option<String>,
pub revision: RevisionLocation,
}Expand description
Represents the input of a RegisterApplicationRevision operation.
Fields§
§application_name: StringThe name of an AWS CodeDeploy application associated with the IAM user or AWS account.
description: Option<String>A comment about the revision.
revision: RevisionLocationInformation about the application revision to register, including type and location.
Trait Implementations§
Source§impl Clone for RegisterApplicationRevisionInput
impl Clone for RegisterApplicationRevisionInput
Source§fn clone(&self) -> RegisterApplicationRevisionInput
fn clone(&self) -> RegisterApplicationRevisionInput
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 RegisterApplicationRevisionInput
impl Default for RegisterApplicationRevisionInput
Source§fn default() -> RegisterApplicationRevisionInput
fn default() -> RegisterApplicationRevisionInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for RegisterApplicationRevisionInput
impl PartialEq for RegisterApplicationRevisionInput
Source§fn eq(&self, other: &RegisterApplicationRevisionInput) -> bool
fn eq(&self, other: &RegisterApplicationRevisionInput) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RegisterApplicationRevisionInput
Auto Trait Implementations§
impl Freeze for RegisterApplicationRevisionInput
impl RefUnwindSafe for RegisterApplicationRevisionInput
impl Send for RegisterApplicationRevisionInput
impl Sync for RegisterApplicationRevisionInput
impl Unpin for RegisterApplicationRevisionInput
impl UnsafeUnpin for RegisterApplicationRevisionInput
impl UnwindSafe for RegisterApplicationRevisionInput
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