@aws-amplify/core

  • Version 6.12.1
  • Published
  • 2.4 MB
  • 8 dependencies
  • Apache-2.0 license

Install

npm i @aws-amplify/core
yarn add @aws-amplify/core
pnpm add @aws-amplify/core

Overview

Core category of aws-amplify

Index

Variables

Functions

Classes

Interfaces

Type Aliases

Variables

variable Amplify

const Amplify: AmplifyClass;
  • The Amplify utility is used to configure the library.

    Remarks

    Amplify orchestrates cross-category communication within the library.

variable Cache

const Cache: StorageCache;

    variable defaultStorage

    const defaultStorage: DefaultStorage;

      variable Hub

      const Hub: HubClass;

        variable sessionStorage

        const sessionStorage: SessionStorage;

          variable sharedInMemoryStorage

          const sharedInMemoryStorage: KeyValueStorage;

            variable syncSessionStorage

            const syncSessionStorage: SyncSessionStorage;

              Functions

              function clearCredentials

              clearCredentials: () => Promise<void>;

                function cognitoIdentityPoolEndpointResolver

                cognitoIdentityPoolEndpointResolver: ({ region }: EndpointResolverOptions) => {
                url: URL;
                };

                  function createGetCredentialsForIdentityClient

                  createGetCredentialsForIdentityClient: (
                  config: ServiceClientFactoryInput
                  ) => (
                  config: {
                  userAgentValue?: string | undefined;
                  endpointResolver?: ((
                  options: import('../../../../clients').EndpointResolverOptions,
                  input?: any
                  ) => import('../../../../clients').Endpoint) &
                  ((options: import('../../../../clients').EndpointResolverOptions) => {
                  url: URL;
                  });
                  service?: string | undefined;
                  retryDecider?: ((
                  response?: HttpResponse | undefined,
                  error?: unknown,
                  middlewareContext?: import('../../../../clients').MiddlewareContext
                  ) => Promise<import('../../../../clients').RetryDeciderOutput>) &
                  ((
                  response?: HttpResponse,
                  error?: unknown
                  ) => Promise<import('../../../../clients').RetryDeciderOutput>);
                  computeDelay?: (attempt: number) => number;
                  cache?:
                  | 'default'
                  | 'force-cache'
                  | 'no-cache'
                  | 'no-store'
                  | 'only-if-cached'
                  | 'reload'
                  | undefined;
                  } & { [x: string]: unknown },
                  input: GetCredentialsForIdentityInput
                  ) => Promise<GetCredentialsForIdentityCommandOutput>;

                    function createGetIdClient

                    createGetIdClient: (
                    config: ServiceClientFactoryInput
                    ) => (
                    config: {
                    userAgentValue?: string | undefined;
                    endpointResolver?: ((
                    options: import('../../../../clients').EndpointResolverOptions,
                    input?: any
                    ) => import('../../../../clients').Endpoint) &
                    ((options: import('../../../../clients').EndpointResolverOptions) => {
                    url: URL;
                    });
                    service?: string | undefined;
                    retryDecider?: ((
                    response?: HttpResponse | undefined,
                    error?: unknown,
                    middlewareContext?: import('../../../../clients').MiddlewareContext
                    ) => Promise<import('../../../../clients').RetryDeciderOutput>) &
                    ((
                    response?: HttpResponse,
                    error?: unknown
                    ) => Promise<import('../../../../clients').RetryDeciderOutput>);
                    computeDelay?: (attempt: number) => number;
                    cache?:
                    | 'default'
                    | 'force-cache'
                    | 'no-cache'
                    | 'no-store'
                    | 'only-if-cached'
                    | 'reload'
                    | undefined;
                    } & { [x: string]: unknown },
                    input: import('./types').GetIdInput
                    ) => Promise<GetIdCommandOutput>;

                      function decodeJWT

                      decodeJWT: (token: string) => JWT;
                      • Decodes payload of JWT token

                        Parameter token

                        A string representing a token to be decoded

                        Throws

                        Error - Throws error when token is invalid or payload malformed.

                      function fetchAuthSession

                      fetchAuthSession: (options?: FetchAuthSessionOptions) => Promise<AuthSession>;
                      • Fetch the auth session including the tokens and credentials if they are available. By default it does not refresh the auth tokens or credentials if they are loaded in storage already. You can force a refresh with { forceRefresh: true } input.

                        Parameter options

                        Options configuring the fetch behavior.

                        Returns

                        Promise

                        Throws

                        AuthError - Throws error when session information cannot be refreshed.

                      Classes

                      class AmplifyClassV6

                      class AmplifyClass {}

                        constructor

                        constructor();

                          property libraryOptions

                          libraryOptions: LibraryOptions;

                            property resourcesConfig

                            resourcesConfig: ResourcesConfig;

                              method configure

                              configure: (
                              resourcesConfig: ResourcesConfig | LegacyConfig | AmplifyOutputsUnknown,
                              libraryOptions?: LibraryOptions
                              ) => void;
                              • Configures Amplify for use with your back-end resources.

                                Parameter resourceConfig

                                Back-end resource configuration. Typically provided via the aws-exports.js file.

                                Parameter libraryOptions

                                Additional options for customizing the behavior of the library.

                                Remarks

                                configure can be used to specify additional library options where available for supported categories.

                              method getConfig

                              getConfig: () => Readonly<ResourcesConfig>;
                              • Provides access to the current back-end resource configuration for the Library.

                                Returns

                                Returns the immutable back-end resource configuration.

                              class ConsoleLogger

                              class ConsoleLogger implements Logger {}
                              • Write logs Logger

                              constructor

                              constructor(name: string, level?: string);
                              • Parameter name

                                Name of the logger

                              property BIND_ALL_LOG_LEVELS

                              static BIND_ALL_LOG_LEVELS: boolean;

                                property level

                                level: string;

                                  property LOG_LEVEL

                                  static LOG_LEVEL: string;

                                    property name

                                    name: string;

                                      method addPluggable

                                      addPluggable: (pluggable: LoggingProvider) => void;

                                        method configure

                                        configure: (config?: object) => object | undefined;

                                          method debug

                                          debug: (...msg: any) => void;
                                          • Write DEBUG log Logger

                                            Parameter msg

                                            Logging message or object

                                          method error

                                          error: (...msg: any) => void;
                                          • Write ERROR log Logger

                                            Parameter msg

                                            Logging message or object

                                          method info

                                          info: (...msg: any) => void;
                                          • Write INFO log Logger

                                            Parameter msg

                                            Logging message or object

                                          method listPluggables

                                          listPluggables: () => LoggingProvider[];

                                            method log

                                            log: (...msg: any) => void;
                                            • Write General log. Default to INFO Logger

                                              Parameter msg

                                              Logging message or object

                                            method verbose

                                            verbose: (...msg: any) => void;
                                            • Write VERBOSE log Logger

                                              Parameter msg

                                              Logging message or object

                                            method warn

                                            warn: (...msg: any) => void;
                                            • Write WARN log Logger

                                              Parameter msg

                                              Logging message or object

                                            class CookieStorage

                                            class CookieStorage implements KeyValueStorageInterface {}

                                              constructor

                                              constructor(data?: CookieStorageData);

                                                property domain

                                                domain?: string;

                                                  property expires

                                                  expires?: number;

                                                    property path

                                                    path: string;

                                                      property sameSite

                                                      sameSite?: SameSite;

                                                        property secure

                                                        secure?: boolean;

                                                          method clear

                                                          clear: () => Promise<void>;

                                                            method getItem

                                                            getItem: (key: string) => Promise<string | null>;

                                                              method removeItem

                                                              removeItem: (key: string) => Promise<void>;

                                                                method setItem

                                                                setItem: (key: string, value: string) => Promise<void>;

                                                                  class I18n

                                                                  class I18n {}
                                                                  • Export I18n APIs

                                                                  method checkConfig

                                                                  static checkConfig: () => boolean;

                                                                    method configure

                                                                    static configure: (config: Record<string, any>) => I18nConfig;
                                                                    • Configure I18n part

                                                                      Parameter config

                                                                      Configuration of the I18n

                                                                    method createInstance

                                                                    static createInstance: () => void;
                                                                    • Create an instance of I18n for the library

                                                                    method get

                                                                    static get: (key: string, defVal?: string) => any;
                                                                    • Get value

                                                                      Parameter key

                                                                      Parameter defVal

                                                                      Default value

                                                                    method getModuleName

                                                                    static getModuleName: () => string;

                                                                      method putVocabularies

                                                                      static putVocabularies: (
                                                                      vocabularies: Record<string, Record<string, string>>
                                                                      ) => void;
                                                                      • Add vocabularies for one language

                                                                        Parameter vocabularies

                                                                        Object that has language as key, vocabularies of each language as value

                                                                      method putVocabulariesForLanguage

                                                                      static putVocabulariesForLanguage: (
                                                                      language: string,
                                                                      vocabularies: Record<string, string>
                                                                      ) => void;
                                                                      • Add vocabularies for one language

                                                                        Parameter language

                                                                        Language of the dictionary

                                                                        Parameter vocabularies

                                                                        Object that has key-value as dictionary entry

                                                                      method setLanguage

                                                                      static setLanguage: (lang: string) => void;
                                                                      • Explicitly setting language

                                                                        Parameter lang

                                                                      class ServiceWorker

                                                                      class ServiceWorkerClass {}
                                                                      • Provides a means to registering a service worker in the browser and communicating with it via postMessage events. https://developer.mozilla.org/en-US/docs/Web/API/Service_Worker_API/

                                                                        postMessage events are currently not supported in all browsers. See: https://developer.mozilla.org/en-US/docs/Web/API/Service_Worker_API

                                                                        At the minmum this class will register the service worker and listen and attempt to dispatch messages on state change and record analytics events based on the service worker lifecycle.

                                                                      property serviceWorker

                                                                      readonly serviceWorker: ServiceWorker;
                                                                      • Get the currently active service worker

                                                                      method enablePush

                                                                      enablePush: (publicKey: string) => Promise<unknown>;
                                                                      • Enable web push notifications. If not subscribed, a new subscription will be created and registered. Test Push Server: https://web-push-codelab.glitch.me/ Push Server Libraries: https://github.com/web-push-libs/ API Doc: https://developers.google.com/web/fundamentals/codelabs/push-notifications/

                                                                        Parameter publicKey

                                                                        Returns

                                                                        {Promise} - resolve(PushSubscription) - reject(Error)

                                                                      method register

                                                                      register: (filePath?: string, scope?: string) => Promise<unknown>;
                                                                      • Register the service-worker.js file in the browser Make sure the service-worker.js is part of the build for example with Angular, modify the angular-cli.json file and add to "assets" array "service-worker.js"

                                                                        Parameter filePath

                                                                        Service worker file. Defaults to "/service-worker.js"

                                                                        Parameter scope

                                                                        The service worker scope. Defaults to "/" - API Doc: https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorkerContainer/register

                                                                        Returns

                                                                        {Promise} - resolve(ServiceWorkerRegistration) - reject(Error)

                                                                      method send

                                                                      send: (message: object | string) => void;
                                                                      • Send a message to the service worker. The service worker needs to implement `self.addEventListener('message') to handle the message. This ***currently*** does not work in Safari or IE.

                                                                        Parameter message

                                                                        An arbitrary JSON object or string message to send to the service worker - see: https://developer.mozilla.org/en-US/docs/Web/API/Transferable

                                                                        Returns

                                                                        {Promise}

                                                                      Interfaces

                                                                      interface AuthSession

                                                                      interface AuthSession {}

                                                                        property credentials

                                                                        credentials?: AWSCredentials;

                                                                          property identityId

                                                                          identityId?: string;

                                                                            property tokens

                                                                            tokens?: AuthTokens;

                                                                              property userSub

                                                                              userSub?: string;

                                                                                interface AuthTokens

                                                                                interface AuthTokens {}

                                                                                  property accessToken

                                                                                  accessToken: JWT;

                                                                                    property idToken

                                                                                    idToken?: JWT;

                                                                                      property signInDetails

                                                                                      signInDetails?: AWSAuthSignInDetails;
                                                                                      • Deprecated

                                                                                        Use getCurrentUser to access signInDetails

                                                                                      interface AuthUserPoolAndIdentityPoolConfig

                                                                                      interface AuthUserPoolAndIdentityPoolConfig {}

                                                                                        property Cognito

                                                                                        Cognito: CognitoUserPoolAndIdentityPoolConfig;

                                                                                          interface AuthUserPoolConfig

                                                                                          interface AuthUserPoolConfig {}

                                                                                            property Cognito

                                                                                            Cognito: CognitoUserPoolConfig & {
                                                                                            identityPoolId?: never;
                                                                                            identityPoolEndpoint?: never;
                                                                                            allowGuestAccess?: never;
                                                                                            };

                                                                                              interface CacheConfig

                                                                                              interface CacheConfig {}
                                                                                              • Cache instance options

                                                                                              property capacityInBytes

                                                                                              capacityInBytes: number;
                                                                                              • Cache capacity, in bytes

                                                                                              property defaultPriority

                                                                                              defaultPriority: number;
                                                                                              • default priority number put on cached items

                                                                                              property defaultTTL

                                                                                              defaultTTL: number;
                                                                                              • Time to live, in milliseconds

                                                                                              property itemMaxSize

                                                                                              itemMaxSize: number;
                                                                                              • Max size of one item

                                                                                              property keyPrefix

                                                                                              keyPrefix: string;
                                                                                              • Prepend to key to avoid conflicts

                                                                                              property storage

                                                                                              storage?: Storage;

                                                                                                property warningThreshold

                                                                                                warningThreshold: number;
                                                                                                • Warn when over threshold percentage of capacity, maximum 1

                                                                                                interface CognitoUserPoolConfig

                                                                                                interface CognitoUserPoolConfig {}

                                                                                                  property groups

                                                                                                  groups?: Record<UserGroupName, UserGroupPrecedence>[];

                                                                                                    property loginWith

                                                                                                    loginWith?: {
                                                                                                    oauth?: OAuthConfig;
                                                                                                    username?: boolean;
                                                                                                    email?: boolean;
                                                                                                    phone?: boolean;
                                                                                                    };

                                                                                                      property mfa

                                                                                                      mfa?: {
                                                                                                      status?: CognitoUserPoolConfigMfaStatus;
                                                                                                      totpEnabled?: boolean;
                                                                                                      smsEnabled?: boolean;
                                                                                                      };

                                                                                                        property passwordFormat

                                                                                                        passwordFormat?: {
                                                                                                        minLength?: number;
                                                                                                        requireLowercase?: boolean;
                                                                                                        requireUppercase?: boolean;
                                                                                                        requireNumbers?: boolean;
                                                                                                        requireSpecialCharacters?: boolean;
                                                                                                        };

                                                                                                          property signUpVerificationMethod

                                                                                                          signUpVerificationMethod?: 'code' | 'link';

                                                                                                            property userAttributes

                                                                                                            userAttributes?: AuthConfigUserAttributes;

                                                                                                              property userPoolClientId

                                                                                                              userPoolClientId: string;

                                                                                                                property userPoolEndpoint

                                                                                                                userPoolEndpoint?: string;
                                                                                                                • Use this field to specify a custom endpoint for the Amazon Cognito user pool. Ensure this endpoint is correct and valid.

                                                                                                                property userPoolId

                                                                                                                userPoolId: string;

                                                                                                                  interface CredentialsAndIdentityId

                                                                                                                  interface CredentialsAndIdentityId {}

                                                                                                                    property credentials

                                                                                                                    credentials: AWSCredentials;

                                                                                                                      property identityId

                                                                                                                      identityId?: string;

                                                                                                                        interface CredentialsAndIdentityIdProvider

                                                                                                                        interface CredentialsAndIdentityIdProvider {}

                                                                                                                          method clearCredentialsAndIdentityId

                                                                                                                          clearCredentialsAndIdentityId: () => void;

                                                                                                                            method getCredentialsAndIdentityId

                                                                                                                            getCredentialsAndIdentityId: (
                                                                                                                            getCredentialsOptions: GetCredentialsOptions
                                                                                                                            ) => Promise<CredentialsAndIdentityId | undefined>;

                                                                                                                              interface FetchAuthSessionOptions

                                                                                                                              interface FetchAuthSessionOptions {}

                                                                                                                                property forceRefresh

                                                                                                                                forceRefresh?: boolean;

                                                                                                                                  interface GetCredentialsForIdentityInput

                                                                                                                                  interface GetCredentialsForIdentityInput {}
                                                                                                                                  • Input to the GetCredentialsForIdentity action.

                                                                                                                                    Modifiers

                                                                                                                                    • @public

                                                                                                                                  property CustomRoleArn

                                                                                                                                  CustomRoleArn?: string;
                                                                                                                                  • The Amazon Resource Name (ARN) of the role to be assumed when multiple roles were received in the token from the identity provider. For example, a SAML-based identity provider. This parameter is optional for identity providers that do not support role customization.

                                                                                                                                  property IdentityId

                                                                                                                                  IdentityId: string | undefined;
                                                                                                                                  • A unique identifier in the format REGION:GUID.

                                                                                                                                  property Logins

                                                                                                                                  Logins?: Record<string, string>;
                                                                                                                                  • A set of optional name-value pairs that map provider names to provider tokens. The name-value pair will follow the syntax "provider_name": "provider_user_identifier". Logins should not be specified when trying to get credentials for an unauthenticated identity. The Logins parameter is required when using identities associated with external identity providers such as Facebook. For examples of Logins maps, see the code examples in the External Identity Providers section of the Amazon Cognito Developer Guide.

                                                                                                                                  interface GetCredentialsForIdentityOutput

                                                                                                                                  interface GetCredentialsForIdentityCommandOutput
                                                                                                                                  extends GetCredentialsForIdentityResponse,
                                                                                                                                  __MetadataBearer {}

                                                                                                                                  interface HubCapsule

                                                                                                                                  interface HubCapsule<Channel extends string, EventData extends EventDataMap> {}

                                                                                                                                    property channel

                                                                                                                                    channel: Channel;

                                                                                                                                      property patternInfo

                                                                                                                                      patternInfo?: string[];

                                                                                                                                        property payload

                                                                                                                                        payload: HubPayload<EventData>;

                                                                                                                                          property source

                                                                                                                                          source?: string;

                                                                                                                                            interface Identity

                                                                                                                                            interface Identity {}

                                                                                                                                              property id

                                                                                                                                              id: string;

                                                                                                                                                property type

                                                                                                                                                type: 'guest' | 'primary';

                                                                                                                                                  interface JWT

                                                                                                                                                  interface JWT {}

                                                                                                                                                    property payload

                                                                                                                                                    payload: JwtPayload;

                                                                                                                                                      method toString

                                                                                                                                                      toString: () => string;

                                                                                                                                                        interface KeyValueStorageInterface

                                                                                                                                                        interface KeyValueStorageInterface {}

                                                                                                                                                          method clear

                                                                                                                                                          clear: () => Promise<void>;

                                                                                                                                                            method getItem

                                                                                                                                                            getItem: (key: string) => Promise<string | null>;

                                                                                                                                                              method removeItem

                                                                                                                                                              removeItem: (key: string) => Promise<void>;

                                                                                                                                                                method setItem

                                                                                                                                                                setItem: (key: string, value: string) => Promise<void>;

                                                                                                                                                                  interface LibraryOptions

                                                                                                                                                                  interface LibraryOptions {}
                                                                                                                                                                  • Amplify library options type. Used to customize library behavior.

                                                                                                                                                                  property API

                                                                                                                                                                  API?: LibraryAPIOptions;

                                                                                                                                                                    property Auth

                                                                                                                                                                    Auth?: LibraryAuthOptions;

                                                                                                                                                                      property ssr

                                                                                                                                                                      ssr?: boolean;

                                                                                                                                                                        property Storage

                                                                                                                                                                        Storage?: LibraryStorageOptions;

                                                                                                                                                                          interface OAuthConfig

                                                                                                                                                                          interface OAuthConfig {}

                                                                                                                                                                            property domain

                                                                                                                                                                            domain: string;

                                                                                                                                                                              property providers

                                                                                                                                                                              providers?: (OAuthProvider | CustomProvider)[];

                                                                                                                                                                                property redirectSignIn

                                                                                                                                                                                redirectSignIn: string[];

                                                                                                                                                                                  property redirectSignOut

                                                                                                                                                                                  redirectSignOut: string[];

                                                                                                                                                                                    property responseType

                                                                                                                                                                                    responseType: 'code' | 'token';

                                                                                                                                                                                      property scopes

                                                                                                                                                                                      scopes: OAuthScope[];

                                                                                                                                                                                        interface ResourcesConfig

                                                                                                                                                                                        interface ResourcesConfig {}
                                                                                                                                                                                        • Amplify library configuration type. Used to specify back-end resource configuration across the library.

                                                                                                                                                                                        property Analytics

                                                                                                                                                                                        Analytics?: AnalyticsConfig;

                                                                                                                                                                                          property API

                                                                                                                                                                                          API?: APIConfig;

                                                                                                                                                                                            property Auth

                                                                                                                                                                                            Auth?: AuthConfig;

                                                                                                                                                                                              property Geo

                                                                                                                                                                                              Geo?: GeoConfig;

                                                                                                                                                                                                property Interactions

                                                                                                                                                                                                Interactions?: InteractionsConfig;

                                                                                                                                                                                                  property Notifications

                                                                                                                                                                                                  Notifications?: NotificationsConfig;

                                                                                                                                                                                                    property Predictions

                                                                                                                                                                                                    Predictions?: PredictionsConfig;

                                                                                                                                                                                                      property Storage

                                                                                                                                                                                                      Storage?: StorageConfig;

                                                                                                                                                                                                        interface TokenProvider

                                                                                                                                                                                                        interface TokenProvider {}

                                                                                                                                                                                                          method getTokens

                                                                                                                                                                                                          getTokens: (options?: { forceRefresh?: boolean }) => Promise<AuthTokens | null>;

                                                                                                                                                                                                            interface UserProfile

                                                                                                                                                                                                            interface UserProfile {}

                                                                                                                                                                                                              property customProperties

                                                                                                                                                                                                              customProperties?: Record<string, string[]>;

                                                                                                                                                                                                                property demographic

                                                                                                                                                                                                                demographic?: {
                                                                                                                                                                                                                appVersion?: string;
                                                                                                                                                                                                                locale?: string;
                                                                                                                                                                                                                make?: string;
                                                                                                                                                                                                                model?: string;
                                                                                                                                                                                                                modelVersion?: string;
                                                                                                                                                                                                                platform?: string;
                                                                                                                                                                                                                platformVersion?: string;
                                                                                                                                                                                                                timezone?: string;
                                                                                                                                                                                                                };

                                                                                                                                                                                                                  property email

                                                                                                                                                                                                                  email?: string;

                                                                                                                                                                                                                    property location

                                                                                                                                                                                                                    location?: {
                                                                                                                                                                                                                    city?: string;
                                                                                                                                                                                                                    country?: string;
                                                                                                                                                                                                                    latitude?: number;
                                                                                                                                                                                                                    longitude?: number;
                                                                                                                                                                                                                    postalCode?: string;
                                                                                                                                                                                                                    region?: string;
                                                                                                                                                                                                                    };

                                                                                                                                                                                                                      property metrics

                                                                                                                                                                                                                      metrics?: Record<string, number>;

                                                                                                                                                                                                                        property name

                                                                                                                                                                                                                        name?: string;

                                                                                                                                                                                                                          property plan

                                                                                                                                                                                                                          plan?: string;

                                                                                                                                                                                                                            Type Aliases

                                                                                                                                                                                                                            type AnalyticsConfig

                                                                                                                                                                                                                            type AnalyticsConfig = AtLeastOne<
                                                                                                                                                                                                                            PinpointProviderConfig &
                                                                                                                                                                                                                            KinesisProviderConfig &
                                                                                                                                                                                                                            KinesisFirehoseProviderConfig &
                                                                                                                                                                                                                            PersonalizeProviderConfig
                                                                                                                                                                                                                            >;

                                                                                                                                                                                                                              type APIConfig

                                                                                                                                                                                                                              type APIConfig = AtLeastOne<
                                                                                                                                                                                                                              RESTProviderConfig & GraphQLProviderConfig & EventsProviderConfig
                                                                                                                                                                                                                              >;

                                                                                                                                                                                                                                type AuthConfig

                                                                                                                                                                                                                                type AuthConfig = AtLeastOne<CognitoProviderConfig>;

                                                                                                                                                                                                                                  type GeoConfig

                                                                                                                                                                                                                                  type GeoConfig = AtLeastOne<LocationServiceConfig>;

                                                                                                                                                                                                                                    type GetCredentialsOptions

                                                                                                                                                                                                                                    type GetCredentialsOptions =
                                                                                                                                                                                                                                    | GetCredentialsAuthenticatedUser
                                                                                                                                                                                                                                    | GetCredentialsUnauthenticatedUser;

                                                                                                                                                                                                                                      type HubCallback

                                                                                                                                                                                                                                      type HubCallback<
                                                                                                                                                                                                                                      Channel extends string = string,
                                                                                                                                                                                                                                      EventData extends EventDataMap = EventDataMap
                                                                                                                                                                                                                                      > = (capsule: HubCapsule<Channel, EventData>) => void;

                                                                                                                                                                                                                                        type HubPayload

                                                                                                                                                                                                                                        type HubPayload<EventData extends EventDataMap = EventDataMap> = EventData & {
                                                                                                                                                                                                                                        message?: string;
                                                                                                                                                                                                                                        };

                                                                                                                                                                                                                                          type PredictionsConfig

                                                                                                                                                                                                                                          type PredictionsConfig = AtLeastOne<
                                                                                                                                                                                                                                          PredictionsConvertConfig & PredictionsIdentifyConfig & PredictionsInterpretConfig
                                                                                                                                                                                                                                          >;

                                                                                                                                                                                                                                            type StorageAccessLevel

                                                                                                                                                                                                                                            type StorageAccessLevel = 'guest' | 'protected' | 'private';
                                                                                                                                                                                                                                            • Deprecated

                                                                                                                                                                                                                                              This may be removed in the next major version.

                                                                                                                                                                                                                                            type StorageConfig

                                                                                                                                                                                                                                            type StorageConfig = AtLeastOne<S3ProviderConfig>;

                                                                                                                                                                                                                                              Package Files (27)

                                                                                                                                                                                                                                              Dependencies (8)

                                                                                                                                                                                                                                              Dev Dependencies (3)

                                                                                                                                                                                                                                              Peer Dependencies (0)

                                                                                                                                                                                                                                              No peer dependencies.

                                                                                                                                                                                                                                              Badge

                                                                                                                                                                                                                                              To add a badge like this onejsDocs.io badgeto your package's README, use the codes available below.

                                                                                                                                                                                                                                              You may also use Shields.io to create a custom badge linking to https://www.jsdocs.io/package/@aws-amplify/core.

                                                                                                                                                                                                                                              • Markdown
                                                                                                                                                                                                                                                [![jsDocs.io](https://img.shields.io/badge/jsDocs.io-reference-blue)](https://www.jsdocs.io/package/@aws-amplify/core)
                                                                                                                                                                                                                                              • HTML
                                                                                                                                                                                                                                                <a href="https://www.jsdocs.io/package/@aws-amplify/core"><img src="https://img.shields.io/badge/jsDocs.io-reference-blue" alt="jsDocs.io"></a>