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.
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.
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.
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 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