import * as __aws_sdk_types from "@aws-sdk/types"; /** * PutObjectOutput shape */ export interface PutObjectOutput extends __aws_sdk_types.MetadataBearer { /** *

The SHA256 digest of the object that is persisted.

*/ ContentSHA256?: string; /** *

Unique identifier of the object in the container.

*/ ETag?: string; /** *

The storage class where the object was persisted. The class should be “Temporal”.

*/ StorageClass?: "TEMPORAL" | string; /** * Metadata about the response received, including the HTTP status code, HTTP headers, and any request identifiers recognized by the SDK. */ $metadata: __aws_sdk_types.ResponseMetadata; }