Documentation
    Preparing search index...

    Interface AwsCredentialIdentity

    A resolved set of AWS credentials. Structurally compatible with the AWS SDK's AwsCredentialIdentity, so providers from @aws-sdk/credential-providers can be passed directly.

    interface AwsCredentialIdentity {
        accessKeyId: string;
        secretAccessKey: string;
        sessionToken?: string;
    }
    Index

    Properties

    accessKeyId: string
    secretAccessKey: string
    sessionToken?: string