#[non_exhaustive]pub struct RuleTypeSettingsBuilder { /* private fields */ }
Expand description
A builder for RuleTypeSettings
.
Implementations§
source§impl RuleTypeSettingsBuilder
impl RuleTypeSettingsBuilder
sourcepub fn third_party_configuration_url(self, input: impl Into<String>) -> Self
pub fn third_party_configuration_url(self, input: impl Into<String>) -> Self
The URL of a sign-up page where users can sign up for an external service and perform initial configuration of the action provided by that service.
sourcepub fn set_third_party_configuration_url(self, input: Option<String>) -> Self
pub fn set_third_party_configuration_url(self, input: Option<String>) -> Self
The URL of a sign-up page where users can sign up for an external service and perform initial configuration of the action provided by that service.
sourcepub fn get_third_party_configuration_url(&self) -> &Option<String>
pub fn get_third_party_configuration_url(&self) -> &Option<String>
The URL of a sign-up page where users can sign up for an external service and perform initial configuration of the action provided by that service.
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 the configuration page for a CodeDeploy deployment group. 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 the configuration page for a CodeDeploy deployment group. 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 the configuration page for a CodeDeploy deployment group. 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 URL returned to the CodePipeline console that contains a link to the top-level landing page for the external system, such as the console page for CodeDeploy. This link is shown on the pipeline view page in the CodePipeline console and provides a link to the execution entity of the external action.
sourcepub fn set_execution_url_template(self, input: Option<String>) -> Self
pub fn set_execution_url_template(self, input: Option<String>) -> Self
The URL returned to the CodePipeline console that contains a link to the top-level landing page for the external system, such as the console page for CodeDeploy. This link is shown on the pipeline view page in the CodePipeline console and provides a link to the execution entity of the external action.
sourcepub fn get_execution_url_template(&self) -> &Option<String>
pub fn get_execution_url_template(&self) -> &Option<String>
The URL returned to the CodePipeline console that contains a link to the top-level landing page for the external system, such as the console page for CodeDeploy. This link is shown on the pipeline view page in the CodePipeline console and provides a link to the execution entity of the external action.
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) -> RuleTypeSettings
pub fn build(self) -> RuleTypeSettings
Consumes the builder and constructs a RuleTypeSettings
.
Trait Implementations§
source§impl Clone for RuleTypeSettingsBuilder
impl Clone for RuleTypeSettingsBuilder
source§fn clone(&self) -> RuleTypeSettingsBuilder
fn clone(&self) -> RuleTypeSettingsBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for RuleTypeSettingsBuilder
impl Debug for RuleTypeSettingsBuilder
source§impl Default for RuleTypeSettingsBuilder
impl Default for RuleTypeSettingsBuilder
source§fn default() -> RuleTypeSettingsBuilder
fn default() -> RuleTypeSettingsBuilder
source§impl PartialEq for RuleTypeSettingsBuilder
impl PartialEq for RuleTypeSettingsBuilder
impl StructuralPartialEq for RuleTypeSettingsBuilder
Auto Trait Implementations§
impl Freeze for RuleTypeSettingsBuilder
impl RefUnwindSafe for RuleTypeSettingsBuilder
impl Send for RuleTypeSettingsBuilder
impl Sync for RuleTypeSettingsBuilder
impl Unpin for RuleTypeSettingsBuilder
impl UnwindSafe for RuleTypeSettingsBuilder
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