[][src]Struct rusoto_config::OrganizationManagedRuleMetadata

pub struct OrganizationManagedRuleMetadata {
    pub description: Option<String>,
    pub input_parameters: Option<String>,
    pub maximum_execution_frequency: Option<String>,
    pub resource_id_scope: Option<String>,
    pub resource_types_scope: Option<Vec<String>>,
    pub rule_identifier: String,
    pub tag_key_scope: Option<String>,
    pub tag_value_scope: Option<String>,
}

An object that specifies organization managed rule metadata such as resource type and ID of AWS resource along with the rule identifier. It also provides the frequency with which you want AWS Config to run evaluations for the rule if the trigger type is periodic.

Fields

description: Option<String>

The description that you provide for organization config rule.

input_parameters: Option<String>

A string, in JSON format, that is passed to organization config rule Lambda function.

maximum_execution_frequency: Option<String>

The maximum frequency with which AWS Config runs evaluations for a rule. You are using an AWS managed rule that is triggered at a periodic frequency.

By default, rules with a periodic trigger are evaluated every 24 hours. To change the frequency, specify a valid value for the MaximumExecutionFrequency parameter.

resource_id_scope: Option<String>

The ID of the AWS resource that was evaluated.

resource_types_scope: Option<Vec<String>>

The type of the AWS resource that was evaluated.

rule_identifier: String

For organization config managed rules, a predefined identifier from a list. For example, IAM_PASSWORD_POLICY is a managed rule. To reference a managed rule, see Using AWS Managed Config Rules.

tag_key_scope: Option<String>

One part of a key-value pair that make up a tag. A key is a general label that acts like a category for more specific tag values.

tag_value_scope: Option<String>

The optional part of a key-value pair that make up a tag. A value acts as a descriptor within a tag category (key).

Trait Implementations

impl Clone for OrganizationManagedRuleMetadata[src]

impl Debug for OrganizationManagedRuleMetadata[src]

impl Default for OrganizationManagedRuleMetadata[src]

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

impl PartialEq<OrganizationManagedRuleMetadata> for OrganizationManagedRuleMetadata[src]

impl Serialize for OrganizationManagedRuleMetadata[src]

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