Struct aws_sdk_iot::operation::start_on_demand_audit_task::builders::StartOnDemandAuditTaskInputBuilder
source · #[non_exhaustive]pub struct StartOnDemandAuditTaskInputBuilder { /* private fields */ }
Expand description
A builder for StartOnDemandAuditTaskInput
.
Implementations§
source§impl StartOnDemandAuditTaskInputBuilder
impl StartOnDemandAuditTaskInputBuilder
sourcepub fn target_check_names(self, input: impl Into<String>) -> Self
pub fn target_check_names(self, input: impl Into<String>) -> Self
Appends an item to target_check_names
.
To override the contents of this collection use set_target_check_names
.
Which checks are performed during the audit. The checks you specify must be enabled for your account or an exception occurs. Use DescribeAccountAuditConfiguration
to see the list of all checks, including those that are enabled or UpdateAccountAuditConfiguration
to select which checks are enabled.
sourcepub fn set_target_check_names(self, input: Option<Vec<String>>) -> Self
pub fn set_target_check_names(self, input: Option<Vec<String>>) -> Self
Which checks are performed during the audit. The checks you specify must be enabled for your account or an exception occurs. Use DescribeAccountAuditConfiguration
to see the list of all checks, including those that are enabled or UpdateAccountAuditConfiguration
to select which checks are enabled.
sourcepub fn get_target_check_names(&self) -> &Option<Vec<String>>
pub fn get_target_check_names(&self) -> &Option<Vec<String>>
Which checks are performed during the audit. The checks you specify must be enabled for your account or an exception occurs. Use DescribeAccountAuditConfiguration
to see the list of all checks, including those that are enabled or UpdateAccountAuditConfiguration
to select which checks are enabled.
sourcepub fn build(self) -> Result<StartOnDemandAuditTaskInput, BuildError>
pub fn build(self) -> Result<StartOnDemandAuditTaskInput, BuildError>
Consumes the builder and constructs a StartOnDemandAuditTaskInput
.
source§impl StartOnDemandAuditTaskInputBuilder
impl StartOnDemandAuditTaskInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<StartOnDemandAuditTaskOutput, SdkError<StartOnDemandAuditTaskError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<StartOnDemandAuditTaskOutput, SdkError<StartOnDemandAuditTaskError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for StartOnDemandAuditTaskInputBuilder
impl Clone for StartOnDemandAuditTaskInputBuilder
source§fn clone(&self) -> StartOnDemandAuditTaskInputBuilder
fn clone(&self) -> StartOnDemandAuditTaskInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for StartOnDemandAuditTaskInputBuilder
impl Default for StartOnDemandAuditTaskInputBuilder
source§fn default() -> StartOnDemandAuditTaskInputBuilder
fn default() -> StartOnDemandAuditTaskInputBuilder
source§impl PartialEq for StartOnDemandAuditTaskInputBuilder
impl PartialEq for StartOnDemandAuditTaskInputBuilder
source§fn eq(&self, other: &StartOnDemandAuditTaskInputBuilder) -> bool
fn eq(&self, other: &StartOnDemandAuditTaskInputBuilder) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for StartOnDemandAuditTaskInputBuilder
Auto Trait Implementations§
impl Freeze for StartOnDemandAuditTaskInputBuilder
impl RefUnwindSafe for StartOnDemandAuditTaskInputBuilder
impl Send for StartOnDemandAuditTaskInputBuilder
impl Sync for StartOnDemandAuditTaskInputBuilder
impl Unpin for StartOnDemandAuditTaskInputBuilder
impl UnwindSafe for StartOnDemandAuditTaskInputBuilder
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