Struct rusoto_codepipeline::DeleteCustomActionTypeInput[][src]

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

The category of the custom action that you want to delete, such as source or deploy.

The provider of the service used in the custom action, such as AWS CodeDeploy.

The version of the custom action to delete.

Trait Implementations

impl Default for DeleteCustomActionTypeInput
[src]

Returns the "default value" for a type. Read more

impl Debug for DeleteCustomActionTypeInput
[src]

Formats the value using the given formatter. Read more

impl Clone for DeleteCustomActionTypeInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for DeleteCustomActionTypeInput
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations