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]

[src]

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

impl Debug for PutTargetsResultEntry
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for PutTargetsResultEntry
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations