pub struct DeleteCustomActionTypeInput {
pub category: String,
pub provider: String,
pub version: String,
}
Expand description
Represents the input of a DeleteCustomActionType
operation. The custom action will be marked as deleted.
Fields§
§category: String
The category of the custom action that you want to delete, such as source or deploy.
provider: String
The provider of the service used in the custom action, such as AWS CodeDeploy.
version: String
The version of the custom action to delete.
Trait Implementations§
Source§impl Clone for DeleteCustomActionTypeInput
impl Clone for DeleteCustomActionTypeInput
Source§fn clone(&self) -> DeleteCustomActionTypeInput
fn clone(&self) -> DeleteCustomActionTypeInput
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 DeleteCustomActionTypeInput
impl Debug for DeleteCustomActionTypeInput
Source§impl Default for DeleteCustomActionTypeInput
impl Default for DeleteCustomActionTypeInput
Source§fn default() -> DeleteCustomActionTypeInput
fn default() -> DeleteCustomActionTypeInput
Returns the “default value” for a type. Read more
impl StructuralPartialEq for DeleteCustomActionTypeInput
Auto Trait Implementations§
impl Freeze for DeleteCustomActionTypeInput
impl RefUnwindSafe for DeleteCustomActionTypeInput
impl Send for DeleteCustomActionTypeInput
impl Sync for DeleteCustomActionTypeInput
impl Unpin for DeleteCustomActionTypeInput
impl UnwindSafe for DeleteCustomActionTypeInput
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