[][src]Struct rusoto_config::PutOrganizationConformancePackRequest

pub struct PutOrganizationConformancePackRequest {
    pub conformance_pack_input_parameters: Option<Vec<ConformancePackInputParameter>>,
    pub delivery_s3_bucket: Option<String>,
    pub delivery_s3_key_prefix: Option<String>,
    pub excluded_accounts: Option<Vec<String>>,
    pub organization_conformance_pack_name: String,
    pub template_body: Option<String>,
    pub template_s3_uri: Option<String>,
}

Fields

conformance_pack_input_parameters: Option<Vec<ConformancePackInputParameter>>

A list of ConformancePackInputParameter objects.

delivery_s3_bucket: Option<String>

Location of an Amazon S3 bucket where AWS Config can deliver evaluation results. AWS Config stores intermediate files while processing conformance pack template.

The delivery bucket name should start with awsconfigconforms. For example: "Resource": "arn:aws:s3:::your_bucket_name/*". For more information, see Permissions for cross account bucket access.

delivery_s3_key_prefix: Option<String>

The prefix for the Amazon S3 bucket.

excluded_accounts: Option<Vec<String>>

A list of AWS accounts to be excluded from an organization conformance pack while deploying a conformance pack.

organization_conformance_pack_name: String

Name of the organization conformance pack you want to create.

template_body: Option<String>

A string containing full conformance pack template body. Structure containing the template body with a minimum length of 1 byte and a maximum length of 51,200 bytes.

template_s3_uri: Option<String>

Location of file containing the template body. The uri must point to the conformance pack template (max size: 300 KB).

You must have access to read Amazon S3 bucket.

Trait Implementations

impl Clone for PutOrganizationConformancePackRequest[src]

impl Debug for PutOrganizationConformancePackRequest[src]

impl Default for PutOrganizationConformancePackRequest[src]

impl PartialEq<PutOrganizationConformancePackRequest> for PutOrganizationConformancePackRequest[src]

impl Serialize for PutOrganizationConformancePackRequest[src]

impl StructuralPartialEq for PutOrganizationConformancePackRequest[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> From<T> 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.