Struct aws_sdk_codepipeline::types::builders::ActionTypeUrlsBuilder
source · #[non_exhaustive]pub struct ActionTypeUrlsBuilder { /* private fields */ }
Expand description
A builder for ActionTypeUrls
.
Implementations§
source§impl ActionTypeUrlsBuilder
impl ActionTypeUrlsBuilder
sourcepub fn configuration_url(self, input: impl Into<String>) -> Self
pub fn configuration_url(self, input: impl Into<String>) -> Self
The URL returned to the CodePipeline console that contains a link to the page where customers can configure the external action.
sourcepub fn set_configuration_url(self, input: Option<String>) -> Self
pub fn set_configuration_url(self, input: Option<String>) -> Self
The URL returned to the CodePipeline console that contains a link to the page where customers can configure the external action.
sourcepub fn get_configuration_url(&self) -> &Option<String>
pub fn get_configuration_url(&self) -> &Option<String>
The URL returned to the CodePipeline console that contains a link to the page where customers can configure the external action.
sourcepub fn entity_url_template(self, input: impl Into<String>) -> Self
pub fn entity_url_template(self, input: impl Into<String>) -> Self
The URL returned to the CodePipeline console that provides a deep link to the resources of the external system, such as a status page. This link is provided as part of the action display in the pipeline.
sourcepub fn set_entity_url_template(self, input: Option<String>) -> Self
pub fn set_entity_url_template(self, input: Option<String>) -> Self
The URL returned to the CodePipeline console that provides a deep link to the resources of the external system, such as a status page. This link is provided as part of the action display in the pipeline.
sourcepub fn get_entity_url_template(&self) -> &Option<String>
pub fn get_entity_url_template(&self) -> &Option<String>
The URL returned to the CodePipeline console that provides a deep link to the resources of the external system, such as a status page. This link is provided as part of the action display in the pipeline.
sourcepub fn execution_url_template(self, input: impl Into<String>) -> Self
pub fn execution_url_template(self, input: impl Into<String>) -> Self
The link to an execution page for the action type in progress. For example, for a CodeDeploy action, this link is shown on the pipeline view page in the CodePipeline console, and it links to a CodeDeploy status page.
sourcepub fn set_execution_url_template(self, input: Option<String>) -> Self
pub fn set_execution_url_template(self, input: Option<String>) -> Self
The link to an execution page for the action type in progress. For example, for a CodeDeploy action, this link is shown on the pipeline view page in the CodePipeline console, and it links to a CodeDeploy status page.
sourcepub fn get_execution_url_template(&self) -> &Option<String>
pub fn get_execution_url_template(&self) -> &Option<String>
The link to an execution page for the action type in progress. For example, for a CodeDeploy action, this link is shown on the pipeline view page in the CodePipeline console, and it links to a CodeDeploy status page.
sourcepub fn revision_url_template(self, input: impl Into<String>) -> Self
pub fn revision_url_template(self, input: impl Into<String>) -> Self
The URL returned to the CodePipeline console that contains a link to the page where customers can update or change the configuration of the external action.
sourcepub fn set_revision_url_template(self, input: Option<String>) -> Self
pub fn set_revision_url_template(self, input: Option<String>) -> Self
The URL returned to the CodePipeline console that contains a link to the page where customers can update or change the configuration of the external action.
sourcepub fn get_revision_url_template(&self) -> &Option<String>
pub fn get_revision_url_template(&self) -> &Option<String>
The URL returned to the CodePipeline console that contains a link to the page where customers can update or change the configuration of the external action.
sourcepub fn build(self) -> ActionTypeUrls
pub fn build(self) -> ActionTypeUrls
Consumes the builder and constructs a ActionTypeUrls
.
Trait Implementations§
source§impl Clone for ActionTypeUrlsBuilder
impl Clone for ActionTypeUrlsBuilder
source§fn clone(&self) -> ActionTypeUrlsBuilder
fn clone(&self) -> ActionTypeUrlsBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ActionTypeUrlsBuilder
impl Debug for ActionTypeUrlsBuilder
source§impl Default for ActionTypeUrlsBuilder
impl Default for ActionTypeUrlsBuilder
source§fn default() -> ActionTypeUrlsBuilder
fn default() -> ActionTypeUrlsBuilder
source§impl PartialEq for ActionTypeUrlsBuilder
impl PartialEq for ActionTypeUrlsBuilder
impl StructuralPartialEq for ActionTypeUrlsBuilder
Auto Trait Implementations§
impl Freeze for ActionTypeUrlsBuilder
impl RefUnwindSafe for ActionTypeUrlsBuilder
impl Send for ActionTypeUrlsBuilder
impl Sync for ActionTypeUrlsBuilder
impl Unpin for ActionTypeUrlsBuilder
impl UnwindSafe for ActionTypeUrlsBuilder
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