[][src]Struct rusoto_config::PutConformancePackRequest

pub struct PutConformancePackRequest {
    pub conformance_pack_input_parameters: Option<Vec<ConformancePackInputParameter>>,
    pub conformance_pack_name: String,
    pub delivery_s3_bucket: String,
    pub delivery_s3_key_prefix: Option<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.

conformance_pack_name: String

Name of the conformance pack you want to create.

delivery_s3_bucket: String

AWS Config stores intermediate files while processing conformance pack template.

delivery_s3_key_prefix: Option<String>

The prefix for the Amazon S3 bucket.

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.

You can only use a YAML template with one resource type, that is, config rule and a remediation action.

template_s3_uri: Option<String>

Location of file containing the template body (s3://bucketname/prefix). The uri must point to the conformance pack template (max size: 300 KB) that is located in an Amazon S3 bucket in the same region as the conformance pack.

You must have access to read Amazon S3 bucket.

Trait Implementations

impl Clone for PutConformancePackRequest[src]

impl Debug for PutConformancePackRequest[src]

impl Default for PutConformancePackRequest[src]

impl PartialEq<PutConformancePackRequest> for PutConformancePackRequest[src]

impl Serialize for PutConformancePackRequest[src]

impl StructuralPartialEq for PutConformancePackRequest[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> 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.