Struct aws_sdk_config::model::ConformancePackDetail
source · [−]#[non_exhaustive]pub struct ConformancePackDetail {
pub conformance_pack_name: Option<String>,
pub conformance_pack_arn: Option<String>,
pub conformance_pack_id: Option<String>,
pub delivery_s3_bucket: Option<String>,
pub delivery_s3_key_prefix: Option<String>,
pub conformance_pack_input_parameters: Option<Vec<ConformancePackInputParameter>>,
pub last_update_requested_time: Option<DateTime>,
pub created_by: Option<String>,
}Expand description
Returns details of a conformance pack. A conformance pack is a collection of Config rules and remediation actions that can be easily deployed in an account and a region.
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.conformance_pack_name: Option<String>Name of the conformance pack.
conformance_pack_arn: Option<String>Amazon Resource Name (ARN) of the conformance pack.
conformance_pack_id: Option<String>ID of the conformance pack.
delivery_s3_bucket: Option<String>The name of the Amazon S3 bucket where Config stores conformance pack templates.
This field is optional.
delivery_s3_key_prefix: Option<String>The prefix for the Amazon S3 bucket.
This field is optional.
conformance_pack_input_parameters: Option<Vec<ConformancePackInputParameter>>A list of ConformancePackInputParameter objects.
last_update_requested_time: Option<DateTime>Last time when conformation pack update was requested.
created_by: Option<String>Amazon Web Services service that created the conformance pack.
Implementations
sourceimpl ConformancePackDetail
impl ConformancePackDetail
sourcepub fn conformance_pack_name(&self) -> Option<&str>
pub fn conformance_pack_name(&self) -> Option<&str>
Name of the conformance pack.
sourcepub fn conformance_pack_arn(&self) -> Option<&str>
pub fn conformance_pack_arn(&self) -> Option<&str>
Amazon Resource Name (ARN) of the conformance pack.
sourcepub fn conformance_pack_id(&self) -> Option<&str>
pub fn conformance_pack_id(&self) -> Option<&str>
ID of the conformance pack.
sourcepub fn delivery_s3_bucket(&self) -> Option<&str>
pub fn delivery_s3_bucket(&self) -> Option<&str>
The name of the Amazon S3 bucket where Config stores conformance pack templates.
This field is optional.
sourcepub fn delivery_s3_key_prefix(&self) -> Option<&str>
pub fn delivery_s3_key_prefix(&self) -> Option<&str>
The prefix for the Amazon S3 bucket.
This field is optional.
sourcepub fn conformance_pack_input_parameters(
&self
) -> Option<&[ConformancePackInputParameter]>
pub fn conformance_pack_input_parameters(
&self
) -> Option<&[ConformancePackInputParameter]>
A list of ConformancePackInputParameter objects.
sourcepub fn last_update_requested_time(&self) -> Option<&DateTime>
pub fn last_update_requested_time(&self) -> Option<&DateTime>
Last time when conformation pack update was requested.
sourcepub fn created_by(&self) -> Option<&str>
pub fn created_by(&self) -> Option<&str>
Amazon Web Services service that created the conformance pack.
sourceimpl ConformancePackDetail
impl ConformancePackDetail
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ConformancePackDetail
Trait Implementations
sourceimpl Clone for ConformancePackDetail
impl Clone for ConformancePackDetail
sourcefn clone(&self) -> ConformancePackDetail
fn clone(&self) -> ConformancePackDetail
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for ConformancePackDetail
impl Debug for ConformancePackDetail
sourceimpl PartialEq<ConformancePackDetail> for ConformancePackDetail
impl PartialEq<ConformancePackDetail> for ConformancePackDetail
sourcefn eq(&self, other: &ConformancePackDetail) -> bool
fn eq(&self, other: &ConformancePackDetail) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &ConformancePackDetail) -> bool
fn ne(&self, other: &ConformancePackDetail) -> bool
This method tests for !=.
impl StructuralPartialEq for ConformancePackDetail
Auto Trait Implementations
impl RefUnwindSafe for ConformancePackDetail
impl Send for ConformancePackDetail
impl Sync for ConformancePackDetail
impl Unpin for ConformancePackDetail
impl UnwindSafe for ConformancePackDetail
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more