/** *

An array of UnprocessedIdentityId objects, each of which contains an ErrorCode and IdentityId.

*/ export interface _UnprocessedIdentityId { /** *

A unique identifier in the format REGION:GUID.

*/ IdentityId?: string; /** *

The error code indicating the type of error that occurred.

*/ ErrorCode?: 'AccessDenied' | 'InternalServerError' | string; } export declare type _UnmarshalledUnprocessedIdentityId = _UnprocessedIdentityId;