interface ResponseMetadata {
    attempts?: number;
    cfId?: string;
    extendedRequestId?: string;
    httpStatusCode?: number;
    requestId?: string;
    totalRetryDelay?: number;
}

Properties

attempts?: number

The number of times this operation was attempted.

cfId?: string

A tertiary identifier for the last request sent. Used for debugging.

extendedRequestId?: string

A secondary identifier for the last request sent. Used for debugging.

httpStatusCode?: number

The status code of the last HTTP response received for this operation.

requestId?: string

A unique identifier for the last request sent for this operation. Often requested by AWS service teams to aid in debugging.

totalRetryDelay?: number

The total amount of time (in milliseconds) that was spent waiting between retry attempts.