[][src]Struct rusoto_config::ConformancePackDetail

pub struct ConformancePackDetail {
    pub conformance_pack_arn: String,
    pub conformance_pack_id: String,
    pub conformance_pack_input_parameters: Option<Vec<ConformancePackInputParameter>>,
    pub conformance_pack_name: String,
    pub created_by: Option<String>,
    pub delivery_s3_bucket: Option<String>,
    pub delivery_s3_key_prefix: Option<String>,
    pub last_update_requested_time: Option<f64>,
}

Returns details of a conformance pack. A conformance pack is a collection of AWS Config rules and remediation actions that can be easily deployed in an account and a region.

Fields

conformance_pack_arn: String

Amazon Resource Name (ARN) of the conformance pack.

conformance_pack_id: String

ID of the conformance pack.

conformance_pack_input_parameters: Option<Vec<ConformancePackInputParameter>>

A list of ConformancePackInputParameter objects.

conformance_pack_name: String

Name of the conformance pack.

created_by: Option<String>

AWS service that created the conformance pack.

delivery_s3_bucket: Option<String>

Conformance pack template that is used to create a pack. The delivery bucket name should start with awsconfigconforms. For example: "Resource": "arn:aws:s3:::your_bucket_name/*".

delivery_s3_key_prefix: Option<String>

The prefix for the Amazon S3 bucket.

last_update_requested_time: Option<f64>

Last time when conformation pack update was requested.

Trait Implementations

impl Clone for ConformancePackDetail[src]

impl Debug for ConformancePackDetail[src]

impl Default for ConformancePackDetail[src]

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

impl PartialEq<ConformancePackDetail> for ConformancePackDetail[src]

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