Struct rusoto_events::PutTargetsResultEntry[][src]

pub struct PutTargetsResultEntry {
    pub error_code: Option<String>,
    pub error_message: Option<String>,
    pub target_id: Option<String>,
}

Represents a target that failed to be added to a rule.

Fields

The error code that indicates why the target addition failed. If the value is ConcurrentModificationException, too many requests were made at the same time.

The error message that explains why the target addition failed.

The ID of the target.

Trait Implementations

impl Default for PutTargetsResultEntry
[src]

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

impl Debug for PutTargetsResultEntry
[src]

Formats the value using the given formatter. Read more

impl Clone for PutTargetsResultEntry
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for PutTargetsResultEntry
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations