[][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 region: Option<String>,
    pub role_arn: Option<String>,
    pub run_order: Option<i64>,
}

Represents information about an action declaration.

Fields

action_type_id: ActionTypeId

The configuration information for the action type.

configuration: Option<HashMap<String, String>>

The action declaration's configuration.

input_artifacts: Option<Vec<InputArtifact>>

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

name: String

The action declaration's name.

output_artifacts: Option<Vec<OutputArtifact>>

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

region: Option<String>

The action declaration's AWS Region, such as us-east-1.

role_arn: Option<String>

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

run_order: Option<i64>

The order in which actions are run.

Trait Implementations

impl PartialEq<ActionDeclaration> for ActionDeclaration[src]

impl Default for ActionDeclaration[src]

impl Clone for ActionDeclaration[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for ActionDeclaration[src]

impl Serialize for ActionDeclaration[src]

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

Auto Trait Implementations

impl Send for ActionDeclaration

impl Sync for ActionDeclaration

Blanket Implementations

impl<T> From for T[src]

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

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

type Owned = T

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

type Error = !

🔬 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> BorrowMut for T where
    T: ?Sized
[src]

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

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

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

The type returned in the event of a conversion error.

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

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

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self