Struct aws_sdk_securityhub::operation::create_configuration_policy::CreateConfigurationPolicyOutput
source · #[non_exhaustive]pub struct CreateConfigurationPolicyOutput {
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 Amazon Resource Name (ARN) of the configuration policy.
id: Option<String>
The universally unique identifier (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 request included a list of security controls that are enabled in the configuration policy, Security Hub disables all other controls (including newly released controls). If the request included a list of security controls that are disabled in the configuration policy, Security Hub enables all other controls (including newly released controls).
Implementations§
source§impl CreateConfigurationPolicyOutput
impl CreateConfigurationPolicyOutput
sourcepub fn id(&self) -> Option<&str>
pub fn id(&self) -> Option<&str>
The universally unique identifier (UUID) of the configuration policy.
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 request included a list of security controls that are enabled in the configuration policy, Security Hub disables all other controls (including newly released controls). If the request included a list of security controls that are disabled in the configuration policy, Security Hub enables all other controls (including newly released controls).
source§impl CreateConfigurationPolicyOutput
impl CreateConfigurationPolicyOutput
sourcepub fn builder() -> CreateConfigurationPolicyOutputBuilder
pub fn builder() -> CreateConfigurationPolicyOutputBuilder
Creates a new builder-style object to manufacture CreateConfigurationPolicyOutput
.
Trait Implementations§
source§impl Clone for CreateConfigurationPolicyOutput
impl Clone for CreateConfigurationPolicyOutput
source§fn clone(&self) -> CreateConfigurationPolicyOutput
fn clone(&self) -> CreateConfigurationPolicyOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for CreateConfigurationPolicyOutput
impl PartialEq for CreateConfigurationPolicyOutput
source§fn eq(&self, other: &CreateConfigurationPolicyOutput) -> bool
fn eq(&self, other: &CreateConfigurationPolicyOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for CreateConfigurationPolicyOutput
impl RequestId for CreateConfigurationPolicyOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.impl StructuralPartialEq for CreateConfigurationPolicyOutput
Auto Trait Implementations§
impl Freeze for CreateConfigurationPolicyOutput
impl RefUnwindSafe for CreateConfigurationPolicyOutput
impl Send for CreateConfigurationPolicyOutput
impl Sync for CreateConfigurationPolicyOutput
impl Unpin for CreateConfigurationPolicyOutput
impl UnwindSafe for CreateConfigurationPolicyOutput
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