Struct cfn::aws::config::ConfigRuleProperties [] [src]

pub struct ConfigRuleProperties {
    pub config_rule_name: Option<Value<String>>,
    pub description: Option<Value<String>>,
    pub input_parameters: Option<Value<Value>>,
    pub maximum_execution_frequency: Option<Value<String>>,
    pub scope: Option<Value<Scope>>,
    pub source: Value<Source>,
}

Properties for the ConfigRule resource.

Fields

Property ConfigRuleName.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Property Description.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property InputParameters.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property MaximumExecutionFrequency.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property Scope.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property Source.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Trait Implementations

impl Debug for ConfigRuleProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Default for ConfigRuleProperties
[src]

[src]

Returns the "default value" for a type. Read more

impl Serialize for ConfigRuleProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

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

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<ConfigRuleProperties> for ConfigRule
[src]

[src]

Performs the conversion.

Auto Trait Implementations