Struct aws_sdk_codepipeline::model::action_state::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for ActionState
.
Implementations§
source§impl Builder
impl Builder
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 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 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 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 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 build(self) -> ActionState
pub fn build(self) -> ActionState
Consumes the builder and constructs a ActionState
.