Struct aws_sdk_codepipeline::types::builders::ActionStateBuilder
source · #[non_exhaustive]pub struct ActionStateBuilder { /* private fields */ }
Expand description
A builder for ActionState
.
Implementations§
source§impl ActionStateBuilder
impl ActionStateBuilder
sourcepub fn action_name(self, input: impl Into<String>) -> Self
pub fn action_name(self, input: impl Into<String>) -> Self
The name of the action.
sourcepub fn set_action_name(self, input: Option<String>) -> Self
pub fn set_action_name(self, input: Option<String>) -> Self
The name of the action.
sourcepub fn get_action_name(&self) -> &Option<String>
pub fn get_action_name(&self) -> &Option<String>
The name of the action.
sourcepub fn current_revision(self, input: ActionRevision) -> Self
pub fn current_revision(self, input: ActionRevision) -> Self
Represents information about the version (or revision) of an action.
sourcepub fn set_current_revision(self, input: Option<ActionRevision>) -> Self
pub fn set_current_revision(self, input: Option<ActionRevision>) -> Self
Represents information about the version (or revision) of an action.
sourcepub fn get_current_revision(&self) -> &Option<ActionRevision>
pub fn get_current_revision(&self) -> &Option<ActionRevision>
Represents information about the version (or revision) of an action.
sourcepub fn latest_execution(self, input: ActionExecution) -> Self
pub fn latest_execution(self, input: ActionExecution) -> Self
Represents information about the run of an action.
sourcepub fn set_latest_execution(self, input: Option<ActionExecution>) -> Self
pub fn set_latest_execution(self, input: Option<ActionExecution>) -> Self
Represents information about the run of an action.
sourcepub fn get_latest_execution(&self) -> &Option<ActionExecution>
pub fn get_latest_execution(&self) -> &Option<ActionExecution>
Represents information about the run of an action.
sourcepub fn entity_url(self, input: impl Into<String>) -> Self
pub fn entity_url(self, input: impl Into<String>) -> Self
A URL link for more information about the state of the action, such as a deployment group details page.
sourcepub fn set_entity_url(self, input: Option<String>) -> Self
pub fn set_entity_url(self, input: Option<String>) -> Self
A URL link for more information about the state of the action, such as a deployment group details page.
sourcepub fn get_entity_url(&self) -> &Option<String>
pub fn get_entity_url(&self) -> &Option<String>
A URL link for more information about the state of the action, such as a deployment group details page.
sourcepub fn revision_url(self, input: impl Into<String>) -> Self
pub fn revision_url(self, input: impl Into<String>) -> Self
A URL link for more information about the revision, such as a commit details page.
sourcepub fn set_revision_url(self, input: Option<String>) -> Self
pub fn set_revision_url(self, input: Option<String>) -> Self
A URL link for more information about the revision, such as a commit details page.
sourcepub fn get_revision_url(&self) -> &Option<String>
pub fn get_revision_url(&self) -> &Option<String>
A URL link for more information about the revision, such as a commit details page.
sourcepub fn build(self) -> ActionState
pub fn build(self) -> ActionState
Consumes the builder and constructs a ActionState
.
Trait Implementations§
source§impl Clone for ActionStateBuilder
impl Clone for ActionStateBuilder
source§fn clone(&self) -> ActionStateBuilder
fn clone(&self) -> ActionStateBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ActionStateBuilder
impl Debug for ActionStateBuilder
source§impl Default for ActionStateBuilder
impl Default for ActionStateBuilder
source§fn default() -> ActionStateBuilder
fn default() -> ActionStateBuilder
source§impl PartialEq for ActionStateBuilder
impl PartialEq for ActionStateBuilder
impl StructuralPartialEq for ActionStateBuilder
Auto Trait Implementations§
impl Freeze for ActionStateBuilder
impl RefUnwindSafe for ActionStateBuilder
impl Send for ActionStateBuilder
impl Sync for ActionStateBuilder
impl Unpin for ActionStateBuilder
impl UnwindSafe for ActionStateBuilder
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