[][src]Struct rusoto_config::OrganizationConformancePack

pub struct OrganizationConformancePack {
    pub conformance_pack_input_parameters: Option<Vec<ConformancePackInputParameter>>,
    pub delivery_s3_bucket: String,
    pub delivery_s3_key_prefix: Option<String>,
    pub excluded_accounts: Option<Vec<String>>,
    pub last_update_time: f64,
    pub organization_conformance_pack_arn: String,
    pub organization_conformance_pack_name: String,
}

An organization conformance pack that has information about conformance packs that AWS Config creates in member accounts.

Fields

conformance_pack_input_parameters: Option<Vec<ConformancePackInputParameter>>

A list of ConformancePackInputParameter objects.

delivery_s3_bucket: String

Location of an Amazon S3 bucket where AWS Config can deliver evaluation results and conformance pack template that is used to create a pack.

delivery_s3_key_prefix: Option<String>

Any folder structure you want to add to an Amazon S3 bucket.

excluded_accounts: Option<Vec<String>>

A comma-separated list of accounts excluded from organization conformance pack.

last_update_time: f64

Last time when organization conformation pack was updated.

organization_conformance_pack_arn: String

Amazon Resource Name (ARN) of organization conformance pack.

organization_conformance_pack_name: String

The name you assign to an organization conformance pack.

Trait Implementations

impl Clone for OrganizationConformancePack[src]

impl Debug for OrganizationConformancePack[src]

impl Default for OrganizationConformancePack[src]

impl<'de> Deserialize<'de> for OrganizationConformancePack[src]

impl PartialEq<OrganizationConformancePack> for OrganizationConformancePack[src]

impl StructuralPartialEq for OrganizationConformancePack[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.