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
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more