import { _PublicKeySummary, _UnmarshalledPublicKeySummary } from "./_PublicKeySummary"; /** *
A list of public keys you've added to CloudFront to use with features like field-level encryption.
*/ export interface _PublicKeyList { /** *If there are more elements to be listed, this element is present and contains the value that you can use for the Marker request parameter to continue listing your public keys where you left off.
The maximum number of public keys you want in the response body.
*/ MaxItems: number; /** *The number of public keys you added to CloudFront to use with features like field-level encryption.
*/ Quantity: number; /** *An array of information about a public key you add to CloudFront to use with features like field-level encryption.
*/ Items?: Array<_PublicKeySummary> | Iterable<_PublicKeySummary>; } export interface _UnmarshalledPublicKeyList extends _PublicKeyList { /** *An array of information about a public key you add to CloudFront to use with features like field-level encryption.
*/ Items?: Array<_UnmarshalledPublicKeySummary>; }