prorm API Reference
    Preparing search index...

    Interface SnsStoreOptions

    Connection options for SnsStore.

    interface SnsStoreOptions {
        region?: string;
        credentials?: {
            accessKeyId: string;
            secretAccessKey: string;
            sessionToken?: string;
        };
        endpoint?: string;
        client?: SnsClientLike;
    }
    Index
    region?: string

    AWS region, e.g. 'us-east-1'.

    credentials?: {
        accessKeyId: string;
        secretAccessKey: string;
        sessionToken?: string;
    }

    Static credentials. Omit to use the default AWS credential provider chain.

    endpoint?: string

    Override the service endpoint (e.g. 'http://localhost:4566' for LocalStack).

    client?: SnsClientLike

    A pre-built SNSClient (or compatible object). When provided, connect() uses it directly and does NOT require the SDK — this is how tests inject a mock client.