import * as __aws_sdk_types from '@aws-sdk/types'; /** * ListKeyPoliciesOutput shape */ export interface ListKeyPoliciesOutput { /** *

A list of key policy names. Currently, there is only one key policy per CMK and it is always named default.

*/ PolicyNames?: Array; /** *

When Truncated is true, this element is present and contains the value to use for the Marker parameter in a subsequent request.

*/ NextMarker?: string; /** *

A flag that indicates whether there are more items in the list. When this value is true, the list in this response is truncated. To get more items, pass the value of the NextMarker element in this response to the Marker parameter in a subsequent request.

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