Struct aws_sdk_codepipeline::model::action_execution_input::Builder
source · [−]pub struct Builder { /* private fields */ }
Expand description
A builder for ActionExecutionInput
.
Implementations
sourceimpl Builder
impl Builder
sourcepub fn action_type_id(self, input: ActionTypeId) -> Self
pub fn action_type_id(self, input: ActionTypeId) -> Self
Represents information about an action type.
sourcepub fn set_action_type_id(self, input: Option<ActionTypeId>) -> Self
pub fn set_action_type_id(self, input: Option<ActionTypeId>) -> Self
Represents information about an action type.
sourcepub fn configuration(self, k: impl Into<String>, v: impl Into<String>) -> Self
pub fn configuration(self, k: impl Into<String>, v: impl Into<String>) -> Self
Adds a key-value pair to configuration
.
To override the contents of this collection use set_configuration
.
Configuration data for an action execution.
sourcepub fn set_configuration(self, input: Option<HashMap<String, String>>) -> Self
pub fn set_configuration(self, input: Option<HashMap<String, String>>) -> Self
Configuration data for an action execution.
sourcepub fn resolved_configuration(
self,
k: impl Into<String>,
v: impl Into<String>
) -> Self
pub fn resolved_configuration(
self,
k: impl Into<String>,
v: impl Into<String>
) -> Self
Adds a key-value pair to resolved_configuration
.
To override the contents of this collection use set_resolved_configuration
.
Configuration data for an action execution with all variable references replaced with their real values for the execution.
sourcepub fn set_resolved_configuration(
self,
input: Option<HashMap<String, String>>
) -> Self
pub fn set_resolved_configuration(
self,
input: Option<HashMap<String, String>>
) -> Self
Configuration data for an action execution with all variable references replaced with their real values for the execution.
sourcepub fn role_arn(self, input: impl Into<String>) -> Self
pub fn role_arn(self, input: impl Into<String>) -> Self
The ARN of the IAM service role that performs the declared action. This is assumed through the roleArn for the pipeline.
sourcepub fn set_role_arn(self, input: Option<String>) -> Self
pub fn set_role_arn(self, input: Option<String>) -> Self
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, input: impl Into<String>) -> Self
pub fn region(self, input: impl Into<String>) -> Self
The AWS Region for the action, such as us-east-1.
sourcepub fn set_region(self, input: Option<String>) -> Self
pub fn set_region(self, input: Option<String>) -> Self
The AWS Region for the action, such as us-east-1.
sourcepub fn input_artifacts(self, input: ArtifactDetail) -> Self
pub fn input_artifacts(self, input: ArtifactDetail) -> Self
Appends an item to input_artifacts
.
To override the contents of this collection use set_input_artifacts
.
Details of input artifacts of the action that correspond to the action execution.
sourcepub fn set_input_artifacts(self, input: Option<Vec<ArtifactDetail>>) -> Self
pub fn set_input_artifacts(self, input: Option<Vec<ArtifactDetail>>) -> Self
Details of input artifacts of the action that correspond to the action execution.
sourcepub fn namespace(self, input: impl Into<String>) -> Self
pub fn namespace(self, input: impl Into<String>) -> Self
The variable namespace associated with the action. All variables produced as output by this action fall under this namespace.
sourcepub fn set_namespace(self, input: Option<String>) -> Self
pub fn set_namespace(self, input: Option<String>) -> Self
The variable namespace associated with the action. All variables produced as output by this action fall under this namespace.
sourcepub fn build(self) -> ActionExecutionInput
pub fn build(self) -> ActionExecutionInput
Consumes the builder and constructs a ActionExecutionInput
.