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>,
}
Expand description
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§
Source§impl Clone for ActionExecutionInput
impl Clone for ActionExecutionInput
Source§fn clone(&self) -> ActionExecutionInput
fn clone(&self) -> ActionExecutionInput
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ActionExecutionInput
impl Debug for ActionExecutionInput
Source§impl Default for ActionExecutionInput
impl Default for ActionExecutionInput
Source§fn default() -> ActionExecutionInput
fn default() -> ActionExecutionInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ActionExecutionInput
impl<'de> Deserialize<'de> for ActionExecutionInput
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ActionExecutionInput
impl PartialEq for ActionExecutionInput
impl StructuralPartialEq for ActionExecutionInput
Auto Trait Implementations§
impl Freeze for ActionExecutionInput
impl RefUnwindSafe for ActionExecutionInput
impl Send for ActionExecutionInput
impl Sync for ActionExecutionInput
impl Unpin for ActionExecutionInput
impl UnwindSafe for ActionExecutionInput
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more