@nodeboot/starter-aws
Version:
Node-Boot starter package for AWS services
24 lines • 587 B
TypeScript
export interface AwsCredentialIdentity {
/**
* AWS access key ID
*/
readonly accessKeyId: string;
/**
* AWS secret access key
*/
readonly secretAccessKey: string;
/**
* A security or session token to use with these credentials. Usually
* present for temporary credentials.
*/
readonly sessionToken?: string;
/**
* AWS credential scope for this set of credentials.
*/
readonly credentialScope?: string;
/**
* AWS accountId.
*/
readonly accountId?: string;
}
//# sourceMappingURL=types.d.ts.map