import * as __aws_sdk_types from "@aws-sdk/types"; /** *

A JSON object containing the following fields:

*/ export interface CreateSnapshotOutput extends __aws_sdk_types.MetadataBearer { /** *

The Amazon Resource Name (ARN) of the volume of which the snapshot was taken.

*/ VolumeARN?: string; /** *

The snapshot ID that is used to refer to the snapshot in future operations such as describing snapshots (Amazon Elastic Compute Cloud API DescribeSnapshots) or creating a volume from a snapshot (CreateStorediSCSIVolume).

*/ SnapshotId?: 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; }