[][src]Struct rusoto_codepipeline::ActionExecutionInput

pub struct ActionExecutionInput {
    pub action_type_id: Option<ActionTypeId>,
    pub configuration: Option<HashMap<String, String>>,
    pub input_artifacts: Option<Vec<ArtifactDetail>>,
    pub namespace: Option<String>,
    pub region: Option<String>,
    pub resolved_configuration: Option<HashMap<String, String>>,
    pub role_arn: Option<String>,
}

Input information used for an action execution.

Fields

action_type_id: Option<ActionTypeId>configuration: Option<HashMap<String, String>>

Configuration data for an action execution.

input_artifacts: Option<Vec<ArtifactDetail>>

Details of input artifacts of the action that correspond to the action execution.

namespace: Option<String>

The variable namespace associated with the action. All variables produced as output by this action fall under this namespace.

region: Option<String>

The AWS Region for the action, such as us-east-1.

resolved_configuration: Option<HashMap<String, String>>

Configuration data for an action execution with all variable references replaced with their real values for the execution.

role_arn: Option<String>

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

Trait Implementations

impl Clone for ActionExecutionInput[src]

impl Debug for ActionExecutionInput[src]

impl Default for ActionExecutionInput[src]

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

impl PartialEq<ActionExecutionInput> for ActionExecutionInput[src]

impl StructuralPartialEq for ActionExecutionInput[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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.