Struct aws_sdk_iot::client::fluent_builders::UpdateAccountAuditConfiguration [−][src]
pub struct UpdateAccountAuditConfiguration<C = DynConnector, M = DefaultMiddleware, R = Standard> { /* fields omitted */ }
Expand description
Fluent builder constructing a request to UpdateAccountAuditConfiguration
.
Configures or reconfigures the Device Defender audit settings for this account. Settings include how audit notifications are sent and which audit checks are enabled or disabled.
Requires permission to access the UpdateAccountAuditConfiguration action.
Implementations
impl<C, M, R> UpdateAccountAuditConfiguration<C, M, R> where
C: SmithyConnector,
M: SmithyMiddleware<C>,
R: NewRequestPolicy,
impl<C, M, R> UpdateAccountAuditConfiguration<C, M, R> where
C: SmithyConnector,
M: SmithyMiddleware<C>,
R: NewRequestPolicy,
pub async fn send(
self
) -> Result<UpdateAccountAuditConfigurationOutput, SdkError<UpdateAccountAuditConfigurationError>> where
R::Policy: SmithyRetryPolicy<UpdateAccountAuditConfigurationInputOperationOutputAlias, UpdateAccountAuditConfigurationOutput, UpdateAccountAuditConfigurationError, UpdateAccountAuditConfigurationInputOperationRetryAlias>,
pub async fn send(
self
) -> Result<UpdateAccountAuditConfigurationOutput, SdkError<UpdateAccountAuditConfigurationError>> where
R::Policy: SmithyRetryPolicy<UpdateAccountAuditConfigurationInputOperationOutputAlias, UpdateAccountAuditConfigurationOutput, UpdateAccountAuditConfigurationError, UpdateAccountAuditConfigurationInputOperationRetryAlias>,
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
The Amazon Resource Name (ARN) of the role that grants permission to IoT to access information about your devices, policies, certificates, and other items as required when performing an audit.
The Amazon Resource Name (ARN) of the role that grants permission to IoT to access information about your devices, policies, certificates, and other items as required when performing an audit.
pub fn audit_notification_target_configurations(
self,
k: AuditNotificationType,
v: AuditNotificationTarget
) -> Self
pub fn audit_notification_target_configurations(
self,
k: AuditNotificationType,
v: AuditNotificationTarget
) -> Self
Adds a key-value pair to auditNotificationTargetConfigurations
.
To override the contents of this collection use set_audit_notification_target_configurations
.
Information about the targets to which audit notifications are sent.
pub fn set_audit_notification_target_configurations(
self,
input: Option<HashMap<AuditNotificationType, AuditNotificationTarget>>
) -> Self
pub fn set_audit_notification_target_configurations(
self,
input: Option<HashMap<AuditNotificationType, AuditNotificationTarget>>
) -> Self
Information about the targets to which audit notifications are sent.
pub fn audit_check_configurations(
self,
k: impl Into<String>,
v: AuditCheckConfiguration
) -> Self
pub fn audit_check_configurations(
self,
k: impl Into<String>,
v: AuditCheckConfiguration
) -> Self
Adds a key-value pair to auditCheckConfigurations
.
To override the contents of this collection use set_audit_check_configurations
.
Specifies which audit checks are enabled and disabled for this account. Use DescribeAccountAuditConfiguration
to see the list of all checks, including those that are currently enabled.
Some data collection might start immediately when certain checks are enabled. When a check is disabled, any data collected so far in relation to the check is deleted.
You cannot disable a check if it's used by any scheduled audit. You must first delete the check from the scheduled audit or delete the scheduled audit itself.
On the first call to UpdateAccountAuditConfiguration
, this parameter is required and must specify at least one enabled check.
pub fn set_audit_check_configurations(
self,
input: Option<HashMap<String, AuditCheckConfiguration>>
) -> Self
pub fn set_audit_check_configurations(
self,
input: Option<HashMap<String, AuditCheckConfiguration>>
) -> Self
Specifies which audit checks are enabled and disabled for this account. Use DescribeAccountAuditConfiguration
to see the list of all checks, including those that are currently enabled.
Some data collection might start immediately when certain checks are enabled. When a check is disabled, any data collected so far in relation to the check is deleted.
You cannot disable a check if it's used by any scheduled audit. You must first delete the check from the scheduled audit or delete the scheduled audit itself.
On the first call to UpdateAccountAuditConfiguration
, this parameter is required and must specify at least one enabled check.
Trait Implementations
Auto Trait Implementations
impl<C = DynConnector, M = DefaultMiddleware, R = Standard> !RefUnwindSafe for UpdateAccountAuditConfiguration<C, M, R>
impl<C, M, R> Send for UpdateAccountAuditConfiguration<C, M, R> where
C: Send + Sync,
M: Send + Sync,
R: Send + Sync,
impl<C, M, R> Sync for UpdateAccountAuditConfiguration<C, M, R> where
C: Send + Sync,
M: Send + Sync,
R: Send + Sync,
impl<C, M, R> Unpin for UpdateAccountAuditConfiguration<C, M, R>
impl<C = DynConnector, M = DefaultMiddleware, R = Standard> !UnwindSafe for UpdateAccountAuditConfiguration<C, M, R>
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more