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
impl StructuralPartialEq for ActionTypeBuilder
Auto Trait Implementations§
impl Freeze for ActionTypeBuilder
impl RefUnwindSafe for ActionTypeBuilder
impl Send for ActionTypeBuilder
impl Sync for ActionTypeBuilder
impl Unpin for ActionTypeBuilder
impl UnwindSafe for ActionTypeBuilder
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