[][src]Struct rusoto_codepipeline::DeleteCustomActionTypeInput

pub struct DeleteCustomActionTypeInput {
    pub category: String,
    pub provider: String,
    pub version: String,
}

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

impl Clone for DeleteCustomActionTypeInput[src]

impl Debug for DeleteCustomActionTypeInput[src]

impl Default for DeleteCustomActionTypeInput[src]

impl PartialEq<DeleteCustomActionTypeInput> for DeleteCustomActionTypeInput[src]

impl Serialize for DeleteCustomActionTypeInput[src]

impl StructuralPartialEq for DeleteCustomActionTypeInput[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.