[ aws . qldb-session ]

send-command

Description

Sends a command to an Amazon QLDB ledger.

Note

Instead of interacting directly with this API, we recommend that you use the Amazon QLDB Driver or the QLDB Shell to execute data transactions on a ledger.

  • If you are working with an AWS SDK, use the QLDB Driver. The driver provides a high-level abstraction layer above this qldbsession data plane and manages SendCommand API calls for you. For information and a list of supported programming languages, see Getting started with the driver in the Amazon QLDB Developer Guide .

  • If you are working with the AWS Command Line Interface (AWS CLI), use the QLDB Shell. The shell is a command line interface that uses the QLDB Driver to interact with a ledger. For information, see Accessing Amazon QLDB using the QLDB Shell .

See also: AWS API Documentation

See ‘aws help’ for descriptions of global parameters.

Synopsis

  send-command
[--session-token <value>]
[--start-session <value>]
[--start-transaction <value>]
[--end-session <value>]
[--commit-transaction <value>]
[--abort-transaction <value>]
[--execute-statement <value>]
[--fetch-page <value>]
[--cli-input-json | --cli-input-yaml]
[--generate-cli-skeleton <value>]
[--cli-auto-prompt <value>]

Options

--session-token (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 (structure)

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

LedgerName -> (string)

The name of the ledger to start a new session against.

Shorthand Syntax:

LedgerName=string

JSON Syntax:

{
  "LedgerName": "string"
}

--start-transaction (structure)

Command to start a new transaction.

JSON Syntax:

{

}

--end-session (structure)

Command to end the current session.

JSON Syntax:

{

}

--commit-transaction (structure)

Command to commit the specified transaction.

TransactionId -> (string)

Specifies the transaction ID of the transaction to commit.

CommitDigest -> (blob)

Specifies the commit digest for the transaction to commit. For every active transaction, the commit digest must be passed. QLDB validates CommitDigest and rejects the commit with an error if the digest computed on the client does not match the digest computed by QLDB.

Shorthand Syntax:

TransactionId=string,CommitDigest=blob

JSON Syntax:

{
  "TransactionId": "string",
  "CommitDigest": blob
}

--abort-transaction (structure)

Command to abort the current transaction.

JSON Syntax:

{

}

--execute-statement (structure)

Command to execute a statement in the specified transaction.

TransactionId -> (string)

Specifies the transaction ID of the request.

Statement -> (string)

Specifies the statement of the request.

Parameters -> (list)

Specifies the parameters for the parameterized statement in the request.

(structure)

A structure that can contain an Amazon Ion value in multiple encoding formats.

IonBinary -> (blob)

An Amazon Ion binary value contained in a ValueHolder structure.

IonText -> (string)

An Amazon Ion plaintext value contained in a ValueHolder structure.

Shorthand Syntax:

TransactionId=string,Statement=string,Parameters=[{IonBinary=blob,IonText=string},{IonBinary=blob,IonText=string}]

JSON Syntax:

{
  "TransactionId": "string",
  "Statement": "string",
  "Parameters": [
    {
      "IonBinary": blob,
      "IonText": "string"
    }
    ...
  ]
}

--fetch-page (structure)

Command to fetch a page.

TransactionId -> (string)

Specifies the transaction ID of the page to be fetched.

NextPageToken -> (string)

Specifies the next page token of the page to be fetched.

Shorthand Syntax:

TransactionId=string,NextPageToken=string

JSON Syntax:

{
  "TransactionId": "string",
  "NextPageToken": "string"
}

--cli-input-json | --cli-input-yaml (string) Reads arguments from the JSON string provided. The JSON string follows the format provided by --generate-cli-skeleton. If other arguments are provided on the command line, those values will override the JSON-provided values. It is not possible to pass arbitrary binary values using a JSON-provided value as the string will be taken literally. This may not be specified along with --cli-input-yaml.

--generate-cli-skeleton (string) Prints a JSON skeleton to standard output without sending an API request. If provided with no value or the value input, prints a sample input JSON that can be used as an argument for --cli-input-json. Similarly, if provided yaml-input it will print a sample input YAML that can be used with --cli-input-yaml. If provided with the value output, it validates the command inputs and returns a sample output JSON for that command.

--cli-auto-prompt (boolean) Automatically prompt for CLI input parameters.

See ‘aws help’ for descriptions of global parameters.

Output

StartSession -> (structure)

Contains the details of the started session that includes a session token. This SessionToken is required for every subsequent command that is issued during the current session.

SessionToken -> (string)

Session token of the started session. This SessionToken is required for every subsequent command that is issued during the current session.

StartTransaction -> (structure)

Contains the details of the started transaction.

TransactionId -> (string)

The transaction ID of the started transaction.

EndSession -> (structure)

Contains the details of the ended session.

CommitTransaction -> (structure)

Contains the details of the committed transaction.

TransactionId -> (string)

The transaction ID of the committed transaction.

CommitDigest -> (blob)

The commit digest of the committed transaction.

AbortTransaction -> (structure)

Contains the details of the aborted transaction.

ExecuteStatement -> (structure)

Contains the details of the executed statement.

FirstPage -> (structure)

Contains the details of the first fetched page.

Values -> (list)

A structure that contains values in multiple encoding formats.

(structure)

A structure that can contain an Amazon Ion value in multiple encoding formats.

IonBinary -> (blob)

An Amazon Ion binary value contained in a ValueHolder structure.

IonText -> (string)

An Amazon Ion plaintext value contained in a ValueHolder structure.

NextPageToken -> (string)

The token of the next page.

FetchPage -> (structure)

Contains the details of the fetched page.

Page -> (structure)

Contains details of the fetched page.

Values -> (list)

A structure that contains values in multiple encoding formats.

(structure)

A structure that can contain an Amazon Ion value in multiple encoding formats.

IonBinary -> (blob)

An Amazon Ion binary value contained in a ValueHolder structure.

IonText -> (string)

An Amazon Ion plaintext value contained in a ValueHolder structure.

NextPageToken -> (string)

The token of the next page.