Struct aws_sdk_securityhub::types::builders::ActionTargetBuilder
source · #[non_exhaustive]pub struct ActionTargetBuilder { /* private fields */ }
Expand description
A builder for ActionTarget
.
Implementations§
source§impl ActionTargetBuilder
impl ActionTargetBuilder
sourcepub fn action_target_arn(self, input: impl Into<String>) -> Self
pub fn action_target_arn(self, input: impl Into<String>) -> Self
The ARN for the target action.
This field is required.sourcepub fn set_action_target_arn(self, input: Option<String>) -> Self
pub fn set_action_target_arn(self, input: Option<String>) -> Self
The ARN for the target action.
sourcepub fn get_action_target_arn(&self) -> &Option<String>
pub fn get_action_target_arn(&self) -> &Option<String>
The ARN for the target action.
sourcepub fn name(self, input: impl Into<String>) -> Self
pub fn name(self, input: impl Into<String>) -> Self
The name of the action target.
This field is required.sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
The description of the target action.
This field is required.sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
The description of the target action.
sourcepub fn get_description(&self) -> &Option<String>
pub fn get_description(&self) -> &Option<String>
The description of the target action.
sourcepub fn build(self) -> ActionTarget
pub fn build(self) -> ActionTarget
Consumes the builder and constructs a ActionTarget
.
Trait Implementations§
source§impl Clone for ActionTargetBuilder
impl Clone for ActionTargetBuilder
source§fn clone(&self) -> ActionTargetBuilder
fn clone(&self) -> ActionTargetBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ActionTargetBuilder
impl Debug for ActionTargetBuilder
source§impl Default for ActionTargetBuilder
impl Default for ActionTargetBuilder
source§fn default() -> ActionTargetBuilder
fn default() -> ActionTargetBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for ActionTargetBuilder
impl PartialEq for ActionTargetBuilder
source§fn eq(&self, other: &ActionTargetBuilder) -> bool
fn eq(&self, other: &ActionTargetBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ActionTargetBuilder
Auto Trait Implementations§
impl Freeze for ActionTargetBuilder
impl RefUnwindSafe for ActionTargetBuilder
impl Send for ActionTargetBuilder
impl Sync for ActionTargetBuilder
impl Unpin for ActionTargetBuilder
impl UnwindSafe for ActionTargetBuilder
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
Mutably borrows from an owned value. Read more
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.