[][src]Struct rusoto_qldb_session::SendCommandRequest

pub struct SendCommandRequest {
    pub abort_transaction: Option<AbortTransactionRequest>,
    pub commit_transaction: Option<CommitTransactionRequest>,
    pub end_session: Option<EndSessionRequest>,
    pub execute_statement: Option<ExecuteStatementRequest>,
    pub fetch_page: Option<FetchPageRequest>,
    pub session_token: Option<String>,
    pub start_session: Option<StartSessionRequest>,
    pub start_transaction: Option<StartTransactionRequest>,
}

Fields

abort_transaction: Option<AbortTransactionRequest>

Command to abort the current transaction.

commit_transaction: Option<CommitTransactionRequest>

Command to commit the specified transaction.

end_session: Option<EndSessionRequest>

Command to end the current session.

execute_statement: Option<ExecuteStatementRequest>

Command to execute a statement in the specified transaction.

fetch_page: Option<FetchPageRequest>

Command to fetch a page.

session_token: Option<String>

Specifies the session token for the current command. A session token is constant throughout the life of the session.

To obtain a session token, run the StartSession command. This SessionToken is required for every subsequent command that is issued during the current session.

start_session: Option<StartSessionRequest>

Command to start a new session. A session token is obtained as part of the response.

start_transaction: Option<StartTransactionRequest>

Command to start a new transaction.

Trait Implementations

impl Clone for SendCommandRequest[src]

impl Debug for SendCommandRequest[src]

impl Default for SendCommandRequest[src]

impl PartialEq<SendCommandRequest> for SendCommandRequest[src]

impl Serialize for SendCommandRequest[src]

impl StructuralPartialEq for SendCommandRequest[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, 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.