#[non_exhaustive]pub struct StartOnDemandAuditTaskInput {
pub target_check_names: Option<Vec<String>>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.target_check_names: 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.
Implementations§
source§impl StartOnDemandAuditTaskInput
impl StartOnDemandAuditTaskInput
sourcepub fn target_check_names(&self) -> &[String]
pub fn target_check_names(&self) -> &[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.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .target_check_names.is_none().
source§impl StartOnDemandAuditTaskInput
impl StartOnDemandAuditTaskInput
sourcepub fn builder() -> StartOnDemandAuditTaskInputBuilder
pub fn builder() -> StartOnDemandAuditTaskInputBuilder
Creates a new builder-style object to manufacture StartOnDemandAuditTaskInput.
Trait Implementations§
source§impl Clone for StartOnDemandAuditTaskInput
impl Clone for StartOnDemandAuditTaskInput
source§fn clone(&self) -> StartOnDemandAuditTaskInput
fn clone(&self) -> StartOnDemandAuditTaskInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for StartOnDemandAuditTaskInput
impl Debug for StartOnDemandAuditTaskInput
source§impl PartialEq for StartOnDemandAuditTaskInput
impl PartialEq for StartOnDemandAuditTaskInput
source§fn eq(&self, other: &StartOnDemandAuditTaskInput) -> bool
fn eq(&self, other: &StartOnDemandAuditTaskInput) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for StartOnDemandAuditTaskInput
Auto Trait Implementations§
impl Freeze for StartOnDemandAuditTaskInput
impl RefUnwindSafe for StartOnDemandAuditTaskInput
impl Send for StartOnDemandAuditTaskInput
impl Sync for StartOnDemandAuditTaskInput
impl Unpin for StartOnDemandAuditTaskInput
impl UnwindSafe for StartOnDemandAuditTaskInput
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