[][src]Struct rusoto_connectparticipant::GetTranscriptRequest

pub struct GetTranscriptRequest {
    pub connection_token: String,
    pub contact_id: Option<String>,
    pub max_results: Option<i64>,
    pub next_token: Option<String>,
    pub scan_direction: Option<String>,
    pub sort_order: Option<String>,
    pub start_position: Option<StartPosition>,
}

Fields

connection_token: String

The authentication token associated with the participant's connection.

contact_id: Option<String>

The contactId from the current contact chain for which transcript is needed.

max_results: Option<i64>

The maximum number of results to return in the page. Default: 10.

next_token: Option<String>

The pagination token. Use the value returned previously in the next subsequent request to retrieve the next set of results.

scan_direction: Option<String>

The direction from StartPosition from which to retrieve message. Default: BACKWARD when no StartPosition is provided, FORWARD with StartPosition.

sort_order: Option<String>

The sort order for the records. Default: DESCENDING.

start_position: Option<StartPosition>

A filtering option for where to start.

Trait Implementations

impl Clone for GetTranscriptRequest[src]

impl Debug for GetTranscriptRequest[src]

impl Default for GetTranscriptRequest[src]

impl PartialEq<GetTranscriptRequest> for GetTranscriptRequest[src]

impl Serialize for GetTranscriptRequest[src]

impl StructuralPartialEq for GetTranscriptRequest[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.