/** *
Credentials for the provided identity ID.
*/ export interface _Credentials { /** *The Access Key portion of the credentials.
*/ AccessKeyId?: string; /** *The Secret Access Key portion of the credentials
*/ SecretKey?: string; /** *The Session Token portion of the credentials
*/ SessionToken?: string; /** *The date at which these credentials will expire.
*/ Expiration?: Date | string | number; } export interface _UnmarshalledCredentials extends _Credentials { /** *The date at which these credentials will expire.
*/ Expiration?: Date; }