Struct aws_sdk_codepipeline::types::builders::ActionTypeBuilder
source · #[non_exhaustive]pub struct ActionTypeBuilder { /* private fields */ }
Expand description
A builder for ActionType
.
Implementations§
source§impl ActionTypeBuilder
impl ActionTypeBuilder
sourcepub fn id(self, input: ActionTypeId) -> Self
pub fn id(self, input: ActionTypeId) -> Self
Represents information about an action type.
sourcepub fn set_id(self, input: Option<ActionTypeId>) -> Self
pub fn set_id(self, input: Option<ActionTypeId>) -> Self
Represents information about an action type.
sourcepub fn settings(self, input: ActionTypeSettings) -> Self
pub fn settings(self, input: ActionTypeSettings) -> Self
The settings for the action type.
sourcepub fn set_settings(self, input: Option<ActionTypeSettings>) -> Self
pub fn set_settings(self, input: Option<ActionTypeSettings>) -> Self
The settings for the action type.
sourcepub fn action_configuration_properties(
self,
input: ActionConfigurationProperty
) -> Self
pub fn action_configuration_properties( self, input: ActionConfigurationProperty ) -> Self
Appends an item to action_configuration_properties
.
To override the contents of this collection use set_action_configuration_properties
.
The configuration properties for the action type.
sourcepub fn set_action_configuration_properties(
self,
input: Option<Vec<ActionConfigurationProperty>>
) -> Self
pub fn set_action_configuration_properties( self, input: Option<Vec<ActionConfigurationProperty>> ) -> Self
The configuration properties for the action type.
sourcepub fn input_artifact_details(self, input: ArtifactDetails) -> Self
pub fn input_artifact_details(self, input: ArtifactDetails) -> Self
The details of the input artifact for the action, such as its commit ID.
sourcepub fn set_input_artifact_details(self, input: Option<ArtifactDetails>) -> Self
pub fn set_input_artifact_details(self, input: Option<ArtifactDetails>) -> Self
The details of the input artifact for the action, such as its commit ID.
sourcepub fn output_artifact_details(self, input: ArtifactDetails) -> Self
pub fn output_artifact_details(self, input: ArtifactDetails) -> Self
The details of the output artifact of the action, such as its commit ID.
sourcepub fn set_output_artifact_details(self, input: Option<ArtifactDetails>) -> Self
pub fn set_output_artifact_details(self, input: Option<ArtifactDetails>) -> Self
The details of the output artifact of the action, such as its commit ID.
sourcepub fn build(self) -> ActionType
pub fn build(self) -> ActionType
Consumes the builder and constructs a ActionType
.
Trait Implementations§
source§impl Clone for ActionTypeBuilder
impl Clone for ActionTypeBuilder
source§fn clone(&self) -> ActionTypeBuilder
fn clone(&self) -> ActionTypeBuilder
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 ActionTypeBuilder
impl Debug for ActionTypeBuilder
source§impl Default for ActionTypeBuilder
impl Default for ActionTypeBuilder
source§fn default() -> ActionTypeBuilder
fn default() -> ActionTypeBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<ActionTypeBuilder> for ActionTypeBuilder
impl PartialEq<ActionTypeBuilder> for ActionTypeBuilder
source§fn eq(&self, other: &ActionTypeBuilder) -> bool
fn eq(&self, other: &ActionTypeBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.