Struct aws_sdk_securityhub::operation::get_configuration_policy::GetConfigurationPolicyOutput
source · #[non_exhaustive]pub struct GetConfigurationPolicyOutput {
pub arn: Option<String>,
pub id: Option<String>,
pub name: Option<String>,
pub description: Option<String>,
pub updated_at: Option<DateTime>,
pub created_at: Option<DateTime>,
pub configuration_policy: Option<Policy>,
/* 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.arn: Option<String>
The ARN of the configuration policy.
id: Option<String>
The UUID of the configuration policy.
name: Option<String>
The name of the configuration policy.
description: Option<String>
The description of the configuration policy.
updated_at: Option<DateTime>
The date and time, in UTC and ISO 8601 format, that the configuration policy was last updated.
created_at: Option<DateTime>
The date and time, in UTC and ISO 8601 format, that the configuration policy was created.
configuration_policy: Option<Policy>
An object that defines how Security Hub is configured. It includes whether Security Hub is enabled or disabled, a list of enabled security standards, a list of enabled or disabled security controls, and a list of custom parameter values for specified controls. If the policy includes a list of security controls that are enabled, Security Hub disables all other controls (including newly released controls). If the policy includes a list of security controls that are disabled, Security Hub enables all other controls (including newly released controls).
Implementations§
source§impl GetConfigurationPolicyOutput
impl GetConfigurationPolicyOutput
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the configuration policy.
sourcepub fn updated_at(&self) -> Option<&DateTime>
pub fn updated_at(&self) -> Option<&DateTime>
The date and time, in UTC and ISO 8601 format, that the configuration policy was last updated.
sourcepub fn created_at(&self) -> Option<&DateTime>
pub fn created_at(&self) -> Option<&DateTime>
The date and time, in UTC and ISO 8601 format, that the configuration policy was created.
sourcepub fn configuration_policy(&self) -> Option<&Policy>
pub fn configuration_policy(&self) -> Option<&Policy>
An object that defines how Security Hub is configured. It includes whether Security Hub is enabled or disabled, a list of enabled security standards, a list of enabled or disabled security controls, and a list of custom parameter values for specified controls. If the policy includes a list of security controls that are enabled, Security Hub disables all other controls (including newly released controls). If the policy includes a list of security controls that are disabled, Security Hub enables all other controls (including newly released controls).
source§impl GetConfigurationPolicyOutput
impl GetConfigurationPolicyOutput
sourcepub fn builder() -> GetConfigurationPolicyOutputBuilder
pub fn builder() -> GetConfigurationPolicyOutputBuilder
Creates a new builder-style object to manufacture GetConfigurationPolicyOutput
.
Trait Implementations§
source§impl Clone for GetConfigurationPolicyOutput
impl Clone for GetConfigurationPolicyOutput
source§fn clone(&self) -> GetConfigurationPolicyOutput
fn clone(&self) -> GetConfigurationPolicyOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for GetConfigurationPolicyOutput
impl Debug for GetConfigurationPolicyOutput
source§impl PartialEq for GetConfigurationPolicyOutput
impl PartialEq for GetConfigurationPolicyOutput
source§fn eq(&self, other: &GetConfigurationPolicyOutput) -> bool
fn eq(&self, other: &GetConfigurationPolicyOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for GetConfigurationPolicyOutput
impl RequestId for GetConfigurationPolicyOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.impl StructuralPartialEq for GetConfigurationPolicyOutput
Auto Trait Implementations§
impl Freeze for GetConfigurationPolicyOutput
impl RefUnwindSafe for GetConfigurationPolicyOutput
impl Send for GetConfigurationPolicyOutput
impl Sync for GetConfigurationPolicyOutput
impl Unpin for GetConfigurationPolicyOutput
impl UnwindSafe for GetConfigurationPolicyOutput
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> 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