[][src]Struct rusoto_codepipeline::CreateCustomActionTypeInput

pub struct CreateCustomActionTypeInput {
    pub category: String,
    pub configuration_properties: Option<Vec<ActionConfigurationProperty>>,
    pub input_artifact_details: ArtifactDetails,
    pub output_artifact_details: ArtifactDetails,
    pub provider: String,
    pub settings: Option<ActionTypeSettings>,
    pub tags: Option<Vec<Tag>>,
    pub version: String,
}

Represents the input of a CreateCustomActionType operation.

Fields

category: String

The category of the custom action, such as a build action or a test action.

Although Source and Approval are listed as valid values, they are not currently functional. These values are reserved for future use.

configuration_properties: Option<Vec<ActionConfigurationProperty>>

The configuration properties for the custom action.

You can refer to a name in the configuration properties of the custom action within the URL templates by following the format of {Config:name}, as long as the configuration property is both required and not secret. For more information, see Create a Custom Action for a Pipeline.

input_artifact_details: ArtifactDetails

The details of the input artifact for the action, such as its commit ID.

output_artifact_details: ArtifactDetails

The details of the output artifact of the action, such as its commit ID.

provider: String

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

settings: Option<ActionTypeSettings>

URLs that provide users information about this custom action.

tags: Option<Vec<Tag>>

The tags for the custom action.

version: String

The version identifier of the custom action.

Trait Implementations

impl Clone for CreateCustomActionTypeInput[src]

impl Debug for CreateCustomActionTypeInput[src]

impl Default for CreateCustomActionTypeInput[src]

impl PartialEq<CreateCustomActionTypeInput> for CreateCustomActionTypeInput[src]

impl Serialize for CreateCustomActionTypeInput[src]

impl StructuralPartialEq for CreateCustomActionTypeInput[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.