[][src]Struct rusoto_codepipeline::ActionDeclaration

pub struct ActionDeclaration {
    pub action_type_id: ActionTypeId,
    pub configuration: Option<HashMap<String, String>>,
    pub input_artifacts: Option<Vec<InputArtifact>>,
    pub name: String,
    pub output_artifacts: Option<Vec<OutputArtifact>>,
    pub role_arn: Option<String>,
    pub run_order: Option<i64>,
}

Represents information about an action declaration.

Fields

The configuration information for the action type.

The action declaration's configuration.

The name or ID of the artifact consumed by the action, such as a test or build artifact.

The action declaration's name.

The name or ID of the result of the action declaration, such as a test or build artifact.

The ARN of the IAM service role that will perform the declared action. This is assumed through the roleArn for the pipeline.

The order in which actions are run.

Trait Implementations

impl Clone for ActionDeclaration
[src]

Performs copy-assignment from source. Read more

impl Default for ActionDeclaration
[src]

impl PartialEq<ActionDeclaration> for ActionDeclaration
[src]

impl Debug for ActionDeclaration
[src]

impl Serialize for ActionDeclaration
[src]

impl<'de> Deserialize<'de> for ActionDeclaration
[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T> Same for T

Should always be Self