import * as __aws_sdk_types from '@aws-js-sdk-v3-prerelease/types'; /** *

Returned in response to a successful GetOpenIdToken request.

*/ export interface GetOpenIdTokenOutput { /** *

A unique identifier in the format REGION:GUID. Note that the IdentityId returned may not match the one passed on input.

*/ IdentityId?: string; /** *

An OpenID token, valid for 15 minutes.

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