/** *
Contains details about the type of identity that made the request.
*/ export interface _Identity { /** *A unique identifier for the entity that made the call. For Time To Live, the principalId is "dynamodb.amazonaws.com".
*/ PrincipalId?: string; /** *The type of the identity. For Time To Live, the type is "Service".
*/ Type?: string; } export declare type _UnmarshalledIdentity = _Identity;