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.
This field is required.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 get_id(&self) -> &Option<ActionTypeId>
pub fn get_id(&self) -> &Option<ActionTypeId>
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 get_settings(&self) -> &Option<ActionTypeSettings>
pub fn get_settings(&self) -> &Option<ActionTypeSettings>
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 get_action_configuration_properties(
&self
) -> &Option<Vec<ActionConfigurationProperty>>
pub fn get_action_configuration_properties( &self ) -> &Option<Vec<ActionConfigurationProperty>>
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.
This field is required.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 get_input_artifact_details(&self) -> &Option<ArtifactDetails>
pub fn get_input_artifact_details(&self) -> &Option<ArtifactDetails>
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.
This field is required.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 get_output_artifact_details(&self) -> &Option<ArtifactDetails>
pub fn get_output_artifact_details(&self) -> &Option<ArtifactDetails>
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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
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
source§impl PartialEq for ActionTypeBuilder
impl PartialEq for ActionTypeBuilder
source§fn eq(&self, other: &ActionTypeBuilder) -> bool
fn eq(&self, other: &ActionTypeBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.