Struct rusoto_logs::PutLogEventsRequest [] [src]

pub struct PutLogEventsRequest {
    pub log_events: Vec<InputLogEvent>,
    pub log_group_name: String,
    pub log_stream_name: String,
    pub sequence_token: Option<String>,
}

Fields

The log events.

The name of the log group.

The name of the log stream.

The sequence token obtained from the response of the previous PutLogEvents call. An upload in a newly created log stream does not require a sequence token. You can also get the sequence token using DescribeLogStreams. If you call PutLogEvents twice within a narrow time period using the same value for sequenceToken, both calls may be successful, or one may be rejected.

Trait Implementations

impl Default for PutLogEventsRequest
[src]

[src]

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

impl Debug for PutLogEventsRequest
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for PutLogEventsRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations