Struct aws_sdk_codepipeline::types::RuleExecutionInput
source · #[non_exhaustive]pub struct RuleExecutionInput {
pub rule_type_id: Option<RuleTypeId>,
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>>,
}
Expand description
Input information used for a rule 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.rule_type_id: Option<RuleTypeId>
The ID for the rule type, which is made up of the combined values for category, owner, provider, and version.
configuration: Option<HashMap<String, String>>
Configuration data for a rule execution, such as the resolved values for that run.
resolved_configuration: Option<HashMap<String, String>>
Configuration data for a rule 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 rule. This is assumed through the roleArn for the pipeline.
region: Option<String>
The Amazon Web Services Region for the rule, such as us-east-1.
input_artifacts: Option<Vec<ArtifactDetail>>
Details of input artifacts of the rule that correspond to the rule execution.
Implementations§
source§impl RuleExecutionInput
impl RuleExecutionInput
sourcepub fn rule_type_id(&self) -> Option<&RuleTypeId>
pub fn rule_type_id(&self) -> Option<&RuleTypeId>
The ID for the rule type, which is made up of the combined values for category, owner, provider, and version.
sourcepub fn configuration(&self) -> Option<&HashMap<String, String>>
pub fn configuration(&self) -> Option<&HashMap<String, String>>
Configuration data for a rule execution, such as the resolved values for that run.
sourcepub fn resolved_configuration(&self) -> Option<&HashMap<String, String>>
pub fn resolved_configuration(&self) -> Option<&HashMap<String, String>>
Configuration data for a rule 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 rule. 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 rule, such as us-east-1.
sourcepub fn input_artifacts(&self) -> &[ArtifactDetail]
pub fn input_artifacts(&self) -> &[ArtifactDetail]
Details of input artifacts of the rule that correspond to the rule 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 RuleExecutionInput
impl RuleExecutionInput
sourcepub fn builder() -> RuleExecutionInputBuilder
pub fn builder() -> RuleExecutionInputBuilder
Creates a new builder-style object to manufacture RuleExecutionInput
.
Trait Implementations§
source§impl Clone for RuleExecutionInput
impl Clone for RuleExecutionInput
source§fn clone(&self) -> RuleExecutionInput
fn clone(&self) -> RuleExecutionInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for RuleExecutionInput
impl Debug for RuleExecutionInput
source§impl PartialEq for RuleExecutionInput
impl PartialEq for RuleExecutionInput
impl StructuralPartialEq for RuleExecutionInput
Auto Trait Implementations§
impl Freeze for RuleExecutionInput
impl RefUnwindSafe for RuleExecutionInput
impl Send for RuleExecutionInput
impl Sync for RuleExecutionInput
impl Unpin for RuleExecutionInput
impl UnwindSafe for RuleExecutionInput
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default 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