Struct rusoto_events::RemoveTargetsResultEntry[][src]

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

Represents a target that failed to be removed from a rule.

Fields

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

The error message that explains why the target removal failed.

The ID of the target.

Trait Implementations

impl Default for RemoveTargetsResultEntry
[src]

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

impl Debug for RemoveTargetsResultEntry
[src]

Formats the value using the given formatter. Read more

impl Clone for RemoveTargetsResultEntry
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for RemoveTargetsResultEntry
[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