[][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

Specifies the action type and the provider of the action.

configuration: Option<HashMap<String, String>>

The action's configuration. These are key-value pairs that specify input values for an action. For more information, see Action Structure Requirements in CodePipeline. For the list of configuration properties for the AWS CloudFormation action type in CodePipeline, see Configuration Properties Reference in the AWS CloudFormation User Guide. For template snippets with examples, see Using Parameter Override Functions with CodePipeline Pipelines in the AWS CloudFormation User Guide.

The values can be represented in either JSON or YAML format. For example, the JSON configuration item format is as follows:

JSON:

"Configuration" : { Key : Value },

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

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, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for 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> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<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> Same<T> for T

type Output = T

Should always be Self