#[non_exhaustive]pub struct StartAuditMitigationActionsTaskInput { /* private fields */ }
Implementations
sourceimpl StartAuditMitigationActionsTaskInput
impl StartAuditMitigationActionsTaskInput
sourcepub async fn make_operation(
self,
_config: &Config
) -> Result<Operation<StartAuditMitigationActionsTask, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
self,
_config: &Config
) -> Result<Operation<StartAuditMitigationActionsTask, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<StartAuditMitigationActionsTask
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture StartAuditMitigationActionsTaskInput
.
sourceimpl StartAuditMitigationActionsTaskInput
impl StartAuditMitigationActionsTaskInput
sourcepub fn task_id(&self) -> Option<&str>
pub fn task_id(&self) -> Option<&str>
A unique identifier for the task. You can use this identifier to check the status of the task or to cancel it.
sourcepub fn target(&self) -> Option<&AuditMitigationActionsTaskTarget>
pub fn target(&self) -> Option<&AuditMitigationActionsTaskTarget>
Specifies the audit findings to which the mitigation actions are applied. You can apply them to a type of audit check, to all findings from an audit, or to a specific set of findings.
sourcepub fn audit_check_to_actions_mapping(
&self
) -> Option<&HashMap<String, Vec<String>>>
pub fn audit_check_to_actions_mapping(
&self
) -> Option<&HashMap<String, Vec<String>>>
For an audit check, specifies which mitigation actions to apply. Those actions must be defined in your Amazon Web Services accounts.
sourcepub fn client_request_token(&self) -> Option<&str>
pub fn client_request_token(&self) -> Option<&str>
Each audit mitigation task must have a unique client request token. If you try to start a new task with the same token as a task that already exists, an exception occurs. If you omit this value, a unique client request token is generated automatically.
Trait Implementations
sourceimpl Clone for StartAuditMitigationActionsTaskInput
impl Clone for StartAuditMitigationActionsTaskInput
sourcefn clone(&self) -> StartAuditMitigationActionsTaskInput
fn clone(&self) -> StartAuditMitigationActionsTaskInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl PartialEq<StartAuditMitigationActionsTaskInput> for StartAuditMitigationActionsTaskInput
impl PartialEq<StartAuditMitigationActionsTaskInput> for StartAuditMitigationActionsTaskInput
sourcefn eq(&self, other: &StartAuditMitigationActionsTaskInput) -> bool
fn eq(&self, other: &StartAuditMitigationActionsTaskInput) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
impl StructuralPartialEq for StartAuditMitigationActionsTaskInput
Auto Trait Implementations
impl RefUnwindSafe for StartAuditMitigationActionsTaskInput
impl Send for StartAuditMitigationActionsTaskInput
impl Sync for StartAuditMitigationActionsTaskInput
impl Unpin for StartAuditMitigationActionsTaskInput
impl UnwindSafe for StartAuditMitigationActionsTaskInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more