Struct aws_sdk_config::model::OrganizationConformancePack
source · [−]#[non_exhaustive]pub struct OrganizationConformancePack {
pub organization_conformance_pack_name: Option<String>,
pub organization_conformance_pack_arn: Option<String>,
pub delivery_s3_bucket: Option<String>,
pub delivery_s3_key_prefix: Option<String>,
pub conformance_pack_input_parameters: Option<Vec<ConformancePackInputParameter>>,
pub excluded_accounts: Option<Vec<String>>,
pub last_update_time: Option<DateTime>,
}Expand description
An organization conformance pack that has information about conformance packs that Config creates in member accounts.
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.organization_conformance_pack_name: Option<String>The name you assign to an organization conformance pack.
organization_conformance_pack_arn: Option<String>Amazon Resource Name (ARN) of organization 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>Any folder structure you want to add to an Amazon S3 bucket.
This field is optional.
conformance_pack_input_parameters: Option<Vec<ConformancePackInputParameter>>A list of ConformancePackInputParameter objects.
excluded_accounts: Option<Vec<String>>A comma-separated list of accounts excluded from organization conformance pack.
last_update_time: Option<DateTime>Last time when organization conformation pack was updated.
Implementations
sourceimpl OrganizationConformancePack
impl OrganizationConformancePack
sourcepub fn organization_conformance_pack_name(&self) -> Option<&str>
pub fn organization_conformance_pack_name(&self) -> Option<&str>
The name you assign to an organization conformance pack.
sourcepub fn organization_conformance_pack_arn(&self) -> Option<&str>
pub fn organization_conformance_pack_arn(&self) -> Option<&str>
Amazon Resource Name (ARN) of organization 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>
Any folder structure you want to add to an 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 excluded_accounts(&self) -> Option<&[String]>
pub fn excluded_accounts(&self) -> Option<&[String]>
A comma-separated list of accounts excluded from organization conformance pack.
sourcepub fn last_update_time(&self) -> Option<&DateTime>
pub fn last_update_time(&self) -> Option<&DateTime>
Last time when organization conformation pack was updated.
sourceimpl OrganizationConformancePack
impl OrganizationConformancePack
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture OrganizationConformancePack
Trait Implementations
sourceimpl Clone for OrganizationConformancePack
impl Clone for OrganizationConformancePack
sourcefn clone(&self) -> OrganizationConformancePack
fn clone(&self) -> OrganizationConformancePack
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 OrganizationConformancePack
impl Debug for OrganizationConformancePack
sourceimpl PartialEq<OrganizationConformancePack> for OrganizationConformancePack
impl PartialEq<OrganizationConformancePack> for OrganizationConformancePack
sourcefn eq(&self, other: &OrganizationConformancePack) -> bool
fn eq(&self, other: &OrganizationConformancePack) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &OrganizationConformancePack) -> bool
fn ne(&self, other: &OrganizationConformancePack) -> bool
This method tests for !=.
impl StructuralPartialEq for OrganizationConformancePack
Auto Trait Implementations
impl RefUnwindSafe for OrganizationConformancePack
impl Send for OrganizationConformancePack
impl Sync for OrganizationConformancePack
impl Unpin for OrganizationConformancePack
impl UnwindSafe for OrganizationConformancePack
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