Struct aws_sdk_config::types::OrganizationConformancePack
source · #[non_exhaustive]pub struct OrganizationConformancePack { /* private fields */ }Expand description
An organization conformance pack that has information about conformance packs that Config creates in member accounts.
Implementations§
source§impl 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.
source§impl OrganizationConformancePack
impl OrganizationConformancePack
sourcepub fn builder() -> OrganizationConformancePackBuilder
pub fn builder() -> OrganizationConformancePackBuilder
Creates a new builder-style object to manufacture OrganizationConformancePack.
Trait Implementations§
source§impl Clone for OrganizationConformancePack
impl Clone for OrganizationConformancePack
source§fn clone(&self) -> OrganizationConformancePack
fn clone(&self) -> OrganizationConformancePack
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for OrganizationConformancePack
impl Debug for OrganizationConformancePack
source§impl PartialEq<OrganizationConformancePack> for OrganizationConformancePack
impl PartialEq<OrganizationConformancePack> for OrganizationConformancePack
source§fn 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 ==.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§
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
Mutably borrows from an owned value. Read more