import { _UnmarshalledReceiptRuleSetMetadata } from "./_ReceiptRuleSetMetadata"; import * as __aws_sdk_types from "@aws-sdk/types"; /** *

A list of receipt rule sets that exist under your AWS account.

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

The metadata for the currently active receipt rule set. The metadata consists of the rule set name and the timestamp of when the rule set was created.

*/ RuleSets?: Array<_UnmarshalledReceiptRuleSetMetadata>; /** *

A token indicating that there are additional receipt rule sets available to be listed. Pass this token to successive calls of ListReceiptRuleSets to retrieve up to 100 receipt rule sets at a time.

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