Struct aws_sdk_iot::operation::describe_account_audit_configuration::DescribeAccountAuditConfigurationOutput
source · #[non_exhaustive]pub struct DescribeAccountAuditConfigurationOutput {
pub role_arn: Option<String>,
pub audit_notification_target_configurations: Option<HashMap<AuditNotificationType, AuditNotificationTarget>>,
pub audit_check_configurations: Option<HashMap<String, AuditCheckConfiguration>>,
/* private fields */
}
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.role_arn: Option<String>
The 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.
On the first call to UpdateAccountAuditConfiguration
, this parameter is required.
audit_notification_target_configurations: Option<HashMap<AuditNotificationType, AuditNotificationTarget>>
Information about the targets to which audit notifications are sent for this account.
audit_check_configurations: Option<HashMap<String, AuditCheckConfiguration>>
Which audit checks are enabled and disabled for this account.
Implementations§
source§impl DescribeAccountAuditConfigurationOutput
impl DescribeAccountAuditConfigurationOutput
sourcepub fn role_arn(&self) -> Option<&str>
pub fn role_arn(&self) -> Option<&str>
The 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.
On the first call to UpdateAccountAuditConfiguration
, this parameter is required.
sourcepub fn audit_notification_target_configurations(
&self,
) -> Option<&HashMap<AuditNotificationType, AuditNotificationTarget>>
pub fn audit_notification_target_configurations( &self, ) -> Option<&HashMap<AuditNotificationType, AuditNotificationTarget>>
Information about the targets to which audit notifications are sent for this account.
sourcepub fn audit_check_configurations(
&self,
) -> Option<&HashMap<String, AuditCheckConfiguration>>
pub fn audit_check_configurations( &self, ) -> Option<&HashMap<String, AuditCheckConfiguration>>
Which audit checks are enabled and disabled for this account.
source§impl DescribeAccountAuditConfigurationOutput
impl DescribeAccountAuditConfigurationOutput
sourcepub fn builder() -> DescribeAccountAuditConfigurationOutputBuilder
pub fn builder() -> DescribeAccountAuditConfigurationOutputBuilder
Creates a new builder-style object to manufacture DescribeAccountAuditConfigurationOutput
.
Trait Implementations§
source§impl Clone for DescribeAccountAuditConfigurationOutput
impl Clone for DescribeAccountAuditConfigurationOutput
source§fn clone(&self) -> DescribeAccountAuditConfigurationOutput
fn clone(&self) -> DescribeAccountAuditConfigurationOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for DescribeAccountAuditConfigurationOutput
impl PartialEq for DescribeAccountAuditConfigurationOutput
source§fn eq(&self, other: &DescribeAccountAuditConfigurationOutput) -> bool
fn eq(&self, other: &DescribeAccountAuditConfigurationOutput) -> bool
self
and other
values to be equal, and is used by ==
.source§impl RequestId for DescribeAccountAuditConfigurationOutput
impl RequestId for DescribeAccountAuditConfigurationOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.impl StructuralPartialEq for DescribeAccountAuditConfigurationOutput
Auto Trait Implementations§
impl Freeze for DescribeAccountAuditConfigurationOutput
impl RefUnwindSafe for DescribeAccountAuditConfigurationOutput
impl Send for DescribeAccountAuditConfigurationOutput
impl Sync for DescribeAccountAuditConfigurationOutput
impl Unpin for DescribeAccountAuditConfigurationOutput
impl UnwindSafe for DescribeAccountAuditConfigurationOutput
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