Struct rusoto_codepipeline::ActionDeclaration[][src]

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 Default for ActionDeclaration
[src]

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

impl Debug for ActionDeclaration
[src]

Formats the value using the given formatter. Read more

impl Clone for ActionDeclaration
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ActionDeclaration
[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