Struct aws_sdk_codepipeline::types::ActionExecutionInput
source · #[non_exhaustive]pub struct ActionExecutionInput {
pub action_type_id: Option<ActionTypeId>,
pub configuration: Option<HashMap<String, String>>,
pub resolved_configuration: Option<HashMap<String, String>>,
pub role_arn: Option<String>,
pub region: Option<String>,
pub input_artifacts: Option<Vec<ArtifactDetail>>,
pub namespace: Option<String>,
}
Expand description
Input information used for an action execution.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.action_type_id: Option<ActionTypeId>
Represents information about an action type.
configuration: Option<HashMap<String, String>>
Configuration data for an action execution.
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.
region: Option<String>
The Amazon Web Services Region for the action, such as us-east-1.
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.
Implementations§
source§impl ActionExecutionInput
impl ActionExecutionInput
sourcepub fn action_type_id(&self) -> Option<&ActionTypeId>
pub fn action_type_id(&self) -> Option<&ActionTypeId>
Represents information about an action type.
sourcepub fn configuration(&self) -> Option<&HashMap<String, String>>
pub fn configuration(&self) -> Option<&HashMap<String, String>>
Configuration data for an action execution.
sourcepub fn resolved_configuration(&self) -> Option<&HashMap<String, String>>
pub fn resolved_configuration(&self) -> Option<&HashMap<String, String>>
Configuration data for an action execution with all variable references replaced with their real values for the execution.
sourcepub fn role_arn(&self) -> Option<&str>
pub fn role_arn(&self) -> Option<&str>
The ARN of the IAM service role that performs the declared action. This is assumed through the roleArn for the pipeline.
sourcepub fn region(&self) -> Option<&str>
pub fn region(&self) -> Option<&str>
The Amazon Web Services Region for the action, such as us-east-1.
sourcepub fn input_artifacts(&self) -> &[ArtifactDetail]
pub fn input_artifacts(&self) -> &[ArtifactDetail]
Details of input artifacts of the action that correspond to the action execution.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .input_artifacts.is_none()
.
source§impl ActionExecutionInput
impl ActionExecutionInput
sourcepub fn builder() -> ActionExecutionInputBuilder
pub fn builder() -> ActionExecutionInputBuilder
Creates a new builder-style object to manufacture ActionExecutionInput
.
Trait Implementations§
source§impl Clone for ActionExecutionInput
impl Clone for ActionExecutionInput
source§fn clone(&self) -> ActionExecutionInput
fn clone(&self) -> ActionExecutionInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ActionExecutionInput
impl Debug for ActionExecutionInput
source§impl PartialEq for ActionExecutionInput
impl PartialEq for ActionExecutionInput
source§fn eq(&self, other: &ActionExecutionInput) -> bool
fn eq(&self, other: &ActionExecutionInput) -> bool
self
and other
values to be equal, and is used
by ==
.