UNPKG

950 BTypeScriptView Raw
1export interface ResponseMetadata {
2 /**
3 * The status code of the last HTTP response received for this operation.
4 */
5 httpStatusCode?: number;
6 /**
7 * A unique identifier for the last request sent for this operation. Often
8 * requested by AWS service teams to aid in debugging.
9 */
10 requestId?: string;
11 /**
12 * A secondary identifier for the last request sent. Used for debugging.
13 */
14 extendedRequestId?: string;
15 /**
16 * A tertiary identifier for the last request sent. Used for debugging.
17 */
18 cfId?: string;
19 /**
20 * The number of times this operation was attempted.
21 */
22 attempts?: number;
23 /**
24 * The total amount of time (in milliseconds) that was spent waiting between
25 * retry attempts.
26 */
27 totalRetryDelay?: number;
28}
29export interface MetadataBearer {
30 /**
31 * Metadata pertaining to this request.
32 */
33 $metadata: ResponseMetadata;
34}