Struct aws_sdk_securityhub::operation::create_action_target::builders::CreateActionTargetInputBuilder
source · #[non_exhaustive]pub struct CreateActionTargetInputBuilder { /* private fields */ }
Expand description
A builder for CreateActionTargetInput
.
Implementations§
source§impl CreateActionTargetInputBuilder
impl CreateActionTargetInputBuilder
sourcepub fn name(self, input: impl Into<String>) -> Self
pub fn name(self, input: impl Into<String>) -> Self
The name of the custom action target. Can contain up to 20 characters.
This field is required.sourcepub fn set_name(self, input: Option<String>) -> Self
pub fn set_name(self, input: Option<String>) -> Self
The name of the custom action target. Can contain up to 20 characters.
sourcepub fn get_name(&self) -> &Option<String>
pub fn get_name(&self) -> &Option<String>
The name of the custom action target. Can contain up to 20 characters.
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
The description for the custom action target.
This field is required.sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
The description for the custom action target.
sourcepub fn get_description(&self) -> &Option<String>
pub fn get_description(&self) -> &Option<String>
The description for the custom action target.
sourcepub fn id(self, input: impl Into<String>) -> Self
pub fn id(self, input: impl Into<String>) -> Self
The ID for the custom action target. Can contain up to 20 alphanumeric characters.
This field is required.sourcepub fn set_id(self, input: Option<String>) -> Self
pub fn set_id(self, input: Option<String>) -> Self
The ID for the custom action target. Can contain up to 20 alphanumeric characters.
sourcepub fn get_id(&self) -> &Option<String>
pub fn get_id(&self) -> &Option<String>
The ID for the custom action target. Can contain up to 20 alphanumeric characters.
sourcepub fn build(self) -> Result<CreateActionTargetInput, BuildError>
pub fn build(self) -> Result<CreateActionTargetInput, BuildError>
Consumes the builder and constructs a CreateActionTargetInput
.
source§impl CreateActionTargetInputBuilder
impl CreateActionTargetInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<CreateActionTargetOutput, SdkError<CreateActionTargetError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<CreateActionTargetOutput, SdkError<CreateActionTargetError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for CreateActionTargetInputBuilder
impl Clone for CreateActionTargetInputBuilder
source§fn clone(&self) -> CreateActionTargetInputBuilder
fn clone(&self) -> CreateActionTargetInputBuilder
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 Default for CreateActionTargetInputBuilder
impl Default for CreateActionTargetInputBuilder
source§fn default() -> CreateActionTargetInputBuilder
fn default() -> CreateActionTargetInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for CreateActionTargetInputBuilder
impl PartialEq for CreateActionTargetInputBuilder
source§fn eq(&self, other: &CreateActionTargetInputBuilder) -> bool
fn eq(&self, other: &CreateActionTargetInputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CreateActionTargetInputBuilder
Auto Trait Implementations§
impl Freeze for CreateActionTargetInputBuilder
impl RefUnwindSafe for CreateActionTargetInputBuilder
impl Send for CreateActionTargetInputBuilder
impl Sync for CreateActionTargetInputBuilder
impl Unpin for CreateActionTargetInputBuilder
impl UnwindSafe for CreateActionTargetInputBuilder
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.