[][src]Struct aws_lambda_events::event::config::ConfigEvent

pub struct ConfigEvent {
    pub account_id: Option<String>,
    pub config_rule_arn: Option<String>,
    pub config_rule_id: Option<String>,
    pub config_rule_name: Option<String>,
    pub event_left_scope: bool,
    pub execution_role_arn: Option<String>,
    pub invoking_event: Option<String>,
    pub result_token: Option<String>,
    pub rule_parameters: Option<String>,
    pub version: Option<String>,
}

ConfigEvent contains data from an event sent from AWS Config

Fields

account_id: Option<String>

The ID of the AWS account that owns the rule

config_rule_arn: Option<String>

The ARN that AWS Config assigned to the rule

config_rule_id: Option<String>config_rule_name: Option<String>

The name that you assigned to the rule that caused AWS Config to publish the event

event_left_scope: bool

A boolean value that indicates whether the AWS resource to be evaluated has been removed from the rule's scope

execution_role_arn: Option<String>invoking_event: Option<String>

If the event is published in response to a resource configuration change, this value contains a JSON configuration item

result_token: Option<String>

A token that the function must pass to AWS Config with the PutEvaluations call

rule_parameters: Option<String>

Key/value pairs that the function processes as part of its evaluation logic

version: Option<String>

Trait Implementations

impl PartialEq<ConfigEvent> for ConfigEvent[src]

impl Clone for ConfigEvent[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for ConfigEvent[src]

impl Serialize for ConfigEvent[src]

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

Auto Trait Implementations

impl Send for ConfigEvent

impl Sync for ConfigEvent

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]