IBM COS SDK for JavaScript V2 - v1.0.0
    Preparing search index...
    interface RemoteProviderInit {
        parentClientConfig?: {
            region?: string | Provider<string>;
            profile?: string;
            logger?: Logger;
            userAgentAppId?(): Promise<string | undefined>;
            [key: string]: unknown;
        };
    }

    Hierarchy

    • RemoteProviderInit
    • CredentialProviderOptions
      • RemoteProviderInit
    Index

    Properties

    parentClientConfig?: {
        region?: string | Provider<string>;
        profile?: string;
        logger?: Logger;
        userAgentAppId?(): Promise<string | undefined>;
        [key: string]: unknown;
    }

    Present if the credential provider was created by calling the defaultCredentialProvider in a client's middleware, having access to the client's config.

    The region of that parent or outer client is important because an inner client used by the credential provider may need to match its default partition or region with that of the outer client.

    • not truly deprecated, marked as a warning to not use this.