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

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

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.

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

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

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<T> for T

type Output = T

Should always be Self