pub struct Builder { /* private fields */ }
Expand description
A builder for UpdateAccountAuditConfigurationInput
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn role_arn(self, input: impl Into<String>) -> Self
pub fn role_arn(self, input: impl Into<String>) -> Self
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.
sourcepub fn set_role_arn(self, input: Option<String>) -> Self
pub fn set_role_arn(self, input: Option<String>) -> Self
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.
sourcepub 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 audit_notification_target_configurations
.
To override the contents of this collection use set_audit_notification_target_configurations
.
Information about the targets to which audit notifications are sent.
sourcepub 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.
sourcepub 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 audit_check_configurations
.
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.
sourcepub 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.
sourcepub fn build(self) -> Result<UpdateAccountAuditConfigurationInput, BuildError>
pub fn build(self) -> Result<UpdateAccountAuditConfigurationInput, BuildError>
Consumes the builder and constructs a UpdateAccountAuditConfigurationInput
.