diff --git a/classes/_aws_amplify_ai_constructs.conversation.ConversationHandlerFunction.html b/classes/_aws_amplify_ai_constructs.conversation.ConversationHandlerFunction.html index 362f82171e..fe0c8259e0 100644 --- a/classes/_aws_amplify_ai_constructs.conversation.ConversationHandlerFunction.html +++ b/classes/_aws_amplify_ai_constructs.conversation.ConversationHandlerFunction.html @@ -8,7 +8,7 @@
  • AWS CloudWatch log group policy with appropriate data protection policies.
  • AWS IAM policy that grants access to selected AWS Bedrock models.
  • -

    Hierarchy

    Implements

    Constructors

    Hierarchy

    • Construct
      • ConversationHandlerFunction

    Implements

    Constructors

    Properties

    Constructors

    Properties

    node: Node

    The tree node.

    -
    eventVersion: `1.${number}` = '1.0'

    Methods

    Properties

    node: Node

    The tree node.

    +
    eventVersion: `1.${number}` = '1.0'

    Methods

    • Returns a string representation of this construct.

      Returns string

    Properties

    computedUserPoolProps: UserPoolProps
    customEmailSenderKMSkey: undefined | IKey

    The KMS key used for encrypting custom email sender data. This is only set when using a custom email sender.

    -
    domainPrefix: undefined | string
    groups: {
        [key: string]: {
            cfnUserGroup: CfnUserPoolGroup;
            role: Role;
        };
    } = {}

    Type declaration

    • [key: string]: {
          cfnUserGroup: CfnUserPoolGroup;
          role: Role;
      }
      • cfnUserGroup: CfnUserPoolGroup
      • role: Role
    name: string
    node: Node

    The tree node.

    +
    domainPrefix: undefined | string
    groups: {
        [key: string]: {
            cfnUserGroup: CfnUserPoolGroup;
            role: Role;
        };
    } = {}

    Type declaration

    • [key: string]: {
          cfnUserGroup: CfnUserPoolGroup;
          role: Role;
      }
      • cfnUserGroup: CfnUserPoolGroup
      • role: Role
    name: string
    node: Node

    The tree node.

    providerSetupResult: IdentityProviderSetupResult

    External provider settings

    -
    resources: AuthResources

    The resources generated by the construct.

    -
    userPool: UserPool

    Methods

    • Define bindCustomAttribute to meet requirements of the Cognito API to call the bind method

      -

      Parameters

      Returns CustomAttributeConfig & ICustomAttribute

    resources: AuthResources

    The resources generated by the construct.

    +
    userPool: UserPool

    Methods

    • Define bindCustomAttribute to meet requirements of the Cognito API to call the bind method

      +

      Parameters

      Returns CustomAttributeConfig & ICustomAttribute

    • Convert user friendly account recovery method to cognito AccountRecover enum. This eliminates the need for users to import cognito.AccountRecovery.

      Parameters

      • method: undefined | "EMAIL_AND_PHONE_WITHOUT_MFA" | "PHONE_WITHOUT_MFA_AND_EMAIL" | "EMAIL_ONLY" | "PHONE_ONLY_WITHOUT_MFA" | "PHONE_AND_EMAIL" | "NONE"

        account recovery method as a string value

      Returns undefined | AccountRecovery

      cognito.AccountRecovery enum value

      -
    • Converts the simplified mapping type to cognito.AttributeMapping.

      Parameters

      • Optional mapping: AttributeMapping

        the AttributeMapping to convert to a cognito.AttributeMapping

      Returns undefined | AttributeMapping

      cognito.AttributeMapping

      -
    • Determine the account recovery option based on enabled login methods.

      +
    • Determine the account recovery option based on enabled login methods.

      Parameters

      • emailEnabled: boolean

        is email enabled

      • phoneEnabled: boolean

        is phone enabled

      • accountRecoveryMethodAsString: undefined | "EMAIL_AND_PHONE_WITHOUT_MFA" | "PHONE_WITHOUT_MFA_AND_EMAIL" | "EMAIL_ONLY" | "PHONE_ONLY_WITHOUT_MFA" | "PHONE_AND_EMAIL" | "NONE"

        the user provided account recovery setting

      Returns undefined | AccountRecovery

      account recovery setting enum value

      -
    • Get email verification style from user props

      Parameters

      • verificationEmailStyle: undefined | "LINK" | "CODE"

        string value

      Returns undefined | VerificationEmailStyle

      verificationEmailStyle - enum value

      -
    • Convert user friendly Mfa mode to cognito Mfa Mode. This eliminates the need for users to import cognito.Mfa.

      Parameters

      • mfa: undefined | MFA

        MFA settings

      Returns undefined | Mfa

      cognito MFA enforcement mode

      -
    • Convert user friendly Mfa type to cognito Mfa type. This eliminates the need for users to import cognito.Mfa.

      Parameters

      • mfa: undefined | MFA

        MFA settings

      Returns undefined | MfaSecondFactor

      cognito MFA type (sms or totp)

      -
    • Convert scopes from string list to OAuthScopes.

      Parameters

      • scopes: undefined | ("PHONE" | "EMAIL" | "OPENID" | "PROFILE" | "COGNITO_ADMIN")[]

        scope list

      Returns OAuthScope[]

      cognito OAuthScopes

      -
    • Parses the user invitation settings and inserts codes/usernames where necessary.

      Parameters

      • settings: undefined | {
            emailBody?: ((username, code) => string);
            emailSubject?: string;
            smsMessage?: ((username, code) => string);
        }

        the invitation settings

      Returns undefined | UserInvitationConfig

      cognito.UserInvitationConfig | undefined

      -
    • Setup External Providers (OAuth/OIDC/SAML) and related settings such as OAuth settings and User Pool Domains

      Parameters

      • userPool: UserPool
      • loginOptions: {
            email?: EmailLogin;
            externalProviders?: ExternalProviderOptions;
            phone?: PhoneNumberLogin;
        }
        • Optional email?: EmailLogin

          Email login options.

          If true, email login will be enabled with default settings. @@ -80,15 +80,15 @@

        • Optional phone?: PhoneNumberLogin

          Phone number login options.

          If true, phone number login will be enabled with default settings. If settings are provided, phone number login will be enabled with the specified settings.

          -

      Returns IdentityProviderSetupResult

    • Setup Identity Pool with default roles/role mappings, and register providers

      -

      Parameters

      • userPool: UserPool
      • userPoolClient: UserPoolClient
      • providerSetupResult: IdentityProviderSetupResult

      Returns {
          identityPool: CfnIdentityPool;
          identityPoolRoleAttachment: CfnIdentityPoolRoleAttachment;
          roles: DefaultRoles;
      }

      • identityPool: CfnIdentityPool
      • identityPoolRoleAttachment: CfnIdentityPoolRoleAttachment
      • roles: DefaultRoles
    • Auto generate the user pool groups and group roles

      -

      Parameters

      • groups: undefined | string[]
      • identityPool: CfnIdentityPool

      Returns void

    • Stores auth output using the provided strategy

      -

      Parameters

      • outputStorageStrategy: BackendOutputStorageStrategy<{
            payload: {
                allowUnauthenticatedIdentities?: string;
                authRegion: string;
                groups?: string;
                identityPoolId: string;
                mfaConfiguration?: string;
                mfaTypes?: string;
                oauthClientId?: string;
                oauthCognitoDomain?: string;
                oauthRedirectSignIn?: string;
                oauthRedirectSignOut?: string;
                oauthResponseType?: string;
                oauthScope?: string;
                passwordPolicyMinLength?: string;
                passwordPolicyRequirements?: string;
                signupAttributes?: string;
                socialProviders?: string;
                userPoolId: string;
                usernameAttributes?: string;
                verificationMechanisms?: string;
                webClientId: string;
            };
            version: "1";
        }> = ...

      Returns void

    • Returns a string representation of this construct.

      +

    Returns IdentityProviderSetupResult

    Properties

    packageManagerController: PackageManagerController
    instance: undefined | BackendDeployer

    Methods

    \ No newline at end of file diff --git a/classes/_aws_amplify_backend_output_storage.AttributionMetadataStorage.html b/classes/_aws_amplify_backend_output_storage.AttributionMetadataStorage.html index 8a2b9aaecc..e45cd2fbfa 100644 --- a/classes/_aws_amplify_backend_output_storage.AttributionMetadataStorage.html +++ b/classes/_aws_amplify_backend_output_storage.AttributionMetadataStorage.html @@ -1,5 +1,5 @@ AttributionMetadataStorage | Amplify Toolbox

    Stores BI metrics information in stack descriptions

    -

    Constructors

    Constructors

    Properties

    os: __module = _os
    packageJsonReader: PackageJsonReader = ...

    Methods

    Properties

    os: __module = _os
    packageJsonReader: PackageJsonReader = ...

    Methods

    • Stores an attribution metadata string in the stack description of the provided stack Does nothing if the stack already has a non-empty description

      -

      Parameters

      • stack: Stack
      • stackType: string
      • libraryPackageJsonAbsolutePath: string
      • additionalMetadata: Record<string, string> = {}

      Returns void

    \ No newline at end of file +

    Parameters

    Returns void

    \ No newline at end of file diff --git a/classes/_aws_amplify_backend_output_storage.StackMetadataBackendOutputStorageStrategy.html b/classes/_aws_amplify_backend_output_storage.StackMetadataBackendOutputStorageStrategy.html index 91529f7986..dd792f8ca4 100644 --- a/classes/_aws_amplify_backend_output_storage.StackMetadataBackendOutputStorageStrategy.html +++ b/classes/_aws_amplify_backend_output_storage.StackMetadataBackendOutputStorageStrategy.html @@ -1,5 +1,5 @@ StackMetadataBackendOutputStorageStrategy | Amplify Toolbox

    Implementation of BackendOutputStorageStrategy that stores config data in stack metadata and outputs

    -

    Implements

    Constructors

    Implements

    Constructors

    Properties

    Methods

    Constructors

    Properties

    lazyListValueMap: Map<string, Map<string, string[]>> = ...
    stack: Stack

    Methods

    • Store construct output as stack output and add metadata to the metadata object.

      -

      Parameters

      Returns void

    Properties

    lazyListValueMap: Map<string, Map<string, string[]>> = ...
    stack: Stack

    Methods

    • Store construct output as stack output and add metadata to the metadata object.

      +

      Parameters

      Returns void

    • Add or update metadata entry.

      Parameters

      • existingMetadataEntry: undefined | {
            stackOutputs: string[];
            version: string;
        }

        The existing metadata entry.

      • keyName: string

        The key name.

      • backendOutputEntry: BackendOutputEntry

        The backend output entry.

        -

      Returns void

    • Lazily construct and append to output list as stack output and add metadata to the metadata object.

      -

      Parameters

      Returns void

    \ No newline at end of file +

    Returns void

    \ No newline at end of file diff --git a/classes/_aws_amplify_backend_platform_test_stubs.AmplifyStackStub.html b/classes/_aws_amplify_backend_platform_test_stubs.AmplifyStackStub.html index 7c4e928ab9..8e4c989f01 100644 --- a/classes/_aws_amplify_backend_platform_test_stubs.AmplifyStackStub.html +++ b/classes/_aws_amplify_backend_platform_test_stubs.AmplifyStackStub.html @@ -1,5 +1,5 @@ AmplifyStackStub | Amplify Toolbox

    Test implementation of AmplifyStack. Currently copied from the real implementation of AmplifyStack but the implementations do not need to match going forward

    -

    Hierarchy

    • Stack
      • AmplifyStackStub

    Constructors

    Hierarchy

    • Stack
      • AmplifyStackStub

    Constructors

    Properties

    _crossRegionReferences _notificationArns _versionReportingEnabled @@ -189,7 +189,7 @@

    Example

    declare const stack: Stack;

    stack.addTransform('AWS::Serverless-2016-10-31')
    \ No newline at end of file diff --git a/classes/_aws_amplify_backend_platform_test_stubs.ImportPathVerifierStub.html b/classes/_aws_amplify_backend_platform_test_stubs.ImportPathVerifierStub.html index 0dc6b19b58..cbf2169edd 100644 --- a/classes/_aws_amplify_backend_platform_test_stubs.ImportPathVerifierStub.html +++ b/classes/_aws_amplify_backend_platform_test_stubs.ImportPathVerifierStub.html @@ -1,4 +1,4 @@ ImportPathVerifierStub | Amplify Toolbox

    Stub implementation of ImportPathVerifier

    -

    Implements

    Constructors

    Implements

    Constructors

    Methods

    Constructors

    Methods

    \ No newline at end of file +

    Constructors

    Methods

    \ No newline at end of file diff --git a/classes/_aws_amplify_backend_platform_test_stubs.ResourceNameValidatorStub.html b/classes/_aws_amplify_backend_platform_test_stubs.ResourceNameValidatorStub.html index 905117c9eb..eb5c66a47e 100644 --- a/classes/_aws_amplify_backend_platform_test_stubs.ResourceNameValidatorStub.html +++ b/classes/_aws_amplify_backend_platform_test_stubs.ResourceNameValidatorStub.html @@ -1,4 +1,4 @@ ResourceNameValidatorStub | Amplify Toolbox

    Stub implementation of ResourceNameValidator

    -

    Implements

    Constructors

    Implements

    Constructors

    Methods

    Constructors

    Methods

    \ No newline at end of file +

    Constructors

    Methods

    \ No newline at end of file diff --git a/classes/_aws_amplify_backend_platform_test_stubs.SsmEnvironmentEntriesGeneratorStub.html b/classes/_aws_amplify_backend_platform_test_stubs.SsmEnvironmentEntriesGeneratorStub.html index ceed1bf7b7..ff2efd0b7f 100644 --- a/classes/_aws_amplify_backend_platform_test_stubs.SsmEnvironmentEntriesGeneratorStub.html +++ b/classes/_aws_amplify_backend_platform_test_stubs.SsmEnvironmentEntriesGeneratorStub.html @@ -1,9 +1,9 @@ SsmEnvironmentEntriesGeneratorStub | Amplify Toolbox

    Stub implementation of SsmEnvironmentEntriesGenerator used for backend unit testing

    -

    Implements

    Constructors

    Implements

    Constructors

    Properties

    Methods

    Constructors

    Properties

    scope: Construct

    The scope of the construct.

    -

    Methods

    • Stub implementation for testing. Synthesizes SSM parameters using a test path.

      -

      Parameters

      • scopeContext: Record<string, string>

      Returns {
          name: string;
          path: string;
      }[]

    \ No newline at end of file +

    Returns SsmEnvironmentEntriesGeneratorStub

    Properties

    scope: Construct

    The scope of the construct.

    +

    Methods

    \ No newline at end of file diff --git a/classes/_aws_amplify_backend_platform_test_stubs.StackResolverStub.html b/classes/_aws_amplify_backend_platform_test_stubs.StackResolverStub.html index d399d3df23..ed584785fb 100644 --- a/classes/_aws_amplify_backend_platform_test_stubs.StackResolverStub.html +++ b/classes/_aws_amplify_backend_platform_test_stubs.StackResolverStub.html @@ -1,9 +1,9 @@ StackResolverStub | Amplify Toolbox

    Stub implementation of StackResolver. Currently copied from @aws-amplify/backend, but they can evolve independently

    -

    Implements

    Constructors

    Implements

    Constructors

    Properties

    Methods

    Constructors

    Properties

    rootStack: Stack
    stacks: Record<string, Stack> = {}

    Methods

    Properties

    rootStack: Stack
    stacks: Record<string, Stack> = {}

    Methods

    • Returns a cached NestedStack if resourceGroupName has been seen before Otherwise, creates a new NestedStack, caches it and returns it

      -

      Parameters

      • resourceGroupName: string

      Returns Stack

    \ No newline at end of file +

    Parameters

    Returns Stack

    \ No newline at end of file diff --git a/classes/_aws_amplify_backend_secret.SecretError.html b/classes/_aws_amplify_backend_secret.SecretError.html index 52b2090ac6..331bdfdece 100644 --- a/classes/_aws_amplify_backend_secret.SecretError.html +++ b/classes/_aws_amplify_backend_secret.SecretError.html @@ -1,5 +1,5 @@ SecretError | Amplify Toolbox

    Secret Error.

    -

    Hierarchy

    • Error
      • SecretError

    Constructors

    Hierarchy

    • Error
      • SecretError

    Constructors

    Properties

    Constructors

    • Creates a secret error instance.

      -

      Parameters

      • message: string
      • Optional options: {
            cause?: Error;
            httpStatusCode?: number;
        }
        • Optional cause?: Error
        • Optional httpStatusCode?: number

      Returns SecretError

    Properties

    cause?: Error
    httpStatusCode?: number
    message: string
    name: string
    stack?: string
    prepareStackTrace?: ((err, stackTraces) => any)

    Optional override for formatting stack traces

    +

    Parameters

    • message: string
    • Optional options: {
          cause?: Error;
          httpStatusCode?: number;
      }
      • Optional cause?: Error
      • Optional httpStatusCode?: number

    Returns SecretError

    Properties

    cause?: Error
    httpStatusCode?: number
    message: string
    name: string
    stack?: string
    prepareStackTrace?: ((err, stackTraces) => any)

    Optional override for formatting stack traces

    Type declaration

      • (err, stackTraces): any
      • Parameters

        • err: Error
        • stackTraces: CallSite[]

        Returns any

    stackTraceLimit: number

    Methods

    • Create .stack property on a target object

      Parameters

      • targetObject: object
      • Optional constructorOpt: Function

      Returns void

    \ No newline at end of file +

    Parameters

    Returns SecretError

    \ No newline at end of file diff --git a/classes/_aws_amplify_cli_core.AmplifyPrompter.html b/classes/_aws_amplify_cli_core.AmplifyPrompter.html index c70c1a04f8..1dc6c7f26d 100644 --- a/classes/_aws_amplify_cli_core.AmplifyPrompter.html +++ b/classes/_aws_amplify_cli_core.AmplifyPrompter.html @@ -1,7 +1,7 @@ AmplifyPrompter | Amplify Toolbox

    Wrapper for prompter library Because @inquirer/prompts library set the methods as non-configurable, we cannot mock the methods directly. see details: https://github.com/orgs/nodejs/discussions/47959

    -

    Constructors

    Constructors

    Methods

    input secretValue yesOrNo @@ -10,10 +10,10 @@
    • Optional defaultValue?: string

      if user submits without typing anything. Default: "."

    • message: string

      display for the prompt

    Returns Promise<string>

    Promise the user input

    -
    • A secret prompt.

      -

      Parameters

      • promptMessage: string = 'Enter secret value'

      Returns Promise<string>

    • A secret prompt.

      +

      Parameters

      • promptMessage: string = 'Enter secret value'

      Returns Promise<string>

    • A confirm style prompt. Styles question as y/N

      Parameters

      • options: {
            defaultValue?: boolean;
            message: string;
        }

        for displaying the prompt

        • Optional defaultValue?: boolean

          if user submits without typing anything. Defaults false

        • message: string

          display for the prompt

      Returns Promise<boolean>

      the boolean answer

      -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/classes/_aws_amplify_cli_core.Format.html b/classes/_aws_amplify_cli_core.Format.html index e6fa79925e..46753f0498 100644 --- a/classes/_aws_amplify_cli_core.Format.html +++ b/classes/_aws_amplify_cli_core.Format.html @@ -1,5 +1,5 @@ Format | Amplify Toolbox

    Formats various inputs into single string.

    -

    Constructors

    Constructors

    Properties

    Methods

    bold color @@ -16,4 +16,4 @@ sectionHeader success

    Constructors

    • Initialize with a package manager runner name. Defaults to attempting to load a value derived from environment variables.

      -

      Parameters

      • packageManagerRunnerName: string = ...

      Returns Format

    Properties

    packageManagerRunnerName: string = ...

    Methods

    • Parameters

      • message: string
      • colorName: "Green" | "Yellow" | "Blue" | "Magenta" | "Cyan"

      Returns string

    • Parameters

      • command: string

      Returns string

    • Parameters

      • command: string

      Returns string

    • Parameters

      • record: Record<string, string | number | Date>

      Returns string

    • Parameters

      • header: string

      Returns string

    \ No newline at end of file +

    Parameters

    Returns Format

    Properties

    packageManagerRunnerName: string = ...

    Methods

    \ No newline at end of file diff --git a/classes/_aws_amplify_cli_core.PackageManagerControllerFactory.html b/classes/_aws_amplify_cli_core.PackageManagerControllerFactory.html index 5faa84314f..820faa3e2a 100644 --- a/classes/_aws_amplify_cli_core.PackageManagerControllerFactory.html +++ b/classes/_aws_amplify_cli_core.PackageManagerControllerFactory.html @@ -1,11 +1,11 @@ PackageManagerControllerFactory | Amplify Toolbox

    PackageManagerControllerFactory is a factory for an abstraction around package manager commands that are needed to initialize a project and install dependencies

    -

    Constructors

    Constructors

    Properties

    cwd: string = ...

    the root directory of the project

    -
    platform: Platform = process.platform
    printer: Printer = _printer

    Methods

    \ No newline at end of file +
  • printer: Printer = _printer
  • platform: Platform = process.platform
  • Returns PackageManagerControllerFactory

    Properties

    cwd: string = ...

    the root directory of the project

    +
    platform: Platform = process.platform
    printer: Printer = _printer

    Methods

    \ No newline at end of file diff --git a/classes/_aws_amplify_cli_core.Printer.html b/classes/_aws_amplify_cli_core.Printer.html index c346250b32..22a5ba1650 100644 --- a/classes/_aws_amplify_cli_core.Printer.html +++ b/classes/_aws_amplify_cli_core.Printer.html @@ -1,5 +1,5 @@ Printer | Amplify Toolbox

    The class that pretty prints to the output stream.

    -

    Constructors

    Constructors

    • Sets default configs

      -

      Parameters

      • minimumLogLevel: LogLevel
      • stdout: WriteStream | WritableStream = process.stdout
      • stderr: WriteStream | WritableStream = process.stderr
      • refreshRate: number = 500

      Returns Printer

    Properties

    minimumLogLevel: LogLevel
    refreshRate: number = 500
    spinnerFrames: string[] = ...

    Spinner frames

    -
    stderr: WriteStream | WritableStream = process.stderr
    stdout: WriteStream | WritableStream = process.stdout
    timer: Timeout
    timerSet: boolean

    Methods

    • Logs a message with animated spinner +

      Parameters

      • minimumLogLevel: LogLevel
      • stdout: WriteStream | WritableStream = process.stdout
      • stderr: WriteStream | WritableStream = process.stderr
      • refreshRate: number = 500

      Returns Printer

    Properties

    minimumLogLevel: LogLevel
    refreshRate: number = 500
    spinnerFrames: string[] = ...

    Spinner frames

    +
    stderr: WriteStream | WritableStream = process.stderr
    stdout: WriteStream | WritableStream = process.stdout
    timer: Timeout
    timerSet: boolean

    Methods

    • Logs a message with animated spinner If stdout is not a TTY, the message is logged at the info level without a spinner

      -

      Parameters

      • message: string
      • callback: (() => Promise<void>)
          • (): Promise<void>
          • Returns Promise<void>

      Returns Promise<void>

    • Logs a message to the output stream at the given log level followed by a newline

      -

      Parameters

      • message: string
      • level: LogLevel = LogLevel.INFO

      Returns void

    • Prints a given message to output stream followed by a newline.

      -

      Parameters

      • message: string

      Returns void

    • Starts animating spinner with a message.

      -

      Parameters

      • message: string

      Returns void

    • Writes escape sequence to stdout

      -

      Parameters

      • action: EscapeSequence

      Returns void

    \ No newline at end of file +

    Parameters

    Returns Promise<void>

    \ No newline at end of file diff --git a/classes/_aws_amplify_deployed_backend_client.BackendOutputClientError.html b/classes/_aws_amplify_deployed_backend_client.BackendOutputClientError.html index 785f121875..1c0324c828 100644 --- a/classes/_aws_amplify_deployed_backend_client.BackendOutputClientError.html +++ b/classes/_aws_amplify_deployed_backend_client.BackendOutputClientError.html @@ -1,5 +1,5 @@ BackendOutputClientError | Amplify Toolbox

    Error type for BackendOutputClientError

    -

    Hierarchy

    • Error
      • BackendOutputClientError

    Constructors

    Hierarchy

    • Error
      • BackendOutputClientError

    Constructors

    Properties

    Methods

    Constructors

    Properties

    cause?: unknown
    message: string
    name: string
    stack?: string
    prepareStackTrace?: ((err, stackTraces) => any)

    Optional override for formatting stack traces

    +

    Parameters

    Returns BackendOutputClientError

    Properties

    cause?: unknown
    message: string
    name: string
    stack?: string
    prepareStackTrace?: ((err, stackTraces) => any)

    Optional override for formatting stack traces

    Type declaration

      • (err, stackTraces): any
      • Parameters

        • err: Error
        • stackTraces: CallSite[]

        Returns any

    stackTraceLimit: number

    Methods

    • Create .stack property on a target object

      Parameters

      • targetObject: object
      • Optional constructorOpt: Function

      Returns void

    \ No newline at end of file diff --git a/classes/_aws_amplify_deployed_backend_client.BackendOutputClientFactory.html b/classes/_aws_amplify_deployed_backend_client.BackendOutputClientFactory.html index c415c59ca5..60433fd51a 100644 --- a/classes/_aws_amplify_deployed_backend_client.BackendOutputClientFactory.html +++ b/classes/_aws_amplify_deployed_backend_client.BackendOutputClientFactory.html @@ -1,5 +1,5 @@ BackendOutputClientFactory | Amplify Toolbox

    Factory to create a backend metadata reader

    -

    Constructors

    Constructors

    Methods

    Constructors

    Methods

    \ No newline at end of file +

    Parameters

    Returns BackendOutputClient

    \ No newline at end of file diff --git a/classes/_aws_amplify_deployed_backend_client.DeployedBackendClientFactory.html b/classes/_aws_amplify_deployed_backend_client.DeployedBackendClientFactory.html index c6857bb28e..dc3407094b 100644 --- a/classes/_aws_amplify_deployed_backend_client.DeployedBackendClientFactory.html +++ b/classes/_aws_amplify_deployed_backend_client.DeployedBackendClientFactory.html @@ -1,5 +1,5 @@ DeployedBackendClientFactory | Amplify Toolbox

    Factory to create a DeploymentClient

    -

    Constructors

    Constructors

    Methods

    Constructors

    Methods

    \ No newline at end of file +

    Parameters

    Returns DeployedBackendClient

    \ No newline at end of file diff --git a/classes/_aws_amplify_platform_core.AmplifyError.html b/classes/_aws_amplify_platform_core.AmplifyError.html index de6c6e17eb..a72e97fb37 100644 --- a/classes/_aws_amplify_platform_core.AmplifyError.html +++ b/classes/_aws_amplify_platform_core.AmplifyError.html @@ -1,5 +1,5 @@ AmplifyError | Amplify Toolbox

    Base class for all Amplify errors or faults

    -

    Type Parameters

    • T extends string = string

    Hierarchy (view full)

    Constructors

    Type Parameters

    • T extends string = string

    Hierarchy (view full)

    Constructors

    Properties

    cause? classification code? @@ -24,12 +24,12 @@ you must provide the exception that was caught.

    Returns AmplifyError<T>

    Example

    try {
    ...
    } catch (error){
    throw new AmplifyError(...,...,error);
    }
    -

    Properties

    cause?: Error

    If you are throwing this exception from within a catch block, +

    Properties

    cause?: Error

    If you are throwing this exception from within a catch block, you must provide the exception that was caught.

    -

    LibraryFault or UserError

    -
    code?: string
    details?: string
    link?: string
    message: string
    name: T

    a user friendly name for the exception

    -

    error stack, resolution steps, details, or help links

    -
    resolution?: string
    serializedError?: string
    stack?: string
    prepareStackTrace?: ((err, stackTraces) => any)

    Optional override for formatting stack traces

    +

    LibraryFault or UserError

    +
    code?: string
    details?: string
    link?: string
    message: string
    name: T

    a user friendly name for the exception

    +

    error stack, resolution steps, details, or help links

    +
    resolution?: string
    serializedError?: string
    stack?: string
    prepareStackTrace?: ((err, stackTraces) => any)

    Optional override for formatting stack traces

    Type declaration

      • (err, stackTraces): any
      • Parameters

        • err: Error
        • stackTraces: CallSite[]

        Returns any

    stackTraceLimit: number

    Methods

    • Create .stack property on a target object

      -

      Parameters

      • targetObject: object
      • Optional constructorOpt: Function

      Returns void

    \ No newline at end of file +

    Parameters

    Returns void

    \ No newline at end of file diff --git a/classes/_aws_amplify_platform_core.AmplifyFault.html b/classes/_aws_amplify_platform_core.AmplifyFault.html index c2567be78e..aa48fde1a1 100644 --- a/classes/_aws_amplify_platform_core.AmplifyFault.html +++ b/classes/_aws_amplify_platform_core.AmplifyFault.html @@ -1,5 +1,5 @@ AmplifyFault | Amplify Toolbox

    Base class for all Amplify library faults

    -

    Type Parameters

    • T extends string = string

    Hierarchy (view full)

    Constructors

    Type Parameters

    • T extends string = string

    Hierarchy (view full)

    Constructors

    Properties

    cause? classification code? @@ -22,11 +22,11 @@ you must provide the exception that was caught.

    Returns AmplifyFault<T>

    Example

    try {
    ...
    } catch (error){
    throw new AmplifyLibraryFault(error,...,...);
    }
    -

    Properties

    cause?: Error

    If you are throwing this exception from within a catch block, +

    Properties

    cause?: Error

    If you are throwing this exception from within a catch block, you must provide the exception that was caught.

    -

    LibraryFault or UserError

    -
    code?: string
    details?: string
    link?: string
    message: string
    name: T

    a user friendly name for the exception

    -
    resolution?: string
    serializedError?: string
    stack?: string
    prepareStackTrace?: ((err, stackTraces) => any)

    Optional override for formatting stack traces

    +

    LibraryFault or UserError

    +
    code?: string
    details?: string
    link?: string
    message: string
    name: T

    a user friendly name for the exception

    +
    resolution?: string
    serializedError?: string
    stack?: string
    prepareStackTrace?: ((err, stackTraces) => any)

    Optional override for formatting stack traces

    Type declaration

      • (err, stackTraces): any
      • Parameters

        • err: Error
        • stackTraces: CallSite[]

        Returns any

    stackTraceLimit: number

    Methods

    • Create .stack property on a target object

      -

      Parameters

      • targetObject: object
      • Optional constructorOpt: Function

      Returns void

    \ No newline at end of file +

    Parameters

    Returns void

    \ No newline at end of file diff --git a/classes/_aws_amplify_platform_core.AmplifyUserError.html b/classes/_aws_amplify_platform_core.AmplifyUserError.html index 18710e7d29..d6fe894c77 100644 --- a/classes/_aws_amplify_platform_core.AmplifyUserError.html +++ b/classes/_aws_amplify_platform_core.AmplifyUserError.html @@ -1,5 +1,5 @@ AmplifyUserError | Amplify Toolbox

    Base class for all Amplify user errors

    -

    Type Parameters

    • T extends string = string

    Hierarchy (view full)

    Constructors

    Type Parameters

    • T extends string = string

    Hierarchy (view full)

    Constructors

    Properties

    cause? classification code? @@ -22,11 +22,11 @@ you must provide the error that was caught.

    Returns AmplifyUserError<T>

    Example

    try {
    ...
    } catch (error){
    throw new AmplifyError(...,...,error);
    }
    -

    Properties

    cause?: Error

    If you are throwing this exception from within a catch block, +

    Properties

    cause?: Error

    If you are throwing this exception from within a catch block, you must provide the exception that was caught.

    -

    LibraryFault or UserError

    -
    code?: string
    details?: string
    link?: string
    message: string
    name: T

    a user friendly name for the exception

    -
    resolution?: string
    serializedError?: string
    stack?: string
    prepareStackTrace?: ((err, stackTraces) => any)

    Optional override for formatting stack traces

    +

    LibraryFault or UserError

    +
    code?: string
    details?: string
    link?: string
    message: string
    name: T

    a user friendly name for the exception

    +
    resolution?: string
    serializedError?: string
    stack?: string
    prepareStackTrace?: ((err, stackTraces) => any)

    Optional override for formatting stack traces

    Type declaration

      • (err, stackTraces): any
      • Parameters

        • err: Error
        • stackTraces: CallSite[]

        Returns any

    stackTraceLimit: number

    Methods

    • Create .stack property on a target object

      -

      Parameters

      • targetObject: object
      • Optional constructorOpt: Function

      Returns void

    \ No newline at end of file +

    Parameters

    Returns void

    \ No newline at end of file diff --git a/classes/_aws_amplify_platform_core.BackendIdentifierConversions.html b/classes/_aws_amplify_platform_core.BackendIdentifierConversions.html index 64c654ae89..cce7d57699 100644 --- a/classes/_aws_amplify_platform_core.BackendIdentifierConversions.html +++ b/classes/_aws_amplify_platform_core.BackendIdentifierConversions.html @@ -1,11 +1,11 @@ BackendIdentifierConversions | Amplify Toolbox

    Provides static methods for converting BackendIdentifier to/from a stack name string

    -

    Constructors

    Constructors

    Methods

    • Convert a BackendIdentifier to a stack name.

      !!!DANGER!!! !!!DO NOT CHANGE THIS UNLESS YOU ARE 100% SURE YOU UNDERSTAND THE CONSEQUENCES!!!

      Changing this method will change how stack names are generated which could be a massive breaking change for existing Amplify stacks.

      -

      Parameters

      Returns string

    \ No newline at end of file +

    Parameters

    Returns string

    \ No newline at end of file diff --git a/classes/_aws_amplify_platform_core.BackendLocator.html b/classes/_aws_amplify_platform_core.BackendLocator.html index c3627a1f3b..ce86e848b6 100644 --- a/classes/_aws_amplify_platform_core.BackendLocator.html +++ b/classes/_aws_amplify_platform_core.BackendLocator.html @@ -1,8 +1,8 @@ BackendLocator | Amplify Toolbox

    Find the backend definition file in the customer app that represents a CDK app.

    -

    Constructors

    Constructors

    Properties

    relativePath: string = ...
    rootDir: string = ...
    supportedFileExtensions: string[] = ...

    Methods

    \ No newline at end of file +

    Parameters

    Returns BackendLocator

    Properties

    relativePath: string = ...
    rootDir: string = ...
    supportedFileExtensions: string[] = ...

    Methods

    \ No newline at end of file diff --git a/classes/_aws_amplify_platform_core.CallerDirectoryExtractor.html b/classes/_aws_amplify_platform_core.CallerDirectoryExtractor.html index fe0275b5a8..3d2f5eaabe 100644 --- a/classes/_aws_amplify_platform_core.CallerDirectoryExtractor.html +++ b/classes/_aws_amplify_platform_core.CallerDirectoryExtractor.html @@ -1,8 +1,8 @@ CallerDirectoryExtractor | Amplify Toolbox

    Extracts the path of the caller of the code that generated the input stack trace. In other words, extracts the path from the second entry in the stack trace (the first entry being the location where the stack trace was created and the second entry being the location that called the code that generated the stack trace)

    -

    Constructors

    Constructors

    Properties

    Methods

    Constructors

    Properties

    stackTrace: undefined | string

    Methods

    \ No newline at end of file +

    Parameters

    Returns CallerDirectoryExtractor

    Properties

    stackTrace: undefined | string

    Methods

    \ No newline at end of file diff --git a/classes/_aws_amplify_platform_core.ConfigurationControllerFactory.html b/classes/_aws_amplify_platform_core.ConfigurationControllerFactory.html index 4b3ba138d1..1221273e74 100644 --- a/classes/_aws_amplify_platform_core.ConfigurationControllerFactory.html +++ b/classes/_aws_amplify_platform_core.ConfigurationControllerFactory.html @@ -1,7 +1,7 @@ ConfigurationControllerFactory | Amplify Toolbox

    Instantiates LocalConfigurationController

    -

    Constructors

    Constructors

    Properties

    Methods

    Constructors

    Properties

    controllers: Record<string, ConfigurationController>

    Methods

    \ No newline at end of file +

    Returns ConfigurationControllerFactory

    Properties

    controllers: Record<string, ConfigurationController>

    Methods

    \ No newline at end of file diff --git a/classes/_aws_amplify_platform_core.FilePathExtractor.html b/classes/_aws_amplify_platform_core.FilePathExtractor.html index d2a4336b7a..172b06d3c7 100644 --- a/classes/_aws_amplify_platform_core.FilePathExtractor.html +++ b/classes/_aws_amplify_platform_core.FilePathExtractor.html @@ -1,7 +1,7 @@ FilePathExtractor | Amplify Toolbox

    Extracts a file path from a given stack trace line

    -

    Constructors

    Constructors

    Properties

    Methods

    Constructors

    Properties

    stackTraceLine: string

    Methods

    \ No newline at end of file +

    Parameters

    Returns FilePathExtractor

    Properties

    stackTraceLine: string

    Methods

    \ No newline at end of file diff --git a/classes/_aws_amplify_platform_core.ObjectAccumulator.html b/classes/_aws_amplify_platform_core.ObjectAccumulator.html index aed1760fdc..910ac427c1 100644 --- a/classes/_aws_amplify_platform_core.ObjectAccumulator.html +++ b/classes/_aws_amplify_platform_core.ObjectAccumulator.html @@ -1,13 +1,13 @@ ObjectAccumulator | Amplify Toolbox

    A class that can accumulate (squash merge) objects into single instance.

    -

    Type Parameters

    • T

    Constructors

    Type Parameters

    • T

    Constructors

    Properties

    versionKey: string = 'version'

    Methods

    Properties

    versionKey: string = 'version'

    Methods

    \ No newline at end of file +
    \ No newline at end of file diff --git a/classes/_aws_amplify_platform_core.ObjectAccumulatorPropertyAlreadyExistsError.html b/classes/_aws_amplify_platform_core.ObjectAccumulatorPropertyAlreadyExistsError.html index 6ebf797ac5..f050e57ded 100644 --- a/classes/_aws_amplify_platform_core.ObjectAccumulatorPropertyAlreadyExistsError.html +++ b/classes/_aws_amplify_platform_core.ObjectAccumulatorPropertyAlreadyExistsError.html @@ -1,5 +1,5 @@ ObjectAccumulatorPropertyAlreadyExistsError | Amplify Toolbox

    This error is thrown when there's a collision in the object keys

    -

    Hierarchy

    • Error
      • ObjectAccumulatorPropertyAlreadyExistsError

    Constructors

    Hierarchy

    • Error
      • ObjectAccumulatorPropertyAlreadyExistsError

    Constructors

    Properties

    Methods

    Constructors

    Properties

    cause?: unknown
    existingValue: unknown
    incomingValue: unknown
    key: string
    message: string
    name: string
    stack?: string
    prepareStackTrace?: ((err, stackTraces) => any)

    Optional override for formatting stack traces

    +

    Parameters

    • key: string
    • existingValue: unknown
    • incomingValue: unknown

    Returns ObjectAccumulatorPropertyAlreadyExistsError

    Properties

    cause?: unknown
    existingValue: unknown
    incomingValue: unknown
    key: string
    message: string
    name: string
    stack?: string
    prepareStackTrace?: ((err, stackTraces) => any)

    Optional override for formatting stack traces

    Type declaration

      • (err, stackTraces): any
      • Parameters

        • err: Error
        • stackTraces: CallSite[]

        Returns any

    stackTraceLimit: number

    Methods

    • Create .stack property on a target object

      Parameters

      • targetObject: object
      • Optional constructorOpt: Function

      Returns void

    \ No newline at end of file diff --git a/classes/_aws_amplify_platform_core.ObjectAccumulatorVersionMismatchError.html b/classes/_aws_amplify_platform_core.ObjectAccumulatorVersionMismatchError.html index ef7fd15f7f..55bda1514b 100644 --- a/classes/_aws_amplify_platform_core.ObjectAccumulatorVersionMismatchError.html +++ b/classes/_aws_amplify_platform_core.ObjectAccumulatorVersionMismatchError.html @@ -1,5 +1,5 @@ ObjectAccumulatorVersionMismatchError | Amplify Toolbox

    This error is thrown when partial objects with different versions are being accumulated

    -

    Hierarchy

    • Error
      • ObjectAccumulatorVersionMismatchError

    Constructors

    Hierarchy

    • Error
      • ObjectAccumulatorVersionMismatchError

    Constructors

    Properties

    Methods

    Constructors

    Properties

    cause?: unknown
    existingVersion: string
    message: string
    name: string
    newVersion: string
    stack?: string
    prepareStackTrace?: ((err, stackTraces) => any)

    Optional override for formatting stack traces

    +

    Parameters

    • existingVersion: string
    • newVersion: string

    Returns ObjectAccumulatorVersionMismatchError

    Properties

    cause?: unknown
    existingVersion: string
    message: string
    name: string
    newVersion: string
    stack?: string
    prepareStackTrace?: ((err, stackTraces) => any)

    Optional override for formatting stack traces

    Type declaration

      • (err, stackTraces): any
      • Parameters

        • err: Error
        • stackTraces: CallSite[]

        Returns any

    stackTraceLimit: number

    Methods

    • Create .stack property on a target object

      Parameters

      • targetObject: object
      • Optional constructorOpt: Function

      Returns void

    \ No newline at end of file diff --git a/classes/_aws_amplify_platform_core.PackageJsonReader.html b/classes/_aws_amplify_platform_core.PackageJsonReader.html index 7df55e121a..abcf1b0342 100644 --- a/classes/_aws_amplify_platform_core.PackageJsonReader.html +++ b/classes/_aws_amplify_platform_core.PackageJsonReader.html @@ -1,7 +1,7 @@ PackageJsonReader | Amplify Toolbox

    return the package json

    -

    Constructors

    Constructors

    Methods

    Constructors

    Methods

    • Parameters

      • absolutePackageJsonPath: string

      Returns {
          name?: string;
          type?: "module" | "commonjs";
          version?: string;
      }

      • Optional name?: string
      • Optional type?: "module" | "commonjs"
      • Optional version?: string
    • Returns the contents of the package.json file in process.cwd()

      +

    Constructors

    Methods

    • Parameters

      • absolutePackageJsonPath: string

      Returns {
          name?: string;
          type?: "module" | "commonjs";
          version?: string;
      }

      • Optional name?: string
      • Optional type?: "module" | "commonjs"
      • Optional version?: string
    • Returns the contents of the package.json file in process.cwd()

      If no package.json file exists, or the content does not pass validation, an error is thrown

      -

      Returns {
          name?: string;
          type?: "module" | "commonjs";
          version?: string;
      }

      • Optional name?: string
      • Optional type?: "module" | "commonjs"
      • Optional version?: string
    \ No newline at end of file +

    Returns {
        name?: string;
        type?: "module" | "commonjs";
        version?: string;
    }

    \ No newline at end of file diff --git a/classes/_aws_amplify_platform_core.ParameterPathConversions.html b/classes/_aws_amplify_platform_core.ParameterPathConversions.html index e7a93400b4..48f945f8fa 100644 --- a/classes/_aws_amplify_platform_core.ParameterPathConversions.html +++ b/classes/_aws_amplify_platform_core.ParameterPathConversions.html @@ -1,9 +1,9 @@ ParameterPathConversions | Amplify Toolbox

    Provides static methods for converting BackendIdentifier to parameter path strings

    -

    Constructors

    Constructors

    Methods

    \ No newline at end of file +

    Parameters

    Returns string

    \ No newline at end of file diff --git a/classes/_aws_amplify_platform_core.UsageDataEmitterFactory.html b/classes/_aws_amplify_platform_core.UsageDataEmitterFactory.html index 49f77e52d2..528f6ccd0b 100644 --- a/classes/_aws_amplify_platform_core.UsageDataEmitterFactory.html +++ b/classes/_aws_amplify_platform_core.UsageDataEmitterFactory.html @@ -1,5 +1,5 @@ UsageDataEmitterFactory | Amplify Toolbox

    Creates UsageDataEmitter for a given library version

    -

    Constructors

    Constructors

    Methods

    Constructors

    Methods

    \ No newline at end of file +

    Parameters

    Returns Promise<UsageDataEmitter>

    \ No newline at end of file diff --git a/classes/_aws_amplify_sandbox.SandboxSingletonFactory.html b/classes/_aws_amplify_sandbox.SandboxSingletonFactory.html index 49bcd34d4b..65b31a02fc 100644 --- a/classes/_aws_amplify_sandbox.SandboxSingletonFactory.html +++ b/classes/_aws_amplify_sandbox.SandboxSingletonFactory.html @@ -1,10 +1,10 @@ SandboxSingletonFactory | Amplify Toolbox

    Factory to create a new sandbox

    -

    Constructors

    Constructors

    Properties

    format: Format
    instance: undefined | Sandbox
    printer: Printer
    sandboxIdResolver: BackendIdSandboxResolver

    Methods

    \ No newline at end of file +

    Parameters

    Returns SandboxSingletonFactory

    Properties

    format: Format
    instance: undefined | Sandbox
    printer: Printer
    sandboxIdResolver: BackendIdSandboxResolver

    Methods

    \ No newline at end of file diff --git a/classes/_aws_amplify_schema_generator.SchemaGenerator.html b/classes/_aws_amplify_schema_generator.SchemaGenerator.html index 58f9815a0b..659dabd797 100644 --- a/classes/_aws_amplify_schema_generator.SchemaGenerator.html +++ b/classes/_aws_amplify_schema_generator.SchemaGenerator.html @@ -1,4 +1,4 @@ SchemaGenerator | Amplify Toolbox

    Schema generator class.

    -

    Constructors

    Constructors

    Methods

    Constructors

    Methods

    \ No newline at end of file +

    Constructors

    Methods

    \ No newline at end of file diff --git a/enums/_aws_amplify_cli_core.LogLevel.html b/enums/_aws_amplify_cli_core.LogLevel.html index 0060582422..a32165048a 100644 --- a/enums/_aws_amplify_cli_core.LogLevel.html +++ b/enums/_aws_amplify_cli_core.LogLevel.html @@ -1,4 +1,4 @@ -LogLevel | Amplify Toolbox

    Enumeration Members

    DEBUG +LogLevel | Amplify Toolbox

    Enumeration Members

    Enumeration Members

    DEBUG: 2
    ERROR: 0
    INFO: 1
    \ No newline at end of file +

    Enumeration Members

    DEBUG: 2
    ERROR: 0
    INFO: 1
    \ No newline at end of file diff --git a/enums/_aws_amplify_client_config.ClientConfigFileBaseName.html b/enums/_aws_amplify_client_config.ClientConfigFileBaseName.html index 8e4a8969bb..3c1c8197bb 100644 --- a/enums/_aws_amplify_client_config.ClientConfigFileBaseName.html +++ b/enums/_aws_amplify_client_config.ClientConfigFileBaseName.html @@ -1,3 +1,3 @@ -ClientConfigFileBaseName | Amplify Toolbox

    Enumeration Members

    DEFAULT +ClientConfigFileBaseName | Amplify Toolbox

    Enumeration Members

    Enumeration Members

    DEFAULT: "amplify_outputs"
    LEGACY: "amplifyconfiguration"
    \ No newline at end of file +

    Enumeration Members

    DEFAULT: "amplify_outputs"
    LEGACY: "amplifyconfiguration"
    \ No newline at end of file diff --git a/enums/_aws_amplify_client_config.ClientConfigFormat.html b/enums/_aws_amplify_client_config.ClientConfigFormat.html index 8b0c43df87..f5d1b1ac0f 100644 --- a/enums/_aws_amplify_client_config.ClientConfigFormat.html +++ b/enums/_aws_amplify_client_config.ClientConfigFormat.html @@ -1,6 +1,6 @@ -ClientConfigFormat | Amplify Toolbox

    Enumeration Members

    DART +ClientConfigFormat | Amplify Toolbox

    Enumeration Members

    Enumeration Members

    DART: "dart"
    JSON: "json"
    JSON_MOBILE: "json-mobile"
    MJS: "mjs"
    TS: "ts"
    \ No newline at end of file +

    Enumeration Members

    DART: "dart"
    JSON: "json"
    JSON_MOBILE: "json-mobile"
    MJS: "mjs"
    TS: "ts"
    \ No newline at end of file diff --git a/enums/_aws_amplify_client_config.ClientConfigVersionOption.html b/enums/_aws_amplify_client_config.ClientConfigVersionOption.html index 3e17508648..b54a570810 100644 --- a/enums/_aws_amplify_client_config.ClientConfigVersionOption.html +++ b/enums/_aws_amplify_client_config.ClientConfigVersionOption.html @@ -1,6 +1,6 @@ -ClientConfigVersionOption | Amplify Toolbox

    Enumeration Members

    V0 +ClientConfigVersionOption | Amplify Toolbox

    Enumeration Members

    Enumeration Members

    V0: "0"
    V1: "1"
    V1_1: "1.1"
    V1_2: "1.2"
    V1_3: "1.3"
    \ No newline at end of file +

    Enumeration Members

    V0: "0"
    V1: "1"
    V1_1: "1.1"
    V1_2: "1.2"
    V1_3: "1.3"
    \ No newline at end of file diff --git a/enums/_aws_amplify_deployed_backend_client.ApiAuthType.html b/enums/_aws_amplify_deployed_backend_client.ApiAuthType.html index 4804573959..9db4aed2d6 100644 --- a/enums/_aws_amplify_deployed_backend_client.ApiAuthType.html +++ b/enums/_aws_amplify_deployed_backend_client.ApiAuthType.html @@ -1,6 +1,6 @@ -ApiAuthType | Amplify Toolbox

    Enumeration Members

    AMAZON_COGNITO_USER_POOLS +ApiAuthType | Amplify Toolbox
    \ No newline at end of file +

    Enumeration Members

    AMAZON_COGNITO_USER_POOLS: "AMAZON_COGNITO_USER_POOLS"
    API_KEY: "API_KEY"
    AWS_IAM: "AWS_IAM"
    AWS_LAMBDA: "AWS_LAMBDA"
    OPENID_CONNECT: "OPENID_CONNECT"
    \ No newline at end of file diff --git a/enums/_aws_amplify_deployed_backend_client.BackendDeploymentStatus.html b/enums/_aws_amplify_deployed_backend_client.BackendDeploymentStatus.html index 678c41a13e..2c24d78548 100644 --- a/enums/_aws_amplify_deployed_backend_client.BackendDeploymentStatus.html +++ b/enums/_aws_amplify_deployed_backend_client.BackendDeploymentStatus.html @@ -1,7 +1,7 @@ -BackendDeploymentStatus | Amplify Toolbox

    Enumeration Members

    DELETED +BackendDeploymentStatus | Amplify Toolbox
    \ No newline at end of file +

    Enumeration Members

    DELETED: "DELETED"
    DELETING: "DELETING"
    DEPLOYED: "DEPLOYED"
    DEPLOYING: "DEPLOYING"
    FAILED: "FAILED"
    UNKNOWN: "UNKNOWN"
    \ No newline at end of file diff --git a/enums/_aws_amplify_deployed_backend_client.BackendOutputClientErrorType.html b/enums/_aws_amplify_deployed_backend_client.BackendOutputClientErrorType.html index 39b77f8d48..d8e701a825 100644 --- a/enums/_aws_amplify_deployed_backend_client.BackendOutputClientErrorType.html +++ b/enums/_aws_amplify_deployed_backend_client.BackendOutputClientErrorType.html @@ -1,7 +1,7 @@ -BackendOutputClientErrorType | Amplify Toolbox

    Enumeration Members

    ACCESS_DENIED +BackendOutputClientErrorType | Amplify Toolbox

    Enumeration Members

    ACCESS_DENIED: "AccessDenied"
    CREDENTIALS_ERROR: "CredentialsError"
    DEPLOYMENT_IN_PROGRESS: "DeploymentInProgress"
    METADATA_RETRIEVAL_ERROR: "MetadataRetrievalError"
    NO_OUTPUTS_FOUND: "NoOutputsFound"
    NO_STACK_FOUND: "NoStackFound"
    \ No newline at end of file +

    Enumeration Members

    ACCESS_DENIED: "AccessDenied"
    CREDENTIALS_ERROR: "CredentialsError"
    DEPLOYMENT_IN_PROGRESS: "DeploymentInProgress"
    METADATA_RETRIEVAL_ERROR: "MetadataRetrievalError"
    NO_OUTPUTS_FOUND: "NoOutputsFound"
    NO_STACK_FOUND: "NoStackFound"
    \ No newline at end of file diff --git a/enums/_aws_amplify_deployed_backend_client.BackendStatus.html b/enums/_aws_amplify_deployed_backend_client.BackendStatus.html index 61cc0abb1d..af7c9022de 100644 --- a/enums/_aws_amplify_deployed_backend_client.BackendStatus.html +++ b/enums/_aws_amplify_deployed_backend_client.BackendStatus.html @@ -1,2 +1,2 @@ -BackendStatus | Amplify Toolbox

    Enumeration Members

    Enumeration Members

    DELETE_FAILED: "DELETE_FAILED"
    \ No newline at end of file +BackendStatus | Amplify Toolbox

    Enumeration Members

    Enumeration Members

    DELETE_FAILED: "DELETE_FAILED"
    \ No newline at end of file diff --git a/enums/_aws_amplify_deployed_backend_client.ConflictResolutionMode.html b/enums/_aws_amplify_deployed_backend_client.ConflictResolutionMode.html index 2b7bb8c2ad..e8d6a99e37 100644 --- a/enums/_aws_amplify_deployed_backend_client.ConflictResolutionMode.html +++ b/enums/_aws_amplify_deployed_backend_client.ConflictResolutionMode.html @@ -1,4 +1,4 @@ -ConflictResolutionMode | Amplify Toolbox

    Enumeration Members

    AUTOMERGE +ConflictResolutionMode | Amplify Toolbox
    \ No newline at end of file +

    Enumeration Members

    AUTOMERGE: "AUTOMERGE"
    LAMBDA: "LAMBDA"
    OPTIMISTIC_CONCURRENCY: "OPTIMISTIC_CONCURRENCY"
    \ No newline at end of file diff --git a/enums/_aws_amplify_model_generator.GenerateApiCodeFormat.html b/enums/_aws_amplify_model_generator.GenerateApiCodeFormat.html index 07234064a2..93417463cd 100644 --- a/enums/_aws_amplify_model_generator.GenerateApiCodeFormat.html +++ b/enums/_aws_amplify_model_generator.GenerateApiCodeFormat.html @@ -1,4 +1,4 @@ -GenerateApiCodeFormat | Amplify Toolbox

    Enumeration Members

    GRAPHQL_CODEGEN +GenerateApiCodeFormat | Amplify Toolbox

    Enumeration Members

    GRAPHQL_CODEGEN: "graphql-codegen"
    INTROSPECTION: "introspection"
    MODELGEN: "modelgen"
    \ No newline at end of file +

    Enumeration Members

    GRAPHQL_CODEGEN: "graphql-codegen"
    INTROSPECTION: "introspection"
    MODELGEN: "modelgen"
    \ No newline at end of file diff --git a/enums/_aws_amplify_model_generator.GenerateApiCodeModelTarget.html b/enums/_aws_amplify_model_generator.GenerateApiCodeModelTarget.html index 57bba6215a..fbdc6c5864 100644 --- a/enums/_aws_amplify_model_generator.GenerateApiCodeModelTarget.html +++ b/enums/_aws_amplify_model_generator.GenerateApiCodeModelTarget.html @@ -1,6 +1,6 @@ -GenerateApiCodeModelTarget | Amplify Toolbox

    Enumeration Members

    DART +GenerateApiCodeModelTarget | Amplify Toolbox

    Enumeration Members

    Enumeration Members

    DART: "dart"
    JAVA: "java"
    JAVASCRIPT: "javascript"
    SWIFT: "swift"
    TYPESCRIPT: "typescript"
    \ No newline at end of file +

    Enumeration Members

    DART: "dart"
    JAVA: "java"
    JAVASCRIPT: "javascript"
    SWIFT: "swift"
    TYPESCRIPT: "typescript"
    \ No newline at end of file diff --git a/enums/_aws_amplify_model_generator.GenerateApiCodeStatementTarget.html b/enums/_aws_amplify_model_generator.GenerateApiCodeStatementTarget.html index 4b1ae04577..f96cc89eea 100644 --- a/enums/_aws_amplify_model_generator.GenerateApiCodeStatementTarget.html +++ b/enums/_aws_amplify_model_generator.GenerateApiCodeStatementTarget.html @@ -1,6 +1,6 @@ -GenerateApiCodeStatementTarget | Amplify Toolbox

    Enumeration Members

    ANGULAR +GenerateApiCodeStatementTarget | Amplify Toolbox

    Enumeration Members

    ANGULAR: "angular"
    FLOW: "flow"
    GRAPHQL: "graphql"
    JAVASCRIPT: "javascript"
    TYPESCRIPT: "typescript"
    \ No newline at end of file +

    Enumeration Members

    ANGULAR: "angular"
    FLOW: "flow"
    GRAPHQL: "graphql"
    JAVASCRIPT: "javascript"
    TYPESCRIPT: "typescript"
    \ No newline at end of file diff --git a/enums/_aws_amplify_model_generator.GenerateApiCodeTypeTarget.html b/enums/_aws_amplify_model_generator.GenerateApiCodeTypeTarget.html index c4cf284082..a28868d995 100644 --- a/enums/_aws_amplify_model_generator.GenerateApiCodeTypeTarget.html +++ b/enums/_aws_amplify_model_generator.GenerateApiCodeTypeTarget.html @@ -1,8 +1,8 @@ -GenerateApiCodeTypeTarget | Amplify Toolbox

    Enumeration Members

    ANGULAR +GenerateApiCodeTypeTarget | Amplify Toolbox

    Enumeration Members

    ANGULAR: "angular"
    FLOW: "flow"
    FLOW_MODERN: "flow-modern"
    JSON: "json"
    SCALA: "scala"
    SWIFT: "swift"
    TYPESCRIPT: "typescript"
    \ No newline at end of file +

    Enumeration Members

    ANGULAR: "angular"
    FLOW: "flow"
    FLOW_MODERN: "flow-modern"
    JSON: "json"
    SCALA: "scala"
    SWIFT: "swift"
    TYPESCRIPT: "typescript"
    \ No newline at end of file diff --git a/enums/_aws_amplify_platform_core.CDKContextKey.html b/enums/_aws_amplify_platform_core.CDKContextKey.html index 2cc0cc0504..35b3a9107d 100644 --- a/enums/_aws_amplify_platform_core.CDKContextKey.html +++ b/enums/_aws_amplify_platform_core.CDKContextKey.html @@ -1,7 +1,7 @@ CDKContextKey | Amplify Toolbox

    Keys for values that are passed between the Amplify deployment engine and the CDK synth process via CDK Context

    !!!WARNING!!! Changing the values of these keys could be a breaking change

    -

    Enumeration Members

    Enumeration Members

    BACKEND_NAME: "amplify-backend-name"
    BACKEND_NAMESPACE: "amplify-backend-namespace"
    DEPLOYMENT_TYPE: "amplify-backend-type"
    \ No newline at end of file +

    Enumeration Members

    BACKEND_NAME: "amplify-backend-name"
    BACKEND_NAMESPACE: "amplify-backend-namespace"
    DEPLOYMENT_TYPE: "amplify-backend-type"
    \ No newline at end of file diff --git a/enums/_aws_amplify_platform_core.TagName.html b/enums/_aws_amplify_platform_core.TagName.html index 87be6879f0..88a49a29fc 100644 --- a/enums/_aws_amplify_platform_core.TagName.html +++ b/enums/_aws_amplify_platform_core.TagName.html @@ -1,2 +1,2 @@ -TagName | Amplify Toolbox

    Enumeration Members

    Enumeration Members

    FRIENDLY_NAME: "amplify:friendly-name"
    \ No newline at end of file +TagName | Amplify Toolbox

    Enumeration Members

    Enumeration Members

    FRIENDLY_NAME: "amplify:friendly-name"
    \ No newline at end of file diff --git a/functions/_aws_amplify_backend.defineBackend.html b/functions/_aws_amplify_backend.defineBackend.html index af7d7991a6..4edf694752 100644 --- a/functions/_aws_amplify_backend.defineBackend.html +++ b/functions/_aws_amplify_backend.defineBackend.html @@ -1,3 +1,3 @@ defineBackend | Amplify Toolbox
    \ No newline at end of file +

    Returns Backend<T>

    \ No newline at end of file diff --git a/functions/_aws_amplify_backend.secret.html b/functions/_aws_amplify_backend.secret.html index 71303e9bf0..f5862bbcf3 100644 --- a/functions/_aws_amplify_backend.secret.html +++ b/functions/_aws_amplify_backend.secret.html @@ -9,4 +9,4 @@

    Example: Using a secret

             defineAuth({
    loginWith: {
    email: {},
    externalProviders: {
    loginWithAmazon: {
    clientId: secret('LOGIN_WITH_AMAZON_CLIENT_ID'),
    clientSecret: secret('LOGIN_WITH_AMAZON_CLIENT_SECRET'),
    },
    },
    },
    })
    ```
    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/functions/_aws_amplify_backend_auth.defineAuth.html b/functions/_aws_amplify_backend_auth.defineAuth.html index 18562262bf..4e4a5d358a 100644 --- a/functions/_aws_amplify_backend_auth.defineAuth.html +++ b/functions/_aws_amplify_backend_auth.defineAuth.html @@ -31,4 +31,4 @@

    Example

    access<
     
  • Optional userAttributes?: UserAttributes

    The set of attributes that are required for every user in the user pool. Read more on attributes here - https://docs.aws.amazon.com/cognito/latest/developerguide/user-pool-settings-attributes.html

    Default

    - email/phone will be added as required user attributes if they are included as login methods
     
    -
  • Returns ConstructFactory<BackendAuth>

    \ No newline at end of file +

    Returns ConstructFactory<BackendAuth>

    \ No newline at end of file diff --git a/functions/_aws_amplify_backend_data.defineData.html b/functions/_aws_amplify_backend_data.defineData.html index dace703707..e46bd3d313 100644 --- a/functions/_aws_amplify_backend_data.defineData.html +++ b/functions/_aws_amplify_backend_data.defineData.html @@ -1,2 +1,2 @@ defineData | Amplify Toolbox
    \ No newline at end of file +

    Parameters

    Returns ConstructFactory<AmplifyGraphqlApi>

    \ No newline at end of file diff --git a/functions/_aws_amplify_backend_function.defineFunction.html b/functions/_aws_amplify_backend_function.defineFunction.html index 229f4d0c22..5727bed955 100644 --- a/functions/_aws_amplify_backend_function.defineFunction.html +++ b/functions/_aws_amplify_backend_function.defineFunction.html @@ -1,2 +1,2 @@ defineFunction | Amplify Toolbox
    \ No newline at end of file +

    Parameters

    Returns ConstructFactory<ResourceProvider<FunctionResources> & ResourceAccessAcceptorFactory & AddEnvironmentFactory & StackProvider>

    \ No newline at end of file diff --git a/functions/_aws_amplify_backend_secret.getSecretClient.html b/functions/_aws_amplify_backend_secret.getSecretClient.html index d2d23858db..f632be625f 100644 --- a/functions/_aws_amplify_backend_secret.getSecretClient.html +++ b/functions/_aws_amplify_backend_secret.getSecretClient.html @@ -1,2 +1,2 @@ getSecretClient | Amplify Toolbox
    \ No newline at end of file +

    Parameters

    Returns SecretClient

    \ No newline at end of file diff --git a/functions/_aws_amplify_backend_secret.getSecretClientWithAmplifyErrorHandling.html b/functions/_aws_amplify_backend_secret.getSecretClientWithAmplifyErrorHandling.html index 53e7b61cfa..50df608ef6 100644 --- a/functions/_aws_amplify_backend_secret.getSecretClientWithAmplifyErrorHandling.html +++ b/functions/_aws_amplify_backend_secret.getSecretClientWithAmplifyErrorHandling.html @@ -1,3 +1,3 @@ getSecretClientWithAmplifyErrorHandling | Amplify Toolbox
    \ No newline at end of file +

    Parameters

    Returns SecretClient

    \ No newline at end of file diff --git a/functions/_aws_amplify_backend_storage.defineStorage.html b/functions/_aws_amplify_backend_storage.defineStorage.html index 52c5ce2309..5546b3605d 100644 --- a/functions/_aws_amplify_backend_storage.defineStorage.html +++ b/functions/_aws_amplify_backend_storage.defineStorage.html @@ -1,3 +1,3 @@ defineStorage | Amplify Toolbox
    \ No newline at end of file +
    \ No newline at end of file diff --git a/functions/_aws_amplify_client_config.generateClientConfig.html b/functions/_aws_amplify_client_config.generateClientConfig.html index 3fcc5ef213..528317ca0a 100644 --- a/functions/_aws_amplify_client_config.generateClientConfig.html +++ b/functions/_aws_amplify_client_config.generateClientConfig.html @@ -1,2 +1,2 @@ generateClientConfig | Amplify Toolbox
    \ No newline at end of file +

    Type Parameters

    • T extends "1" | "1.1" | "1.2" | "1.3" | "0"

    Parameters

    • backendIdentifier: DeployedBackendIdentifier
    • version: T
    • Optional awsClientProvider: AWSClientProvider<{
          getAmplifyClient: AmplifyClient;
          getCloudFormationClient: CloudFormationClient;
          getS3Client: S3Client;
      }>

    Returns Promise<ClientConfigVersionTemplateType<T>>

    \ No newline at end of file diff --git a/functions/_aws_amplify_client_config.generateClientConfigToFile.html b/functions/_aws_amplify_client_config.generateClientConfigToFile.html index 2b466c8582..6bbd031cb2 100644 --- a/functions/_aws_amplify_client_config.generateClientConfigToFile.html +++ b/functions/_aws_amplify_client_config.generateClientConfigToFile.html @@ -1,2 +1,2 @@ generateClientConfigToFile | Amplify Toolbox
    \ No newline at end of file +

    Parameters

    • backendIdentifier: DeployedBackendIdentifier
    • version: "1" | "1.1" | "1.2" | "1.3" | "0"
    • Optional outDir: string
    • Optional format: ClientConfigFormat
    • Optional awsClientProvider: AWSClientProvider<{
          getAmplifyClient: AmplifyClient;
          getCloudFormationClient: CloudFormationClient;
          getS3Client: S3Client;
      }>

    Returns Promise<GenerateClientConfigToFileResult>

    \ No newline at end of file diff --git a/functions/_aws_amplify_client_config.generateEmptyClientConfigToFile.html b/functions/_aws_amplify_client_config.generateEmptyClientConfigToFile.html index 6f0d02bb16..5b452fe175 100644 --- a/functions/_aws_amplify_client_config.generateEmptyClientConfigToFile.html +++ b/functions/_aws_amplify_client_config.generateEmptyClientConfigToFile.html @@ -1,2 +1,2 @@ generateEmptyClientConfigToFile | Amplify Toolbox
    \ No newline at end of file +

    Parameters

    • version: "1" | "1.1" | "1.2" | "1.3" | "0"
    • Optional outDir: string
    • Optional format: ClientConfigFormat

    Returns Promise<GenerateClientConfigToFileResult>

    \ No newline at end of file diff --git a/functions/_aws_amplify_client_config.getClientConfigFileName.html b/functions/_aws_amplify_client_config.getClientConfigFileName.html index 342de390b5..8d550493d5 100644 --- a/functions/_aws_amplify_client_config.getClientConfigFileName.html +++ b/functions/_aws_amplify_client_config.getClientConfigFileName.html @@ -1,2 +1,2 @@ getClientConfigFileName | Amplify Toolbox
    \ No newline at end of file +

    Parameters

    • version: "1" | "1.1" | "1.2" | "1.3" | "0"

    Returns ClientConfigFileBaseName

    \ No newline at end of file diff --git a/functions/_aws_amplify_client_config.getClientConfigPath.html b/functions/_aws_amplify_client_config.getClientConfigPath.html index 0ead7a538c..e017dadf46 100644 --- a/functions/_aws_amplify_client_config.getClientConfigPath.html +++ b/functions/_aws_amplify_client_config.getClientConfigPath.html @@ -3,4 +3,4 @@
  • Optional outDir: string

    path to directory where config is written. If not provided defaults to current process working directory.

  • Optional format: ClientConfigFormat

    The format which the configuration should be exported into. Defaults to JSON. returns path to config file

    -
  • Returns Promise<string>

    \ No newline at end of file +

    Returns Promise<string>

    \ No newline at end of file diff --git a/functions/_aws_amplify_form_generator.createLocalGraphqlFormGenerator.html b/functions/_aws_amplify_form_generator.createLocalGraphqlFormGenerator.html index 45960fa7f7..f16f744959 100644 --- a/functions/_aws_amplify_form_generator.createLocalGraphqlFormGenerator.html +++ b/functions/_aws_amplify_form_generator.createLocalGraphqlFormGenerator.html @@ -1,2 +1,2 @@ createLocalGraphqlFormGenerator | Amplify Toolbox
    \ No newline at end of file +

    Parameters

    Returns GraphqlFormGenerator

    \ No newline at end of file diff --git a/functions/_aws_amplify_model_generator.createGraphqlDocumentGenerator.html b/functions/_aws_amplify_model_generator.createGraphqlDocumentGenerator.html index 4147ffb519..12f385a238 100644 --- a/functions/_aws_amplify_model_generator.createGraphqlDocumentGenerator.html +++ b/functions/_aws_amplify_model_generator.createGraphqlDocumentGenerator.html @@ -1,2 +1,2 @@ createGraphqlDocumentGenerator | Amplify Toolbox
    \ No newline at end of file +

    Parameters

    Returns GraphqlDocumentGenerator

    \ No newline at end of file diff --git a/functions/_aws_amplify_model_generator.createGraphqlModelsGenerator.html b/functions/_aws_amplify_model_generator.createGraphqlModelsGenerator.html index db8377c053..23778a707a 100644 --- a/functions/_aws_amplify_model_generator.createGraphqlModelsGenerator.html +++ b/functions/_aws_amplify_model_generator.createGraphqlModelsGenerator.html @@ -1,2 +1,2 @@ createGraphqlModelsGenerator | Amplify Toolbox
    \ No newline at end of file +

    Returns GraphqlModelsGenerator

    \ No newline at end of file diff --git a/functions/_aws_amplify_model_generator.generateApiCode.html b/functions/_aws_amplify_model_generator.generateApiCode.html index 6ab128ad24..0e9072214e 100644 --- a/functions/_aws_amplify_model_generator.generateApiCode.html +++ b/functions/_aws_amplify_model_generator.generateApiCode.html @@ -1,2 +1,2 @@ generateApiCode | Amplify Toolbox
    \ No newline at end of file +

    Parameters

    Returns Promise<GenerationResult>

    \ No newline at end of file diff --git a/interfaces/_aws_amplify_client_config.clientConfigTypesV1.AWSAmplifyBackendOutputs.html b/interfaces/_aws_amplify_client_config.clientConfigTypesV1.AWSAmplifyBackendOutputs.html index feeaa2f266..1a19ded06d 100644 --- a/interfaces/_aws_amplify_client_config.clientConfigTypesV1.AWSAmplifyBackendOutputs.html +++ b/interfaces/_aws_amplify_client_config.clientConfigTypesV1.AWSAmplifyBackendOutputs.html @@ -1,5 +1,5 @@ AWSAmplifyBackendOutputs | Amplify Toolbox

    Config format for Amplify Gen 2 client libraries to communicate with backend services.

    -
    interface AWSAmplifyBackendOutputs {
        analytics?: {
            amazon_pinpoint?: {
                app_id: string;
                aws_region: string;
            };
        };
        auth?: {
            aws_region: string;
            identity_pool_id?: string;
            mfa_configuration?: "NONE" | "OPTIONAL" | "REQUIRED";
            mfa_methods?: ("SMS" | "TOTP")[];
            oauth?: {
                domain: string;
                identity_providers: ("GOOGLE" | "FACEBOOK" | "LOGIN_WITH_AMAZON" | "SIGN_IN_WITH_APPLE")[];
                redirect_sign_in_uri: string[];
                redirect_sign_out_uri: string[];
                response_type: "code" | "token";
                scopes: string[];
            };
            password_policy?: {
                min_length: number;
                require_lowercase: boolean;
                require_numbers: boolean;
                require_symbols: boolean;
                require_uppercase: boolean;
            };
            standard_required_attributes?: clientConfigTypesV1.AmazonCognitoStandardAttributes[];
            unauthenticated_identities_enabled?: boolean;
            user_pool_client_id: string;
            user_pool_id: string;
            user_verification_types?: ("email" | "phone_number")[];
            username_attributes?: ("email" | "phone_number" | "username")[];
        };
        custom?: {
            [k: string]: unknown;
        };
        data?: {
            api_key?: string;
            authorization_types: clientConfigTypesV1.AwsAppsyncAuthorizationType[];
            aws_region: string;
            default_authorization_type: clientConfigTypesV1.AwsAppsyncAuthorizationType;
            model_introspection?: {
                [k: string]: unknown;
            };
            url: string;
        };
        geo?: {
            aws_region: string;
            geofence_collections?: {
                default: string;
                items: string[];
            };
            maps?: {
                default: string;
                items: {
                    [k: string]: clientConfigTypesV1.AmazonLocationServiceConfig;
                };
            };
            search_indices?: {
                default: string;
                items: string[];
            };
        };
        notifications?: {
            amazon_pinpoint_app_id: string;
            aws_region: string;
            channels: clientConfigTypesV1.AmazonPinpointChannels[];
        };
        storage?: {
            aws_region: string;
            bucket_name: string;
        };
        version: "1";
    }

    Properties

    interface AWSAmplifyBackendOutputs {
        analytics?: {
            amazon_pinpoint?: {
                app_id: string;
                aws_region: string;
            };
        };
        auth?: {
            aws_region: string;
            identity_pool_id?: string;
            mfa_configuration?: "NONE" | "OPTIONAL" | "REQUIRED";
            mfa_methods?: ("SMS" | "TOTP")[];
            oauth?: {
                domain: string;
                identity_providers: ("GOOGLE" | "FACEBOOK" | "LOGIN_WITH_AMAZON" | "SIGN_IN_WITH_APPLE")[];
                redirect_sign_in_uri: string[];
                redirect_sign_out_uri: string[];
                response_type: "code" | "token";
                scopes: string[];
            };
            password_policy?: {
                min_length: number;
                require_lowercase: boolean;
                require_numbers: boolean;
                require_symbols: boolean;
                require_uppercase: boolean;
            };
            standard_required_attributes?: clientConfigTypesV1.AmazonCognitoStandardAttributes[];
            unauthenticated_identities_enabled?: boolean;
            user_pool_client_id: string;
            user_pool_id: string;
            user_verification_types?: ("email" | "phone_number")[];
            username_attributes?: ("email" | "phone_number" | "username")[];
        };
        custom?: {
            [k: string]: unknown;
        };
        data?: {
            api_key?: string;
            authorization_types: clientConfigTypesV1.AwsAppsyncAuthorizationType[];
            aws_region: string;
            default_authorization_type: clientConfigTypesV1.AwsAppsyncAuthorizationType;
            model_introspection?: {
                [k: string]: unknown;
            };
            url: string;
        };
        geo?: {
            aws_region: string;
            geofence_collections?: {
                default: string;
                items: string[];
            };
            maps?: {
                default: string;
                items: {
                    [k: string]: clientConfigTypesV1.AmazonLocationServiceConfig;
                };
            };
            search_indices?: {
                default: string;
                items: string[];
            };
        };
        notifications?: {
            amazon_pinpoint_app_id: string;
            aws_region: string;
            channels: clientConfigTypesV1.AmazonPinpointChannels[];
        };
        storage?: {
            aws_region: string;
            bucket_name: string;
        };
        version: "1";
    }

    Properties

    Properties

    analytics?: {
        amazon_pinpoint?: {
            app_id: string;
            aws_region: string;
        };
    }

    Outputs manually specified by developers for use with frontend library

    Type declaration

    • Optional amazon_pinpoint?: {
          app_id: string;
          aws_region: string;
      }
      • app_id: string
      • aws_region: string

        AWS Region of Amazon Pinpoint resources

        -
    auth?: {
        aws_region: string;
        identity_pool_id?: string;
        mfa_configuration?: "NONE" | "OPTIONAL" | "REQUIRED";
        mfa_methods?: ("SMS" | "TOTP")[];
        oauth?: {
            domain: string;
            identity_providers: ("GOOGLE" | "FACEBOOK" | "LOGIN_WITH_AMAZON" | "SIGN_IN_WITH_APPLE")[];
            redirect_sign_in_uri: string[];
            redirect_sign_out_uri: string[];
            response_type: "code" | "token";
            scopes: string[];
        };
        password_policy?: {
            min_length: number;
            require_lowercase: boolean;
            require_numbers: boolean;
            require_symbols: boolean;
            require_uppercase: boolean;
        };
        standard_required_attributes?: clientConfigTypesV1.AmazonCognitoStandardAttributes[];
        unauthenticated_identities_enabled?: boolean;
        user_pool_client_id: string;
        user_pool_id: string;
        user_verification_types?: ("email" | "phone_number")[];
        username_attributes?: ("email" | "phone_number" | "username")[];
    }

    Outputs generated from defineAuth

    +
    auth?: {
        aws_region: string;
        identity_pool_id?: string;
        mfa_configuration?: "NONE" | "OPTIONAL" | "REQUIRED";
        mfa_methods?: ("SMS" | "TOTP")[];
        oauth?: {
            domain: string;
            identity_providers: ("GOOGLE" | "FACEBOOK" | "LOGIN_WITH_AMAZON" | "SIGN_IN_WITH_APPLE")[];
            redirect_sign_in_uri: string[];
            redirect_sign_out_uri: string[];
            response_type: "code" | "token";
            scopes: string[];
        };
        password_policy?: {
            min_length: number;
            require_lowercase: boolean;
            require_numbers: boolean;
            require_symbols: boolean;
            require_uppercase: boolean;
        };
        standard_required_attributes?: clientConfigTypesV1.AmazonCognitoStandardAttributes[];
        unauthenticated_identities_enabled?: boolean;
        user_pool_client_id: string;
        user_pool_id: string;
        user_verification_types?: ("email" | "phone_number")[];
        username_attributes?: ("email" | "phone_number" | "username")[];
    }

    Outputs generated from defineAuth

    Type declaration

    • aws_region: string

      AWS Region of Amazon Cognito resources

    • Optional identity_pool_id?: string

      Cognito Identity Pool ID

    • Optional mfa_configuration?: "NONE" | "OPTIONAL" | "REQUIRED"
    • Optional mfa_methods?: ("SMS" | "TOTP")[]
    • Optional oauth?: {
          domain: string;
          identity_providers: ("GOOGLE" | "FACEBOOK" | "LOGIN_WITH_AMAZON" | "SIGN_IN_WITH_APPLE")[];
          redirect_sign_in_uri: string[];
          redirect_sign_out_uri: string[];
          response_type: "code" | "token";
          scopes: string[];
      }
      • domain: string

        Domain used for identity providers

        @@ -27,17 +27,17 @@
      • user_pool_id: string

        Cognito User Pool ID

      • Optional user_verification_types?: ("email" | "phone_number")[]
      • Optional username_attributes?: ("email" | "phone_number" | "username")[]

        Cognito User Pool username attributes

        Min Items

        1

        -
    custom?: {
        [k: string]: unknown;
    }

    Outputs generated from backend.addOutput({ custom: })

    -

    Type declaration

    • [k: string]: unknown
    data?: {
        api_key?: string;
        authorization_types: clientConfigTypesV1.AwsAppsyncAuthorizationType[];
        aws_region: string;
        default_authorization_type: clientConfigTypesV1.AwsAppsyncAuthorizationType;
        model_introspection?: {
            [k: string]: unknown;
        };
        url: string;
    }

    Outputs generated from defineData

    +
    custom?: {
        [k: string]: unknown;
    }

    Outputs generated from backend.addOutput({ custom: })

    +

    Type declaration

    • [k: string]: unknown
    data?: {
        api_key?: string;
        authorization_types: clientConfigTypesV1.AwsAppsyncAuthorizationType[];
        aws_region: string;
        default_authorization_type: clientConfigTypesV1.AwsAppsyncAuthorizationType;
        model_introspection?: {
            [k: string]: unknown;
        };
        url: string;
    }

    Outputs generated from defineData

    Type declaration

    geo?: {
        aws_region: string;
        geofence_collections?: {
            default: string;
            items: string[];
        };
        maps?: {
            default: string;
            items: {
                [k: string]: clientConfigTypesV1.AmazonLocationServiceConfig;
            };
        };
        search_indices?: {
            default: string;
            items: string[];
        };
    }

    Outputs manually specified by developers for use with frontend library

    +
    geo?: {
        aws_region: string;
        geofence_collections?: {
            default: string;
            items: string[];
        };
        maps?: {
            default: string;
            items: {
                [k: string]: clientConfigTypesV1.AmazonLocationServiceConfig;
            };
        };
        search_indices?: {
            default: string;
            items: string[];
        };
    }

    Outputs manually specified by developers for use with frontend library

    Type declaration

    • aws_region: string

      AWS Region of Amazon Location Service resources

    • Optional geofence_collections?: {
          default: string;
          items: string[];
      }

      Geofencing (visualize virtual perimeters)

      • default: string
      • items: string[]
    • Optional maps?: {
          default: string;
          items: {
              [k: string]: clientConfigTypesV1.AmazonLocationServiceConfig;
          };
      }

      Maps from Amazon Location Service

    • Optional search_indices?: {
          default: string;
          items: string[];
      }

      Location search (search by places, addresses, coordinates)

      -
      • default: string
      • items: string[]
    notifications?: {
        amazon_pinpoint_app_id: string;
        aws_region: string;
        channels: clientConfigTypesV1.AmazonPinpointChannels[];
    }

    Outputs manually specified by developers for use with frontend library

    +
    • default: string
    • items: string[]
    notifications?: {
        amazon_pinpoint_app_id: string;
        aws_region: string;
        channels: clientConfigTypesV1.AmazonPinpointChannels[];
    }

    Outputs manually specified by developers for use with frontend library

    Type declaration

    storage?: {
        aws_region: string;
        bucket_name: string;
    }

    Outputs generated from defineStorage

    -

    Type declaration

    • aws_region: string
    • bucket_name: string
    version: "1"

    Version of this schema

    -
    \ No newline at end of file +
    storage?: {
        aws_region: string;
        bucket_name: string;
    }

    Outputs generated from defineStorage

    +

    Type declaration

    • aws_region: string
    • bucket_name: string
    version: "1"

    Version of this schema

    +
    \ No newline at end of file diff --git a/interfaces/_aws_amplify_client_config.clientConfigTypesV1.AmazonLocationServiceConfig.html b/interfaces/_aws_amplify_client_config.clientConfigTypesV1.AmazonLocationServiceConfig.html index baf865d7b4..3cd5f5b9dd 100644 --- a/interfaces/_aws_amplify_client_config.clientConfigTypesV1.AmazonLocationServiceConfig.html +++ b/interfaces/_aws_amplify_client_config.clientConfigTypesV1.AmazonLocationServiceConfig.html @@ -1,7 +1,7 @@ AmazonLocationServiceConfig | Amplify Toolbox

    This interface was referenced by undefined's JSON-Schema definition via the patternProperty ".*".

    -
    interface AmazonLocationServiceConfig {
        name?: string;
        style?: string;
    }

    Properties

    interface AmazonLocationServiceConfig {
        name?: string;
        style?: string;
    }

    Properties

    Properties

    name?: string

    Map resource name

    -
    style?: string

    Map style

    -
    \ No newline at end of file +
    style?: string

    Map style

    +
    \ No newline at end of file diff --git a/interfaces/_aws_amplify_client_config.clientConfigTypesV1_1.AWSAmplifyBackendOutputs.html b/interfaces/_aws_amplify_client_config.clientConfigTypesV1_1.AWSAmplifyBackendOutputs.html index e38c35e17d..7ec76e69ae 100644 --- a/interfaces/_aws_amplify_client_config.clientConfigTypesV1_1.AWSAmplifyBackendOutputs.html +++ b/interfaces/_aws_amplify_client_config.clientConfigTypesV1_1.AWSAmplifyBackendOutputs.html @@ -1,5 +1,5 @@ AWSAmplifyBackendOutputs | Amplify Toolbox

    Config format for Amplify Gen 2 client libraries to communicate with backend services.

    -
    interface AWSAmplifyBackendOutputs {
        analytics?: {
            amazon_pinpoint?: {
                app_id: string;
                aws_region: string;
            };
        };
        auth?: {
            aws_region: string;
            identity_pool_id?: string;
            mfa_configuration?: "NONE" | "OPTIONAL" | "REQUIRED";
            mfa_methods?: ("SMS" | "TOTP")[];
            oauth?: {
                domain: string;
                identity_providers: ("GOOGLE" | "FACEBOOK" | "LOGIN_WITH_AMAZON" | "SIGN_IN_WITH_APPLE")[];
                redirect_sign_in_uri: string[];
                redirect_sign_out_uri: string[];
                response_type: "code" | "token";
                scopes: string[];
            };
            password_policy?: {
                min_length: number;
                require_lowercase: boolean;
                require_numbers: boolean;
                require_symbols: boolean;
                require_uppercase: boolean;
            };
            standard_required_attributes?: clientConfigTypesV1_1.AmazonCognitoStandardAttributes[];
            unauthenticated_identities_enabled?: boolean;
            user_pool_client_id: string;
            user_pool_id: string;
            user_verification_types?: ("email" | "phone_number")[];
            username_attributes?: ("email" | "phone_number" | "username")[];
        };
        custom?: {
            [k: string]: unknown;
        };
        data?: {
            api_key?: string;
            authorization_types: clientConfigTypesV1_1.AwsAppsyncAuthorizationType[];
            aws_region: string;
            default_authorization_type: clientConfigTypesV1_1.AwsAppsyncAuthorizationType;
            model_introspection?: {
                [k: string]: unknown;
            };
            url: string;
        };
        geo?: {
            aws_region: string;
            geofence_collections?: {
                default: string;
                items: string[];
            };
            maps?: {
                default: string;
                items: {
                    [k: string]: clientConfigTypesV1_1.AmazonLocationServiceConfig;
                };
            };
            search_indices?: {
                default: string;
                items: string[];
            };
        };
        notifications?: {
            amazon_pinpoint_app_id: string;
            aws_region: string;
            channels: clientConfigTypesV1_1.AmazonPinpointChannels[];
        };
        storage?: {
            aws_region: string;
            bucket_name: string;
            buckets?: clientConfigTypesV1_1.AmplifyStorageBucket[];
        };
        version: "1.1";
    }

    Properties

    interface AWSAmplifyBackendOutputs {
        analytics?: {
            amazon_pinpoint?: {
                app_id: string;
                aws_region: string;
            };
        };
        auth?: {
            aws_region: string;
            identity_pool_id?: string;
            mfa_configuration?: "NONE" | "OPTIONAL" | "REQUIRED";
            mfa_methods?: ("SMS" | "TOTP")[];
            oauth?: {
                domain: string;
                identity_providers: ("GOOGLE" | "FACEBOOK" | "LOGIN_WITH_AMAZON" | "SIGN_IN_WITH_APPLE")[];
                redirect_sign_in_uri: string[];
                redirect_sign_out_uri: string[];
                response_type: "code" | "token";
                scopes: string[];
            };
            password_policy?: {
                min_length: number;
                require_lowercase: boolean;
                require_numbers: boolean;
                require_symbols: boolean;
                require_uppercase: boolean;
            };
            standard_required_attributes?: clientConfigTypesV1_1.AmazonCognitoStandardAttributes[];
            unauthenticated_identities_enabled?: boolean;
            user_pool_client_id: string;
            user_pool_id: string;
            user_verification_types?: ("email" | "phone_number")[];
            username_attributes?: ("email" | "phone_number" | "username")[];
        };
        custom?: {
            [k: string]: unknown;
        };
        data?: {
            api_key?: string;
            authorization_types: clientConfigTypesV1_1.AwsAppsyncAuthorizationType[];
            aws_region: string;
            default_authorization_type: clientConfigTypesV1_1.AwsAppsyncAuthorizationType;
            model_introspection?: {
                [k: string]: unknown;
            };
            url: string;
        };
        geo?: {
            aws_region: string;
            geofence_collections?: {
                default: string;
                items: string[];
            };
            maps?: {
                default: string;
                items: {
                    [k: string]: clientConfigTypesV1_1.AmazonLocationServiceConfig;
                };
            };
            search_indices?: {
                default: string;
                items: string[];
            };
        };
        notifications?: {
            amazon_pinpoint_app_id: string;
            aws_region: string;
            channels: clientConfigTypesV1_1.AmazonPinpointChannels[];
        };
        storage?: {
            aws_region: string;
            bucket_name: string;
            buckets?: clientConfigTypesV1_1.AmplifyStorageBucket[];
        };
        version: "1.1";
    }

    Properties

    Properties

    analytics?: {
        amazon_pinpoint?: {
            app_id: string;
            aws_region: string;
        };
    }

    Outputs manually specified by developers for use with frontend library

    Type declaration

    • Optional amazon_pinpoint?: {
          app_id: string;
          aws_region: string;
      }
      • app_id: string
      • aws_region: string

        AWS Region of Amazon Pinpoint resources

        -
    auth?: {
        aws_region: string;
        identity_pool_id?: string;
        mfa_configuration?: "NONE" | "OPTIONAL" | "REQUIRED";
        mfa_methods?: ("SMS" | "TOTP")[];
        oauth?: {
            domain: string;
            identity_providers: ("GOOGLE" | "FACEBOOK" | "LOGIN_WITH_AMAZON" | "SIGN_IN_WITH_APPLE")[];
            redirect_sign_in_uri: string[];
            redirect_sign_out_uri: string[];
            response_type: "code" | "token";
            scopes: string[];
        };
        password_policy?: {
            min_length: number;
            require_lowercase: boolean;
            require_numbers: boolean;
            require_symbols: boolean;
            require_uppercase: boolean;
        };
        standard_required_attributes?: clientConfigTypesV1_1.AmazonCognitoStandardAttributes[];
        unauthenticated_identities_enabled?: boolean;
        user_pool_client_id: string;
        user_pool_id: string;
        user_verification_types?: ("email" | "phone_number")[];
        username_attributes?: ("email" | "phone_number" | "username")[];
    }

    Outputs generated from defineAuth

    +
    auth?: {
        aws_region: string;
        identity_pool_id?: string;
        mfa_configuration?: "NONE" | "OPTIONAL" | "REQUIRED";
        mfa_methods?: ("SMS" | "TOTP")[];
        oauth?: {
            domain: string;
            identity_providers: ("GOOGLE" | "FACEBOOK" | "LOGIN_WITH_AMAZON" | "SIGN_IN_WITH_APPLE")[];
            redirect_sign_in_uri: string[];
            redirect_sign_out_uri: string[];
            response_type: "code" | "token";
            scopes: string[];
        };
        password_policy?: {
            min_length: number;
            require_lowercase: boolean;
            require_numbers: boolean;
            require_symbols: boolean;
            require_uppercase: boolean;
        };
        standard_required_attributes?: clientConfigTypesV1_1.AmazonCognitoStandardAttributes[];
        unauthenticated_identities_enabled?: boolean;
        user_pool_client_id: string;
        user_pool_id: string;
        user_verification_types?: ("email" | "phone_number")[];
        username_attributes?: ("email" | "phone_number" | "username")[];
    }

    Outputs generated from defineAuth

    Type declaration

    • aws_region: string

      AWS Region of Amazon Cognito resources

    • Optional identity_pool_id?: string

      Cognito Identity Pool ID

    • Optional mfa_configuration?: "NONE" | "OPTIONAL" | "REQUIRED"
    • Optional mfa_methods?: ("SMS" | "TOTP")[]
    • Optional oauth?: {
          domain: string;
          identity_providers: ("GOOGLE" | "FACEBOOK" | "LOGIN_WITH_AMAZON" | "SIGN_IN_WITH_APPLE")[];
          redirect_sign_in_uri: string[];
          redirect_sign_out_uri: string[];
          response_type: "code" | "token";
          scopes: string[];
      }
      • domain: string

        Domain used for identity providers

        @@ -27,17 +27,17 @@
      • user_pool_id: string

        Cognito User Pool ID

      • Optional user_verification_types?: ("email" | "phone_number")[]
      • Optional username_attributes?: ("email" | "phone_number" | "username")[]

        Cognito User Pool username attributes

        Min Items

        1

        -
    custom?: {
        [k: string]: unknown;
    }

    Outputs generated from backend.addOutput({ custom: })

    -

    Type declaration

    • [k: string]: unknown
    data?: {
        api_key?: string;
        authorization_types: clientConfigTypesV1_1.AwsAppsyncAuthorizationType[];
        aws_region: string;
        default_authorization_type: clientConfigTypesV1_1.AwsAppsyncAuthorizationType;
        model_introspection?: {
            [k: string]: unknown;
        };
        url: string;
    }

    Outputs generated from defineData

    +
    custom?: {
        [k: string]: unknown;
    }

    Outputs generated from backend.addOutput({ custom: })

    +

    Type declaration

    • [k: string]: unknown
    data?: {
        api_key?: string;
        authorization_types: clientConfigTypesV1_1.AwsAppsyncAuthorizationType[];
        aws_region: string;
        default_authorization_type: clientConfigTypesV1_1.AwsAppsyncAuthorizationType;
        model_introspection?: {
            [k: string]: unknown;
        };
        url: string;
    }

    Outputs generated from defineData

    Type declaration

    geo?: {
        aws_region: string;
        geofence_collections?: {
            default: string;
            items: string[];
        };
        maps?: {
            default: string;
            items: {
                [k: string]: clientConfigTypesV1_1.AmazonLocationServiceConfig;
            };
        };
        search_indices?: {
            default: string;
            items: string[];
        };
    }

    Outputs manually specified by developers for use with frontend library

    +
    geo?: {
        aws_region: string;
        geofence_collections?: {
            default: string;
            items: string[];
        };
        maps?: {
            default: string;
            items: {
                [k: string]: clientConfigTypesV1_1.AmazonLocationServiceConfig;
            };
        };
        search_indices?: {
            default: string;
            items: string[];
        };
    }

    Outputs manually specified by developers for use with frontend library

    Type declaration

    • aws_region: string

      AWS Region of Amazon Location Service resources

    • Optional geofence_collections?: {
          default: string;
          items: string[];
      }

      Geofencing (visualize virtual perimeters)

      • default: string
      • items: string[]
    • Optional maps?: {
          default: string;
          items: {
              [k: string]: clientConfigTypesV1_1.AmazonLocationServiceConfig;
          };
      }

      Maps from Amazon Location Service

    • Optional search_indices?: {
          default: string;
          items: string[];
      }

      Location search (search by places, addresses, coordinates)

      -
      • default: string
      • items: string[]
    notifications?: {
        amazon_pinpoint_app_id: string;
        aws_region: string;
        channels: clientConfigTypesV1_1.AmazonPinpointChannels[];
    }

    Outputs manually specified by developers for use with frontend library

    +
    • default: string
    • items: string[]
    notifications?: {
        amazon_pinpoint_app_id: string;
        aws_region: string;
        channels: clientConfigTypesV1_1.AmazonPinpointChannels[];
    }

    Outputs manually specified by developers for use with frontend library

    Type declaration

    storage?: {
        aws_region: string;
        bucket_name: string;
        buckets?: clientConfigTypesV1_1.AmplifyStorageBucket[];
    }

    Outputs generated from defineStorage

    -

    Type declaration

    version: "1.1"

    Version of this schema

    -
    \ No newline at end of file +
    storage?: {
        aws_region: string;
        bucket_name: string;
        buckets?: clientConfigTypesV1_1.AmplifyStorageBucket[];
    }

    Outputs generated from defineStorage

    +

    Type declaration

    version: "1.1"

    Version of this schema

    +
    \ No newline at end of file diff --git a/interfaces/_aws_amplify_client_config.clientConfigTypesV1_1.AmazonLocationServiceConfig.html b/interfaces/_aws_amplify_client_config.clientConfigTypesV1_1.AmazonLocationServiceConfig.html index ee37b4c6d3..af6b896c22 100644 --- a/interfaces/_aws_amplify_client_config.clientConfigTypesV1_1.AmazonLocationServiceConfig.html +++ b/interfaces/_aws_amplify_client_config.clientConfigTypesV1_1.AmazonLocationServiceConfig.html @@ -1,7 +1,7 @@ AmazonLocationServiceConfig | Amplify Toolbox

    This interface was referenced by undefined's JSON-Schema definition via the patternProperty ".*".

    -
    interface AmazonLocationServiceConfig {
        name?: string;
        style?: string;
    }

    Properties

    interface AmazonLocationServiceConfig {
        name?: string;
        style?: string;
    }

    Properties

    Properties

    name?: string

    Map resource name

    -
    style?: string

    Map style

    -
    \ No newline at end of file +
    style?: string

    Map style

    +
    \ No newline at end of file diff --git a/interfaces/_aws_amplify_client_config.clientConfigTypesV1_1.AmplifyStorageBucket.html b/interfaces/_aws_amplify_client_config.clientConfigTypesV1_1.AmplifyStorageBucket.html index 9691fb26be..3828c5305c 100644 --- a/interfaces/_aws_amplify_client_config.clientConfigTypesV1_1.AmplifyStorageBucket.html +++ b/interfaces/_aws_amplify_client_config.clientConfigTypesV1_1.AmplifyStorageBucket.html @@ -1,4 +1,4 @@ -AmplifyStorageBucket | Amplify Toolbox
    interface AmplifyStorageBucket {
        aws_region: string;
        bucket_name: string;
        name: string;
    }

    Properties

    aws_region +AmplifyStorageBucket | Amplify Toolbox
    interface AmplifyStorageBucket {
        aws_region: string;
        bucket_name: string;
        name: string;
    }

    Properties

    aws_region: string
    bucket_name: string
    name: string
    \ No newline at end of file +

    Properties

    aws_region: string
    bucket_name: string
    name: string
    \ No newline at end of file diff --git a/interfaces/_aws_amplify_client_config.clientConfigTypesV1_2.AWSAmplifyBackendOutputs.html b/interfaces/_aws_amplify_client_config.clientConfigTypesV1_2.AWSAmplifyBackendOutputs.html index 2b20eeb3f8..f13fe862cb 100644 --- a/interfaces/_aws_amplify_client_config.clientConfigTypesV1_2.AWSAmplifyBackendOutputs.html +++ b/interfaces/_aws_amplify_client_config.clientConfigTypesV1_2.AWSAmplifyBackendOutputs.html @@ -1,5 +1,5 @@ AWSAmplifyBackendOutputs | Amplify Toolbox

    Config format for Amplify Gen 2 client libraries to communicate with backend services.

    -
    interface AWSAmplifyBackendOutputs {
        analytics?: {
            amazon_pinpoint?: {
                app_id: string;
                aws_region: string;
            };
        };
        auth?: {
            aws_region: string;
            identity_pool_id?: string;
            mfa_configuration?: "NONE" | "OPTIONAL" | "REQUIRED";
            mfa_methods?: ("SMS" | "TOTP")[];
            oauth?: {
                domain: string;
                identity_providers: ("GOOGLE" | "FACEBOOK" | "LOGIN_WITH_AMAZON" | "SIGN_IN_WITH_APPLE")[];
                redirect_sign_in_uri: string[];
                redirect_sign_out_uri: string[];
                response_type: "code" | "token";
                scopes: string[];
            };
            password_policy?: {
                min_length: number;
                require_lowercase: boolean;
                require_numbers: boolean;
                require_symbols: boolean;
                require_uppercase: boolean;
            };
            standard_required_attributes?: clientConfigTypesV1_2.AmazonCognitoStandardAttributes[];
            unauthenticated_identities_enabled?: boolean;
            user_pool_client_id: string;
            user_pool_id: string;
            user_verification_types?: ("email" | "phone_number")[];
            username_attributes?: ("email" | "phone_number" | "username")[];
        };
        custom?: {
            [k: string]: unknown;
        };
        data?: {
            api_key?: string;
            authorization_types: clientConfigTypesV1_2.AwsAppsyncAuthorizationType[];
            aws_region: string;
            default_authorization_type: clientConfigTypesV1_2.AwsAppsyncAuthorizationType;
            model_introspection?: {
                [k: string]: unknown;
            };
            url: string;
        };
        geo?: {
            aws_region: string;
            geofence_collections?: {
                default: string;
                items: string[];
            };
            maps?: {
                default: string;
                items: {
                    [k: string]: clientConfigTypesV1_2.AmazonLocationServiceConfig;
                };
            };
            search_indices?: {
                default: string;
                items: string[];
            };
        };
        notifications?: {
            amazon_pinpoint_app_id: string;
            aws_region: string;
            channels: clientConfigTypesV1_2.AmazonPinpointChannels[];
        };
        storage?: {
            aws_region: string;
            bucket_name: string;
            buckets?: clientConfigTypesV1_2.AmplifyStorageBucket[];
        };
        version: "1.2";
    }

    Properties

    interface AWSAmplifyBackendOutputs {
        analytics?: {
            amazon_pinpoint?: {
                app_id: string;
                aws_region: string;
            };
        };
        auth?: {
            aws_region: string;
            identity_pool_id?: string;
            mfa_configuration?: "NONE" | "OPTIONAL" | "REQUIRED";
            mfa_methods?: ("SMS" | "TOTP")[];
            oauth?: {
                domain: string;
                identity_providers: ("GOOGLE" | "FACEBOOK" | "LOGIN_WITH_AMAZON" | "SIGN_IN_WITH_APPLE")[];
                redirect_sign_in_uri: string[];
                redirect_sign_out_uri: string[];
                response_type: "code" | "token";
                scopes: string[];
            };
            password_policy?: {
                min_length: number;
                require_lowercase: boolean;
                require_numbers: boolean;
                require_symbols: boolean;
                require_uppercase: boolean;
            };
            standard_required_attributes?: clientConfigTypesV1_2.AmazonCognitoStandardAttributes[];
            unauthenticated_identities_enabled?: boolean;
            user_pool_client_id: string;
            user_pool_id: string;
            user_verification_types?: ("email" | "phone_number")[];
            username_attributes?: ("email" | "phone_number" | "username")[];
        };
        custom?: {
            [k: string]: unknown;
        };
        data?: {
            api_key?: string;
            authorization_types: clientConfigTypesV1_2.AwsAppsyncAuthorizationType[];
            aws_region: string;
            default_authorization_type: clientConfigTypesV1_2.AwsAppsyncAuthorizationType;
            model_introspection?: {
                [k: string]: unknown;
            };
            url: string;
        };
        geo?: {
            aws_region: string;
            geofence_collections?: {
                default: string;
                items: string[];
            };
            maps?: {
                default: string;
                items: {
                    [k: string]: clientConfigTypesV1_2.AmazonLocationServiceConfig;
                };
            };
            search_indices?: {
                default: string;
                items: string[];
            };
        };
        notifications?: {
            amazon_pinpoint_app_id: string;
            aws_region: string;
            channels: clientConfigTypesV1_2.AmazonPinpointChannels[];
        };
        storage?: {
            aws_region: string;
            bucket_name: string;
            buckets?: clientConfigTypesV1_2.AmplifyStorageBucket[];
        };
        version: "1.2";
    }

    Properties

    Properties

    analytics?: {
        amazon_pinpoint?: {
            app_id: string;
            aws_region: string;
        };
    }

    Outputs manually specified by developers for use with frontend library

    Type declaration

    • Optional amazon_pinpoint?: {
          app_id: string;
          aws_region: string;
      }
      • app_id: string
      • aws_region: string

        AWS Region of Amazon Pinpoint resources

        -
    auth?: {
        aws_region: string;
        identity_pool_id?: string;
        mfa_configuration?: "NONE" | "OPTIONAL" | "REQUIRED";
        mfa_methods?: ("SMS" | "TOTP")[];
        oauth?: {
            domain: string;
            identity_providers: ("GOOGLE" | "FACEBOOK" | "LOGIN_WITH_AMAZON" | "SIGN_IN_WITH_APPLE")[];
            redirect_sign_in_uri: string[];
            redirect_sign_out_uri: string[];
            response_type: "code" | "token";
            scopes: string[];
        };
        password_policy?: {
            min_length: number;
            require_lowercase: boolean;
            require_numbers: boolean;
            require_symbols: boolean;
            require_uppercase: boolean;
        };
        standard_required_attributes?: clientConfigTypesV1_2.AmazonCognitoStandardAttributes[];
        unauthenticated_identities_enabled?: boolean;
        user_pool_client_id: string;
        user_pool_id: string;
        user_verification_types?: ("email" | "phone_number")[];
        username_attributes?: ("email" | "phone_number" | "username")[];
    }

    Outputs generated from defineAuth

    +
    auth?: {
        aws_region: string;
        identity_pool_id?: string;
        mfa_configuration?: "NONE" | "OPTIONAL" | "REQUIRED";
        mfa_methods?: ("SMS" | "TOTP")[];
        oauth?: {
            domain: string;
            identity_providers: ("GOOGLE" | "FACEBOOK" | "LOGIN_WITH_AMAZON" | "SIGN_IN_WITH_APPLE")[];
            redirect_sign_in_uri: string[];
            redirect_sign_out_uri: string[];
            response_type: "code" | "token";
            scopes: string[];
        };
        password_policy?: {
            min_length: number;
            require_lowercase: boolean;
            require_numbers: boolean;
            require_symbols: boolean;
            require_uppercase: boolean;
        };
        standard_required_attributes?: clientConfigTypesV1_2.AmazonCognitoStandardAttributes[];
        unauthenticated_identities_enabled?: boolean;
        user_pool_client_id: string;
        user_pool_id: string;
        user_verification_types?: ("email" | "phone_number")[];
        username_attributes?: ("email" | "phone_number" | "username")[];
    }

    Outputs generated from defineAuth

    Type declaration

    • aws_region: string

      AWS Region of Amazon Cognito resources

    • Optional identity_pool_id?: string

      Cognito Identity Pool ID

    • Optional mfa_configuration?: "NONE" | "OPTIONAL" | "REQUIRED"
    • Optional mfa_methods?: ("SMS" | "TOTP")[]
    • Optional oauth?: {
          domain: string;
          identity_providers: ("GOOGLE" | "FACEBOOK" | "LOGIN_WITH_AMAZON" | "SIGN_IN_WITH_APPLE")[];
          redirect_sign_in_uri: string[];
          redirect_sign_out_uri: string[];
          response_type: "code" | "token";
          scopes: string[];
      }
      • domain: string

        Domain used for identity providers

        @@ -27,19 +27,19 @@
      • user_pool_id: string

        Cognito User Pool ID

      • Optional user_verification_types?: ("email" | "phone_number")[]
      • Optional username_attributes?: ("email" | "phone_number" | "username")[]

        Cognito User Pool username attributes

        Min Items

        1

        -
    custom?: {
        [k: string]: unknown;
    }

    Outputs generated from backend.addOutput({ custom: })

    -

    Type declaration

    • [k: string]: unknown
    data?: {
        api_key?: string;
        authorization_types: clientConfigTypesV1_2.AwsAppsyncAuthorizationType[];
        aws_region: string;
        default_authorization_type: clientConfigTypesV1_2.AwsAppsyncAuthorizationType;
        model_introspection?: {
            [k: string]: unknown;
        };
        url: string;
    }

    Outputs generated from defineData

    +
    custom?: {
        [k: string]: unknown;
    }

    Outputs generated from backend.addOutput({ custom: })

    +

    Type declaration

    • [k: string]: unknown
    data?: {
        api_key?: string;
        authorization_types: clientConfigTypesV1_2.AwsAppsyncAuthorizationType[];
        aws_region: string;
        default_authorization_type: clientConfigTypesV1_2.AwsAppsyncAuthorizationType;
        model_introspection?: {
            [k: string]: unknown;
        };
        url: string;
    }

    Outputs generated from defineData

    Type declaration

    geo?: {
        aws_region: string;
        geofence_collections?: {
            default: string;
            items: string[];
        };
        maps?: {
            default: string;
            items: {
                [k: string]: clientConfigTypesV1_2.AmazonLocationServiceConfig;
            };
        };
        search_indices?: {
            default: string;
            items: string[];
        };
    }

    Outputs manually specified by developers for use with frontend library

    +
    geo?: {
        aws_region: string;
        geofence_collections?: {
            default: string;
            items: string[];
        };
        maps?: {
            default: string;
            items: {
                [k: string]: clientConfigTypesV1_2.AmazonLocationServiceConfig;
            };
        };
        search_indices?: {
            default: string;
            items: string[];
        };
    }

    Outputs manually specified by developers for use with frontend library

    Type declaration

    • aws_region: string

      AWS Region of Amazon Location Service resources

    • Optional geofence_collections?: {
          default: string;
          items: string[];
      }

      Geofencing (visualize virtual perimeters)

      • default: string
      • items: string[]

        Min Items

        1

    • Optional maps?: {
          default: string;
          items: {
              [k: string]: clientConfigTypesV1_2.AmazonLocationServiceConfig;
          };
      }

      Maps from Amazon Location Service

    • Optional search_indices?: {
          default: string;
          items: string[];
      }

      Location search (search by places, addresses, coordinates)

      • default: string
      • items: string[]

        Min Items

        1

        -
    notifications?: {
        amazon_pinpoint_app_id: string;
        aws_region: string;
        channels: clientConfigTypesV1_2.AmazonPinpointChannels[];
    }

    Outputs manually specified by developers for use with frontend library

    +
    notifications?: {
        amazon_pinpoint_app_id: string;
        aws_region: string;
        channels: clientConfigTypesV1_2.AmazonPinpointChannels[];
    }

    Outputs manually specified by developers for use with frontend library

    Type declaration

    storage?: {
        aws_region: string;
        bucket_name: string;
        buckets?: clientConfigTypesV1_2.AmplifyStorageBucket[];
    }

    Outputs generated from defineStorage

    -

    Type declaration

    version: "1.2"

    Version of this schema

    -
    \ No newline at end of file +
    storage?: {
        aws_region: string;
        bucket_name: string;
        buckets?: clientConfigTypesV1_2.AmplifyStorageBucket[];
    }

    Outputs generated from defineStorage

    +

    Type declaration

    version: "1.2"

    Version of this schema

    +
    \ No newline at end of file diff --git a/interfaces/_aws_amplify_client_config.clientConfigTypesV1_2.AmazonLocationServiceConfig.html b/interfaces/_aws_amplify_client_config.clientConfigTypesV1_2.AmazonLocationServiceConfig.html index dc203f591f..7a39e01189 100644 --- a/interfaces/_aws_amplify_client_config.clientConfigTypesV1_2.AmazonLocationServiceConfig.html +++ b/interfaces/_aws_amplify_client_config.clientConfigTypesV1_2.AmazonLocationServiceConfig.html @@ -1,7 +1,7 @@ AmazonLocationServiceConfig | Amplify Toolbox

    This interface was referenced by undefined's JSON-Schema definition via the patternProperty ".*".

    -
    interface AmazonLocationServiceConfig {
        name?: string;
        style?: string;
    }

    Properties

    interface AmazonLocationServiceConfig {
        name?: string;
        style?: string;
    }

    Properties

    Properties

    name?: string

    Map resource name

    -
    style?: string

    Map style

    -
    \ No newline at end of file +
    style?: string

    Map style

    +
    \ No newline at end of file diff --git a/interfaces/_aws_amplify_client_config.clientConfigTypesV1_2.AmplifyStorageAccessRule.html b/interfaces/_aws_amplify_client_config.clientConfigTypesV1_2.AmplifyStorageAccessRule.html index 3fc015f83f..38fad94579 100644 --- a/interfaces/_aws_amplify_client_config.clientConfigTypesV1_2.AmplifyStorageAccessRule.html +++ b/interfaces/_aws_amplify_client_config.clientConfigTypesV1_2.AmplifyStorageAccessRule.html @@ -1,8 +1,8 @@ AmplifyStorageAccessRule | Amplify Toolbox

    This interface was referenced by undefined's JSON-Schema definition via the patternProperty ".*".

    -
    \ No newline at end of file +

    Properties

    \ No newline at end of file diff --git a/interfaces/_aws_amplify_client_config.clientConfigTypesV1_2.AmplifyStorageBucket.html b/interfaces/_aws_amplify_client_config.clientConfigTypesV1_2.AmplifyStorageBucket.html index 8242dbb7ad..842e66377f 100644 --- a/interfaces/_aws_amplify_client_config.clientConfigTypesV1_2.AmplifyStorageBucket.html +++ b/interfaces/_aws_amplify_client_config.clientConfigTypesV1_2.AmplifyStorageBucket.html @@ -1,5 +1,5 @@ -AmplifyStorageBucket | Amplify Toolbox
    interface AmplifyStorageBucket {
        aws_region: string;
        bucket_name: string;
        name: string;
        paths?: {
            [k: string]: clientConfigTypesV1_2.AmplifyStorageAccessRule;
        };
    }

    Properties

    aws_region +AmplifyStorageBucket | Amplify Toolbox
    interface AmplifyStorageBucket {
        aws_region: string;
        bucket_name: string;
        name: string;
        paths?: {
            [k: string]: clientConfigTypesV1_2.AmplifyStorageAccessRule;
        };
    }

    Properties

    aws_region: string
    bucket_name: string
    name: string
    paths?: {
        [k: string]: clientConfigTypesV1_2.AmplifyStorageAccessRule;
    }

    Type declaration

    \ No newline at end of file +

    Properties

    aws_region: string
    bucket_name: string
    name: string
    paths?: {
        [k: string]: clientConfigTypesV1_2.AmplifyStorageAccessRule;
    }

    Type declaration

    \ No newline at end of file diff --git a/interfaces/_aws_amplify_client_config.clientConfigTypesV1_3.AWSAmplifyBackendOutputs.html b/interfaces/_aws_amplify_client_config.clientConfigTypesV1_3.AWSAmplifyBackendOutputs.html index 87f038040d..5ea5f91d42 100644 --- a/interfaces/_aws_amplify_client_config.clientConfigTypesV1_3.AWSAmplifyBackendOutputs.html +++ b/interfaces/_aws_amplify_client_config.clientConfigTypesV1_3.AWSAmplifyBackendOutputs.html @@ -1,5 +1,5 @@ AWSAmplifyBackendOutputs | Amplify Toolbox

    Config format for Amplify Gen 2 client libraries to communicate with backend services.

    -
    interface AWSAmplifyBackendOutputs {
        analytics?: {
            amazon_pinpoint?: {
                app_id: string;
                aws_region: string;
            };
        };
        auth?: {
            aws_region: string;
            groups?: {
                [k: string]: AmplifyUserGroupConfig;
            }[];
            identity_pool_id?: string;
            mfa_configuration?: "NONE" | "OPTIONAL" | "REQUIRED";
            mfa_methods?: ("SMS" | "TOTP")[];
            oauth?: {
                domain: string;
                identity_providers: ("GOOGLE" | "FACEBOOK" | "LOGIN_WITH_AMAZON" | "SIGN_IN_WITH_APPLE")[];
                redirect_sign_in_uri: string[];
                redirect_sign_out_uri: string[];
                response_type: "code" | "token";
                scopes: string[];
            };
            password_policy?: {
                min_length: number;
                require_lowercase: boolean;
                require_numbers: boolean;
                require_symbols: boolean;
                require_uppercase: boolean;
            };
            standard_required_attributes?: clientConfigTypesV1_3.AmazonCognitoStandardAttributes[];
            unauthenticated_identities_enabled?: boolean;
            user_pool_client_id: string;
            user_pool_id: string;
            user_verification_types?: ("email" | "phone_number")[];
            username_attributes?: ("email" | "phone_number" | "username")[];
        };
        custom?: {
            [k: string]: unknown;
        };
        data?: {
            api_key?: string;
            authorization_types: clientConfigTypesV1_3.AwsAppsyncAuthorizationType[];
            aws_region: string;
            default_authorization_type: clientConfigTypesV1_3.AwsAppsyncAuthorizationType;
            model_introspection?: {
                [k: string]: unknown;
            };
            url: string;
        };
        geo?: {
            aws_region: string;
            geofence_collections?: {
                default: string;
                items: string[];
            };
            maps?: {
                default: string;
                items: {
                    [k: string]: clientConfigTypesV1_3.AmazonLocationServiceConfig;
                };
            };
            search_indices?: {
                default: string;
                items: string[];
            };
        };
        notifications?: {
            amazon_pinpoint_app_id: string;
            aws_region: string;
            channels: clientConfigTypesV1_3.AmazonPinpointChannels[];
        };
        storage?: {
            aws_region: string;
            bucket_name: string;
            buckets?: clientConfigTypesV1_3.AmplifyStorageBucket[];
        };
        version: "1.3";
    }

    Properties

    interface AWSAmplifyBackendOutputs {
        analytics?: {
            amazon_pinpoint?: {
                app_id: string;
                aws_region: string;
            };
        };
        auth?: {
            aws_region: string;
            groups?: {
                [k: string]: AmplifyUserGroupConfig;
            }[];
            identity_pool_id?: string;
            mfa_configuration?: "NONE" | "OPTIONAL" | "REQUIRED";
            mfa_methods?: ("SMS" | "TOTP")[];
            oauth?: {
                domain: string;
                identity_providers: ("GOOGLE" | "FACEBOOK" | "LOGIN_WITH_AMAZON" | "SIGN_IN_WITH_APPLE")[];
                redirect_sign_in_uri: string[];
                redirect_sign_out_uri: string[];
                response_type: "code" | "token";
                scopes: string[];
            };
            password_policy?: {
                min_length: number;
                require_lowercase: boolean;
                require_numbers: boolean;
                require_symbols: boolean;
                require_uppercase: boolean;
            };
            standard_required_attributes?: clientConfigTypesV1_3.AmazonCognitoStandardAttributes[];
            unauthenticated_identities_enabled?: boolean;
            user_pool_client_id: string;
            user_pool_id: string;
            user_verification_types?: ("email" | "phone_number")[];
            username_attributes?: ("email" | "phone_number" | "username")[];
        };
        custom?: {
            [k: string]: unknown;
        };
        data?: {
            api_key?: string;
            authorization_types: clientConfigTypesV1_3.AwsAppsyncAuthorizationType[];
            aws_region: string;
            default_authorization_type: clientConfigTypesV1_3.AwsAppsyncAuthorizationType;
            model_introspection?: {
                [k: string]: unknown;
            };
            url: string;
        };
        geo?: {
            aws_region: string;
            geofence_collections?: {
                default: string;
                items: string[];
            };
            maps?: {
                default: string;
                items: {
                    [k: string]: clientConfigTypesV1_3.AmazonLocationServiceConfig;
                };
            };
            search_indices?: {
                default: string;
                items: string[];
            };
        };
        notifications?: {
            amazon_pinpoint_app_id: string;
            aws_region: string;
            channels: clientConfigTypesV1_3.AmazonPinpointChannels[];
        };
        storage?: {
            aws_region: string;
            bucket_name: string;
            buckets?: clientConfigTypesV1_3.AmplifyStorageBucket[];
        };
        version: "1.3";
    }

    Properties

    Properties

    analytics?: {
        amazon_pinpoint?: {
            app_id: string;
            aws_region: string;
        };
    }

    Outputs manually specified by developers for use with frontend library

    Type declaration

    • Optional amazon_pinpoint?: {
          app_id: string;
          aws_region: string;
      }
      • app_id: string
      • aws_region: string

        AWS Region of Amazon Pinpoint resources

        -
    auth?: {
        aws_region: string;
        groups?: {
            [k: string]: AmplifyUserGroupConfig;
        }[];
        identity_pool_id?: string;
        mfa_configuration?: "NONE" | "OPTIONAL" | "REQUIRED";
        mfa_methods?: ("SMS" | "TOTP")[];
        oauth?: {
            domain: string;
            identity_providers: ("GOOGLE" | "FACEBOOK" | "LOGIN_WITH_AMAZON" | "SIGN_IN_WITH_APPLE")[];
            redirect_sign_in_uri: string[];
            redirect_sign_out_uri: string[];
            response_type: "code" | "token";
            scopes: string[];
        };
        password_policy?: {
            min_length: number;
            require_lowercase: boolean;
            require_numbers: boolean;
            require_symbols: boolean;
            require_uppercase: boolean;
        };
        standard_required_attributes?: clientConfigTypesV1_3.AmazonCognitoStandardAttributes[];
        unauthenticated_identities_enabled?: boolean;
        user_pool_client_id: string;
        user_pool_id: string;
        user_verification_types?: ("email" | "phone_number")[];
        username_attributes?: ("email" | "phone_number" | "username")[];
    }

    Outputs generated from defineAuth

    +
    auth?: {
        aws_region: string;
        groups?: {
            [k: string]: AmplifyUserGroupConfig;
        }[];
        identity_pool_id?: string;
        mfa_configuration?: "NONE" | "OPTIONAL" | "REQUIRED";
        mfa_methods?: ("SMS" | "TOTP")[];
        oauth?: {
            domain: string;
            identity_providers: ("GOOGLE" | "FACEBOOK" | "LOGIN_WITH_AMAZON" | "SIGN_IN_WITH_APPLE")[];
            redirect_sign_in_uri: string[];
            redirect_sign_out_uri: string[];
            response_type: "code" | "token";
            scopes: string[];
        };
        password_policy?: {
            min_length: number;
            require_lowercase: boolean;
            require_numbers: boolean;
            require_symbols: boolean;
            require_uppercase: boolean;
        };
        standard_required_attributes?: clientConfigTypesV1_3.AmazonCognitoStandardAttributes[];
        unauthenticated_identities_enabled?: boolean;
        user_pool_client_id: string;
        user_pool_id: string;
        user_verification_types?: ("email" | "phone_number")[];
        username_attributes?: ("email" | "phone_number" | "username")[];
    }

    Outputs generated from defineAuth

    Type declaration

    • aws_region: string

      AWS Region of Amazon Cognito resources

    • Optional groups?: {
          [k: string]: AmplifyUserGroupConfig;
      }[]
    • Optional identity_pool_id?: string

      Cognito Identity Pool ID

    • Optional mfa_configuration?: "NONE" | "OPTIONAL" | "REQUIRED"
    • Optional mfa_methods?: ("SMS" | "TOTP")[]
    • Optional oauth?: {
          domain: string;
          identity_providers: ("GOOGLE" | "FACEBOOK" | "LOGIN_WITH_AMAZON" | "SIGN_IN_WITH_APPLE")[];
          redirect_sign_in_uri: string[];
          redirect_sign_out_uri: string[];
          response_type: "code" | "token";
          scopes: string[];
      }
      • domain: string

        Domain used for identity providers

        @@ -27,19 +27,19 @@
      • user_pool_id: string

        Cognito User Pool ID

      • Optional user_verification_types?: ("email" | "phone_number")[]
      • Optional username_attributes?: ("email" | "phone_number" | "username")[]

        Cognito User Pool username attributes

        Min Items

        1

        -
    custom?: {
        [k: string]: unknown;
    }

    Outputs generated from backend.addOutput({ custom: })

    -

    Type declaration

    • [k: string]: unknown
    data?: {
        api_key?: string;
        authorization_types: clientConfigTypesV1_3.AwsAppsyncAuthorizationType[];
        aws_region: string;
        default_authorization_type: clientConfigTypesV1_3.AwsAppsyncAuthorizationType;
        model_introspection?: {
            [k: string]: unknown;
        };
        url: string;
    }

    Outputs generated from defineData

    +
    custom?: {
        [k: string]: unknown;
    }

    Outputs generated from backend.addOutput({ custom: })

    +

    Type declaration

    • [k: string]: unknown
    data?: {
        api_key?: string;
        authorization_types: clientConfigTypesV1_3.AwsAppsyncAuthorizationType[];
        aws_region: string;
        default_authorization_type: clientConfigTypesV1_3.AwsAppsyncAuthorizationType;
        model_introspection?: {
            [k: string]: unknown;
        };
        url: string;
    }

    Outputs generated from defineData

    Type declaration

    geo?: {
        aws_region: string;
        geofence_collections?: {
            default: string;
            items: string[];
        };
        maps?: {
            default: string;
            items: {
                [k: string]: clientConfigTypesV1_3.AmazonLocationServiceConfig;
            };
        };
        search_indices?: {
            default: string;
            items: string[];
        };
    }

    Outputs manually specified by developers for use with frontend library

    +
    geo?: {
        aws_region: string;
        geofence_collections?: {
            default: string;
            items: string[];
        };
        maps?: {
            default: string;
            items: {
                [k: string]: clientConfigTypesV1_3.AmazonLocationServiceConfig;
            };
        };
        search_indices?: {
            default: string;
            items: string[];
        };
    }

    Outputs manually specified by developers for use with frontend library

    Type declaration

    • aws_region: string

      AWS Region of Amazon Location Service resources

    • Optional geofence_collections?: {
          default: string;
          items: string[];
      }

      Geofencing (visualize virtual perimeters)

      • default: string
      • items: string[]

        Min Items

        1

    • Optional maps?: {
          default: string;
          items: {
              [k: string]: clientConfigTypesV1_3.AmazonLocationServiceConfig;
          };
      }

      Maps from Amazon Location Service

    • Optional search_indices?: {
          default: string;
          items: string[];
      }

      Location search (search by places, addresses, coordinates)

      • default: string
      • items: string[]

        Min Items

        1

        -
    notifications?: {
        amazon_pinpoint_app_id: string;
        aws_region: string;
        channels: clientConfigTypesV1_3.AmazonPinpointChannels[];
    }

    Outputs manually specified by developers for use with frontend library

    +
    notifications?: {
        amazon_pinpoint_app_id: string;
        aws_region: string;
        channels: clientConfigTypesV1_3.AmazonPinpointChannels[];
    }

    Outputs manually specified by developers for use with frontend library

    Type declaration

    storage?: {
        aws_region: string;
        bucket_name: string;
        buckets?: clientConfigTypesV1_3.AmplifyStorageBucket[];
    }

    Outputs generated from defineStorage

    -

    Type declaration

    version: "1.3"

    Version of this schema

    -
    \ No newline at end of file +
    storage?: {
        aws_region: string;
        bucket_name: string;
        buckets?: clientConfigTypesV1_3.AmplifyStorageBucket[];
    }

    Outputs generated from defineStorage

    +

    Type declaration

    version: "1.3"

    Version of this schema

    +
    \ No newline at end of file diff --git a/interfaces/_aws_amplify_client_config.clientConfigTypesV1_3.AmazonLocationServiceConfig.html b/interfaces/_aws_amplify_client_config.clientConfigTypesV1_3.AmazonLocationServiceConfig.html index 34c7a5ef5b..c11e911d38 100644 --- a/interfaces/_aws_amplify_client_config.clientConfigTypesV1_3.AmazonLocationServiceConfig.html +++ b/interfaces/_aws_amplify_client_config.clientConfigTypesV1_3.AmazonLocationServiceConfig.html @@ -1,7 +1,7 @@ AmazonLocationServiceConfig | Amplify Toolbox

    This interface was referenced by undefined's JSON-Schema definition via the patternProperty ".*".

    -
    interface AmazonLocationServiceConfig {
        name?: string;
        style?: string;
    }

    Properties

    interface AmazonLocationServiceConfig {
        name?: string;
        style?: string;
    }

    Properties

    Properties

    name?: string

    Map resource name

    -
    style?: string

    Map style

    -
    \ No newline at end of file +
    style?: string

    Map style

    +
    \ No newline at end of file diff --git a/interfaces/_aws_amplify_client_config.clientConfigTypesV1_3.AmplifyStorageAccessRule.html b/interfaces/_aws_amplify_client_config.clientConfigTypesV1_3.AmplifyStorageAccessRule.html index 6fae08577b..6cf2ce7e88 100644 --- a/interfaces/_aws_amplify_client_config.clientConfigTypesV1_3.AmplifyStorageAccessRule.html +++ b/interfaces/_aws_amplify_client_config.clientConfigTypesV1_3.AmplifyStorageAccessRule.html @@ -1,8 +1,8 @@ AmplifyStorageAccessRule | Amplify Toolbox

    This interface was referenced by undefined's JSON-Schema definition via the patternProperty ".*".

    -
    \ No newline at end of file +

    Properties

    \ No newline at end of file diff --git a/interfaces/_aws_amplify_client_config.clientConfigTypesV1_3.AmplifyStorageBucket.html b/interfaces/_aws_amplify_client_config.clientConfigTypesV1_3.AmplifyStorageBucket.html index dc42c70928..cc94011ee1 100644 --- a/interfaces/_aws_amplify_client_config.clientConfigTypesV1_3.AmplifyStorageBucket.html +++ b/interfaces/_aws_amplify_client_config.clientConfigTypesV1_3.AmplifyStorageBucket.html @@ -1,5 +1,5 @@ -AmplifyStorageBucket | Amplify Toolbox
    interface AmplifyStorageBucket {
        aws_region: string;
        bucket_name: string;
        name: string;
        paths?: {
            [k: string]: clientConfigTypesV1_3.AmplifyStorageAccessRule;
        };
    }

    Properties

    aws_region +AmplifyStorageBucket | Amplify Toolbox
    interface AmplifyStorageBucket {
        aws_region: string;
        bucket_name: string;
        name: string;
        paths?: {
            [k: string]: clientConfigTypesV1_3.AmplifyStorageAccessRule;
        };
    }

    Properties

    aws_region: string
    bucket_name: string
    name: string
    paths?: {
        [k: string]: clientConfigTypesV1_3.AmplifyStorageAccessRule;
    }

    Type declaration

    \ No newline at end of file +

    Properties

    aws_region: string
    bucket_name: string
    name: string
    paths?: {
        [k: string]: clientConfigTypesV1_3.AmplifyStorageAccessRule;
    }

    Type declaration

    \ No newline at end of file diff --git a/interfaces/_aws_amplify_client_config.clientConfigTypesV1_3.AmplifyUserGroupConfig.html b/interfaces/_aws_amplify_client_config.clientConfigTypesV1_3.AmplifyUserGroupConfig.html index 75fb66be72..9cf1ae3258 100644 --- a/interfaces/_aws_amplify_client_config.clientConfigTypesV1_3.AmplifyUserGroupConfig.html +++ b/interfaces/_aws_amplify_client_config.clientConfigTypesV1_3.AmplifyUserGroupConfig.html @@ -1,4 +1,4 @@ AmplifyUserGroupConfig | Amplify Toolbox

    This interface was referenced by undefined's JSON-Schema definition via the patternProperty ".*".

    -
    interface AmplifyUserGroupConfig {
        precedence?: number;
    }

    Properties

    Properties

    precedence?: number
    \ No newline at end of file +
    interface AmplifyUserGroupConfig {
        precedence?: number;
    }

    Properties

    Properties

    precedence?: number
    \ No newline at end of file diff --git a/modules/_aws_amplify_ai_constructs.conversation.html b/modules/_aws_amplify_ai_constructs.conversation.html index 55d3d09ddd..dc84dab57d 100644 --- a/modules/_aws_amplify_ai_constructs.conversation.html +++ b/modules/_aws_amplify_ai_constructs.conversation.html @@ -1,4 +1,4 @@ -conversation | Amplify Toolbox

    Index

    Classes

    ConversationHandlerFunction +conversation | Amplify Toolbox
    \ No newline at end of file diff --git a/modules/_aws_amplify_client_config.clientConfigTypesV1.html b/modules/_aws_amplify_client_config.clientConfigTypesV1.html index 5407651153..f2c66912ea 100644 --- a/modules/_aws_amplify_client_config.clientConfigTypesV1.html +++ b/modules/_aws_amplify_client_config.clientConfigTypesV1.html @@ -1,4 +1,4 @@ -clientConfigTypesV1 | Amplify Toolbox

    Index

    Interfaces

    AWSAmplifyBackendOutputs +clientConfigTypesV1 | Amplify Toolbox

    Index

    Interfaces

    Type Aliases

    AmazonCognitoStandardAttributes AmazonPinpointChannels diff --git a/modules/_aws_amplify_client_config.clientConfigTypesV1_1.html b/modules/_aws_amplify_client_config.clientConfigTypesV1_1.html index 09a9aca557..045c12b2cb 100644 --- a/modules/_aws_amplify_client_config.clientConfigTypesV1_1.html +++ b/modules/_aws_amplify_client_config.clientConfigTypesV1_1.html @@ -1,4 +1,4 @@ -clientConfigTypesV1_1 | Amplify Toolbox

    Index

    Interfaces

    AWSAmplifyBackendOutputs +clientConfigTypesV1_1 | Amplify Toolbox

    Index

    Interfaces

    Type Aliases

    AmazonCognitoStandardAttributes diff --git a/modules/_aws_amplify_client_config.clientConfigTypesV1_2.html b/modules/_aws_amplify_client_config.clientConfigTypesV1_2.html index fa728abf92..d212358894 100644 --- a/modules/_aws_amplify_client_config.clientConfigTypesV1_2.html +++ b/modules/_aws_amplify_client_config.clientConfigTypesV1_2.html @@ -1,4 +1,4 @@ -clientConfigTypesV1_2 | Amplify Toolbox

    Index

    Interfaces

    AWSAmplifyBackendOutputs +clientConfigTypesV1_2 | Amplify Toolbox

    Index

    Interfaces

    AWSAmplifyBackendOutputs AmazonLocationServiceConfig AmplifyStorageAccessRule AmplifyStorageBucket diff --git a/modules/_aws_amplify_client_config.clientConfigTypesV1_3.html b/modules/_aws_amplify_client_config.clientConfigTypesV1_3.html index b57dc953b9..6e7c6c9a4c 100644 --- a/modules/_aws_amplify_client_config.clientConfigTypesV1_3.html +++ b/modules/_aws_amplify_client_config.clientConfigTypesV1_3.html @@ -1,4 +1,4 @@ -clientConfigTypesV1_3 | Amplify Toolbox

    Index

    Interfaces

    AWSAmplifyBackendOutputs +clientConfigTypesV1_3 | Amplify Toolbox

    Index

    Interfaces

    AWSAmplifyBackendOutputs AmazonLocationServiceConfig AmplifyStorageAccessRule AmplifyStorageBucket diff --git a/types/_aws_amplify_ai_constructs.conversation.ConversationHandlerFunctionProps.html b/types/_aws_amplify_ai_constructs.conversation.ConversationHandlerFunctionProps.html index 45f4eca5f4..5f08f9fcc7 100644 --- a/types/_aws_amplify_ai_constructs.conversation.ConversationHandlerFunctionProps.html +++ b/types/_aws_amplify_ai_constructs.conversation.ConversationHandlerFunctionProps.html @@ -1,4 +1,4 @@ ConversationHandlerFunctionProps | Amplify Toolbox
    ConversationHandlerFunctionProps: {
        entry?: string;
        memoryMB?: number;
        models: {
            modelId: string;
            region?: string;
        }[];
        outputStorageStrategy?: BackendOutputStorageStrategy<AIConversationOutput>;
    }

    Type declaration

    • Optional entry?: string
    • Optional memoryMB?: number

      An amount of memory (RAM) to allocate to the function between 128 and 10240 MB. Must be a whole number. Default is 512MB.

      -
    • models: {
          modelId: string;
          region?: string;
      }[]
    • Optional Internal outputStorageStrategy?: BackendOutputStorageStrategy<AIConversationOutput>
    \ No newline at end of file +
  • models: {
        modelId: string;
        region?: string;
    }[]
  • Optional Internal outputStorageStrategy?: BackendOutputStorageStrategy<AIConversationOutput>
  • \ No newline at end of file diff --git a/types/_aws_amplify_ai_constructs.conversation.ConversationTurnEventVersion.html b/types/_aws_amplify_ai_constructs.conversation.ConversationTurnEventVersion.html index 7d1521f9b9..e59d5b0c0d 100644 --- a/types/_aws_amplify_ai_constructs.conversation.ConversationTurnEventVersion.html +++ b/types/_aws_amplify_ai_constructs.conversation.ConversationTurnEventVersion.html @@ -1 +1 @@ -ConversationTurnEventVersion | Amplify Toolbox
    \ No newline at end of file +ConversationTurnEventVersion | Amplify Toolbox
    \ No newline at end of file diff --git a/types/_aws_amplify_auth_construct.AmazonProviderProps.html b/types/_aws_amplify_auth_construct.AmazonProviderProps.html index 85d89459d5..09d6adb323 100644 --- a/types/_aws_amplify_auth_construct.AmazonProviderProps.html +++ b/types/_aws_amplify_auth_construct.AmazonProviderProps.html @@ -1,2 +1,2 @@ AmazonProviderProps | Amplify Toolbox
    AmazonProviderProps: Omit<cognito.UserPoolIdentityProviderAmazonProps, "userPool" | "attributeMapping"> & IdentityProviderProps

    Amazon provider.

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/types/_aws_amplify_auth_construct.AppleProviderProps.html b/types/_aws_amplify_auth_construct.AppleProviderProps.html index af3b2b955d..0f12885552 100644 --- a/types/_aws_amplify_auth_construct.AppleProviderProps.html +++ b/types/_aws_amplify_auth_construct.AppleProviderProps.html @@ -1,2 +1,2 @@ AppleProviderProps | Amplify Toolbox
    AppleProviderProps: Omit<cognito.UserPoolIdentityProviderAppleProps, "userPool" | "attributeMapping"> & IdentityProviderProps

    Apple provider.

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/types/_aws_amplify_auth_construct.AttributeMapping.html b/types/_aws_amplify_auth_construct.AttributeMapping.html index ea26cbf065..094bab6e18 100644 --- a/types/_aws_amplify_auth_construct.AttributeMapping.html +++ b/types/_aws_amplify_auth_construct.AttributeMapping.html @@ -3,4 +3,4 @@

    Type declaration

    • Optional custom?: {
          [key: string]: string;
      }

      Specify custom attribute mapping here and mapping for any standard attributes not supported yet.

      Default

      - no custom attribute mapping
       
      -
      • [key: string]: string
    \ No newline at end of file +
    • [key: string]: string
    \ No newline at end of file diff --git a/types/_aws_amplify_auth_construct.AuthProps.html b/types/_aws_amplify_auth_construct.AuthProps.html index 7826d7e4b8..b4d659127e 100644 --- a/types/_aws_amplify_auth_construct.AuthProps.html +++ b/types/_aws_amplify_auth_construct.AuthProps.html @@ -31,4 +31,4 @@
  • Optional userAttributes?: UserAttributes

    The set of attributes that are required for every user in the user pool. Read more on attributes here - https://docs.aws.amazon.com/cognito/latest/developerguide/user-pool-settings-attributes.html

    Default

    - email/phone will be added as required user attributes if they are included as login methods
     
    -
  • \ No newline at end of file +
    \ No newline at end of file diff --git a/types/_aws_amplify_auth_construct.CustomAttribute.html b/types/_aws_amplify_auth_construct.CustomAttribute.html index b97a19cadc..e5006b1cb6 100644 --- a/types/_aws_amplify_auth_construct.CustomAttribute.html +++ b/types/_aws_amplify_auth_construct.CustomAttribute.html @@ -1,2 +1,2 @@ CustomAttribute | Amplify Toolbox

    CustomAttributes is a union type that represents all the different types of custom attributes.

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/types/_aws_amplify_auth_construct.CustomAttributeBase.html b/types/_aws_amplify_auth_construct.CustomAttributeBase.html index 397533765b..15ef79f33c 100644 --- a/types/_aws_amplify_auth_construct.CustomAttributeBase.html +++ b/types/_aws_amplify_auth_construct.CustomAttributeBase.html @@ -1,4 +1,4 @@ CustomAttributeBase | Amplify Toolbox
    CustomAttributeBase: {
        mutable?: boolean;
    }

    CustomAttributeBase is a type that represents the base properties for a custom attribute

    Type declaration

    • Optional mutable?: boolean

      Default

      {true}
       
      -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/types/_aws_amplify_auth_construct.CustomAttributeBoolean.html b/types/_aws_amplify_auth_construct.CustomAttributeBoolean.html index 6433fc9065..54fd18aa04 100644 --- a/types/_aws_amplify_auth_construct.CustomAttributeBoolean.html +++ b/types/_aws_amplify_auth_construct.CustomAttributeBoolean.html @@ -1,2 +1,2 @@ CustomAttributeBoolean | Amplify Toolbox
    CustomAttributeBoolean: CustomAttributeBase & {
        dataType: "Boolean";
    }

    CustomAttributeBoolean represents a custom attribute of type boolean.

    -

    Type declaration

    • dataType: "Boolean"
    \ No newline at end of file +

    Type declaration

    • dataType: "Boolean"
    \ No newline at end of file diff --git a/types/_aws_amplify_auth_construct.CustomAttributeDateTime.html b/types/_aws_amplify_auth_construct.CustomAttributeDateTime.html index 38f22d63eb..1968c5a21d 100644 --- a/types/_aws_amplify_auth_construct.CustomAttributeDateTime.html +++ b/types/_aws_amplify_auth_construct.CustomAttributeDateTime.html @@ -1,2 +1,2 @@ CustomAttributeDateTime | Amplify Toolbox
    CustomAttributeDateTime: CustomAttributeBase & {
        dataType: "DateTime";
    }

    CustomAttributeDateTime represents a custom attribute of type dataTime.

    -

    Type declaration

    • dataType: "DateTime"
    \ No newline at end of file +

    Type declaration

    • dataType: "DateTime"
    \ No newline at end of file diff --git a/types/_aws_amplify_auth_construct.CustomAttributeNumber.html b/types/_aws_amplify_auth_construct.CustomAttributeNumber.html index 651b1078d3..a48e18a236 100644 --- a/types/_aws_amplify_auth_construct.CustomAttributeNumber.html +++ b/types/_aws_amplify_auth_construct.CustomAttributeNumber.html @@ -1,2 +1,2 @@ CustomAttributeNumber | Amplify Toolbox
    CustomAttributeNumber: CustomAttributeBase & NumberAttributeConstraints & {
        dataType: "Number";
    }

    CustomAttributeNumber represents a custom attribute of type number.

    -

    Type declaration

    • dataType: "Number"
    \ No newline at end of file +

    Type declaration

    • dataType: "Number"
    \ No newline at end of file diff --git a/types/_aws_amplify_auth_construct.CustomAttributeString.html b/types/_aws_amplify_auth_construct.CustomAttributeString.html index 06bdf36178..5df2f72a48 100644 --- a/types/_aws_amplify_auth_construct.CustomAttributeString.html +++ b/types/_aws_amplify_auth_construct.CustomAttributeString.html @@ -1,2 +1,2 @@ CustomAttributeString | Amplify Toolbox
    CustomAttributeString: CustomAttributeBase & StringAttributeConstraints & {
        dataType: "String";
    }

    CustomAttributeString represents a custom attribute of type string.

    -

    Type declaration

    • dataType: "String"
    \ No newline at end of file +

    Type declaration

    • dataType: "String"
    \ No newline at end of file diff --git a/types/_aws_amplify_auth_construct.CustomEmailSender.html b/types/_aws_amplify_auth_construct.CustomEmailSender.html index 485c44f028..2d66bf562b 100644 --- a/types/_aws_amplify_auth_construct.CustomEmailSender.html +++ b/types/_aws_amplify_auth_construct.CustomEmailSender.html @@ -1,2 +1,2 @@ CustomEmailSender | Amplify Toolbox
    CustomEmailSender: {
        handler: IFunction;
        kmsKeyArn?: string;
    }

    CustomEmailSender type for configuring a custom Lambda function for email sending

    -

    Type declaration

    • handler: IFunction
    • Optional kmsKeyArn?: string
    \ No newline at end of file +

    Type declaration

    • handler: IFunction
    • Optional kmsKeyArn?: string
    \ No newline at end of file diff --git a/types/_aws_amplify_auth_construct.EmailLogin.html b/types/_aws_amplify_auth_construct.EmailLogin.html index ef6b65ec65..05b7096d9d 100644 --- a/types/_aws_amplify_auth_construct.EmailLogin.html +++ b/types/_aws_amplify_auth_construct.EmailLogin.html @@ -1,4 +1,4 @@ EmailLogin | Amplify Toolbox
    EmailLogin: true | EmailLoginSettings

    Email login options.

    If true, email login will be enabled with default settings. If settings are provided, email login will be enabled with the specified settings.

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/types/_aws_amplify_auth_construct.EmailLoginSettings.html b/types/_aws_amplify_auth_construct.EmailLoginSettings.html index 429a9f6b34..373fe7e40b 100644 --- a/types/_aws_amplify_auth_construct.EmailLoginSettings.html +++ b/types/_aws_amplify_auth_construct.EmailLoginSettings.html @@ -9,4 +9,4 @@
  • Optional smsMessage?: ((username, code) => string)

    The template to the SMS message that is sent to the user when an administrator signs them up to the user pool.

    Default

    (username, code) => 'Your username is {username()} and temporary password is {code()}.'
     
    -
      • (username, code): string
      • Parameters

        • username: (() => string)
            • (): string
            • Returns string

        • code: (() => string)
            • (): string
            • Returns string

        Returns string

  • \ No newline at end of file +
    \ No newline at end of file diff --git a/types/_aws_amplify_auth_construct.ExternalProviderOptions.html b/types/_aws_amplify_auth_construct.ExternalProviderOptions.html index 4bcee33433..b722877f9d 100644 --- a/types/_aws_amplify_auth_construct.ExternalProviderOptions.html +++ b/types/_aws_amplify_auth_construct.ExternalProviderOptions.html @@ -14,4 +14,4 @@

    Example

    ['PROFILE']

    For details about each scope, see below.

    'PHONE' - Grants access to the 'phone_number' and 'phone_number_verified' claims.
    Automatically includes access to `OAuthScope.OPENID`.

    'EMAIL' - Grants access to the 'email' and 'email_verified' claims.
    Automatically includes access to `OAuthScope.OPENID`.

    'OPENID' - Returns all user attributes in the ID token that are readable by the client

    'PROFILE' - Grants access to all user attributes that are readable by the client
    Automatically includes access to `OAuthScope.OPENID`.

    'COGNITO_ADMIN' - Grants access to Amazon Cognito User Pool API operations that require access tokens,
    such as UpdateUserAttributes and VerifyUserAttribute.
  • Optional signInWithApple?: AppleProviderProps

    SignInWithApple Settings

    -
  • \ No newline at end of file +
    \ No newline at end of file diff --git a/types/_aws_amplify_auth_construct.FacebookProviderProps.html b/types/_aws_amplify_auth_construct.FacebookProviderProps.html index 9954c3d199..5b021db85a 100644 --- a/types/_aws_amplify_auth_construct.FacebookProviderProps.html +++ b/types/_aws_amplify_auth_construct.FacebookProviderProps.html @@ -1,2 +1,2 @@ FacebookProviderProps | Amplify Toolbox
    FacebookProviderProps: Omit<cognito.UserPoolIdentityProviderFacebookProps, "userPool" | "attributeMapping"> & IdentityProviderProps

    Facebook provider.

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/types/_aws_amplify_auth_construct.GoogleProviderProps.html b/types/_aws_amplify_auth_construct.GoogleProviderProps.html index 13d893cb03..2944760401 100644 --- a/types/_aws_amplify_auth_construct.GoogleProviderProps.html +++ b/types/_aws_amplify_auth_construct.GoogleProviderProps.html @@ -3,4 +3,4 @@
    \ No newline at end of file +
    \ No newline at end of file diff --git a/types/_aws_amplify_auth_construct.IdentityProviderProps.html b/types/_aws_amplify_auth_construct.IdentityProviderProps.html index f5d176240e..11fd61254a 100644 --- a/types/_aws_amplify_auth_construct.IdentityProviderProps.html +++ b/types/_aws_amplify_auth_construct.IdentityProviderProps.html @@ -2,4 +2,4 @@

    Type declaration

    • Optional attributeMapping?: AttributeMapping

      Mapping attributes from the identity provider to standard and custom attributes of the user pool.

      Default

      - no attribute mapping
       
      -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/types/_aws_amplify_auth_construct.MFA.html b/types/_aws_amplify_auth_construct.MFA.html index 95015ce47b..4e6fb98fbc 100644 --- a/types/_aws_amplify_auth_construct.MFA.html +++ b/types/_aws_amplify_auth_construct.MFA.html @@ -2,4 +2,4 @@

    Type declaration

    • mode: "OFF"

      Configure whether users can or are required to use multifactor (MFA) to sign in.

      Default

      - 'OFF'
       
      -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/types/_aws_amplify_auth_construct.MFASettings.html b/types/_aws_amplify_auth_construct.MFASettings.html index 73bb7e6532..4184500f73 100644 --- a/types/_aws_amplify_auth_construct.MFASettings.html +++ b/types/_aws_amplify_auth_construct.MFASettings.html @@ -1,2 +1,2 @@ MFASettings | Amplify Toolbox
    MFASettings: {
        sms: MFASmsSettings;
        totp?: MFATotpSettings;
    } | {
        sms?: MFASmsSettings;
        totp: MFATotpSettings;
    }

    Configure the MFA types that users can use. At least one of totp or sms is required.

    -

    Type declaration

    Type declaration

    \ No newline at end of file +

    Type declaration

    Type declaration

    \ No newline at end of file diff --git a/types/_aws_amplify_auth_construct.MFASmsSettings.html b/types/_aws_amplify_auth_construct.MFASmsSettings.html index f5307e7c15..83294c5cc7 100644 --- a/types/_aws_amplify_auth_construct.MFASmsSettings.html +++ b/types/_aws_amplify_auth_construct.MFASmsSettings.html @@ -5,4 +5,4 @@
    \ No newline at end of file +
    \ No newline at end of file diff --git a/types/_aws_amplify_auth_construct.MFATotpSettings.html b/types/_aws_amplify_auth_construct.MFATotpSettings.html index d59583e9c3..c6e99e66f7 100644 --- a/types/_aws_amplify_auth_construct.MFATotpSettings.html +++ b/types/_aws_amplify_auth_construct.MFATotpSettings.html @@ -2,4 +2,4 @@
    \ No newline at end of file +
    \ No newline at end of file diff --git a/types/_aws_amplify_auth_construct.OidcProviderProps.html b/types/_aws_amplify_auth_construct.OidcProviderProps.html index c1e78eaf3f..eff68c58d5 100644 --- a/types/_aws_amplify_auth_construct.OidcProviderProps.html +++ b/types/_aws_amplify_auth_construct.OidcProviderProps.html @@ -2,4 +2,4 @@

    Type declaration

    • Optional Readonly attributeRequestMethod?: "GET" | "POST"

      The method to use to request attributes

      Default

      'GET'

      For details about each option, see below.

      'GET' - use GET
      'POST' - use POST
      -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/types/_aws_amplify_auth_construct.PhoneNumberLogin.html b/types/_aws_amplify_auth_construct.PhoneNumberLogin.html index a366418581..d1f7a3a4b7 100644 --- a/types/_aws_amplify_auth_construct.PhoneNumberLogin.html +++ b/types/_aws_amplify_auth_construct.PhoneNumberLogin.html @@ -5,4 +5,4 @@

    Default

    // If VerificationEmailStyle.LINK is chosen, verificationMessage will not be configured by default.

    // If VerificationEmailStyle.CODE is chosen, the default function will be as follows: (code) => The verification code to your new account is ${createCode()}

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/types/_aws_amplify_auth_construct.SamlProviderProps.html b/types/_aws_amplify_auth_construct.SamlProviderProps.html index 679eec7d55..780979fe38 100644 --- a/types/_aws_amplify_auth_construct.SamlProviderProps.html +++ b/types/_aws_amplify_auth_construct.SamlProviderProps.html @@ -1,3 +1,3 @@ SamlProviderProps | Amplify Toolbox
    SamlProviderProps: Omit<cognito.UserPoolIdentityProviderSamlProps, "userPool" | "metadata" | "attributeMapping"> & {
        metadata: Omit<UserPoolIdentityProviderSamlMetadata, "metadataType"> & {
            metadataType: "URL" | "FILE";
        };
    } & IdentityProviderProps

    SAML provider.

    Type declaration

    • metadata: Omit<UserPoolIdentityProviderSamlMetadata, "metadataType"> & {
          metadataType: "URL" | "FILE";
      }

      The SAML metadata.

      -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/types/_aws_amplify_auth_construct.TriggerEvent.html b/types/_aws_amplify_auth_construct.TriggerEvent.html index 925399665b..aa0c22b4b9 100644 --- a/types/_aws_amplify_auth_construct.TriggerEvent.html +++ b/types/_aws_amplify_auth_construct.TriggerEvent.html @@ -1,2 +1,2 @@ TriggerEvent | Amplify Toolbox
    TriggerEvent: typeof triggerEvents[number]

    Union type of all supported auth trigger events

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/types/_aws_amplify_auth_construct.UserAttributes.html b/types/_aws_amplify_auth_construct.UserAttributes.html index 5e0e190071..608f25e8df 100644 --- a/types/_aws_amplify_auth_construct.UserAttributes.html +++ b/types/_aws_amplify_auth_construct.UserAttributes.html @@ -1,3 +1,3 @@ UserAttributes | Amplify Toolbox
    UserAttributes: StandardAttributes & Record<`custom:${string}`, CustomAttribute>

    UserAttributes represents the combined attributes of a user, including standard attributes and any number of custom attributes defined with a 'custom:' prefix.

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/types/_aws_amplify_auth_construct.VerificationEmailWithCode.html b/types/_aws_amplify_auth_construct.VerificationEmailWithCode.html index 849a099727..77051ec348 100644 --- a/types/_aws_amplify_auth_construct.VerificationEmailWithCode.html +++ b/types/_aws_amplify_auth_construct.VerificationEmailWithCode.html @@ -4,4 +4,4 @@
  • Optional verificationEmailStyle?: "CODE"

    The type of verification. Must be one of "CODE" or "LINK".

  • Optional verificationEmailSubject?: string

    The verification email subject.

    -
  • \ No newline at end of file +
    \ No newline at end of file diff --git a/types/_aws_amplify_auth_construct.VerificationEmailWithLink.html b/types/_aws_amplify_auth_construct.VerificationEmailWithLink.html index 2b9b9d1d5f..7c08d34d2d 100644 --- a/types/_aws_amplify_auth_construct.VerificationEmailWithLink.html +++ b/types/_aws_amplify_auth_construct.VerificationEmailWithLink.html @@ -7,4 +7,4 @@

    Example

    To
  • Optional verificationEmailStyle?: "LINK"

    The type of verification. Must be one of "CODE" or "LINK".

  • Optional verificationEmailSubject?: string

    The verification email subject.

    -
  • \ No newline at end of file +
    \ No newline at end of file diff --git a/types/_aws_amplify_backend.Backend.html b/types/_aws_amplify_backend.Backend.html index c474503722..196cf9d853 100644 --- a/types/_aws_amplify_backend.Backend.html +++ b/types/_aws_amplify_backend.Backend.html @@ -1,4 +1,4 @@ Backend | Amplify Toolbox
    Backend<T>: BackendBase & {
        [K in keyof T]: Omit<ReturnType<T[K]["getInstance"]>, keyof ResourceAccessAcceptorFactory>
    }

    Use defineBackend to create an instance of this type. This object has the Amplify BackendBase methods on it for interacting with the backend. It also has dynamic properties based on the resources passed into defineBackend

    -

    Type Parameters

    \ No newline at end of file +

    Type Parameters

    \ No newline at end of file diff --git a/types/_aws_amplify_backend.BackendBase.html b/types/_aws_amplify_backend.BackendBase.html index 9027842bda..69d9f52b5f 100644 --- a/types/_aws_amplify_backend.BackendBase.html +++ b/types/_aws_amplify_backend.BackendBase.html @@ -1 +1 @@ -BackendBase | Amplify Toolbox
    BackendBase: {
        addOutput: ((clientConfigPart) => void);
        createStack: ((name) => Stack);
        stack: Stack;
    }

    Type declaration

    • addOutput: ((clientConfigPart) => void)
    • createStack: ((name) => Stack)
        • (name): Stack
        • Parameters

          • name: string

          Returns Stack

    • stack: Stack
    \ No newline at end of file +BackendBase | Amplify Toolbox
    BackendBase: {
        addOutput: ((clientConfigPart) => void);
        createStack: ((name) => Stack);
        stack: Stack;
    }

    Type declaration

    • addOutput: ((clientConfigPart) => void)
    • createStack: ((name) => Stack)
        • (name): Stack
        • Parameters

          • name: string

          Returns Stack

    • stack: Stack
    \ No newline at end of file diff --git a/types/_aws_amplify_backend.DefineBackendProps.html b/types/_aws_amplify_backend.DefineBackendProps.html index 53de650c1e..9c436ffad3 100644 --- a/types/_aws_amplify_backend.DefineBackendProps.html +++ b/types/_aws_amplify_backend.DefineBackendProps.html @@ -1 +1 @@ -DefineBackendProps | Amplify Toolbox
    DefineBackendProps: Record<string, ConstructFactory<ResourceProvider & Partial<ResourceAccessAcceptorFactory<never>>>> & {
        [K in keyof BackendBase]?: never
    }
    \ No newline at end of file +DefineBackendProps | Amplify Toolbox
    DefineBackendProps: Record<string, ConstructFactory<ResourceProvider & Partial<ResourceAccessAcceptorFactory<never>>>> & {
        [K in keyof BackendBase]?: never
    }
    \ No newline at end of file diff --git a/types/_aws_amplify_backend_auth.ActionIam.html b/types/_aws_amplify_backend_auth.ActionIam.html index add797eb96..fd9f526d76 100644 --- a/types/_aws_amplify_backend_auth.ActionIam.html +++ b/types/_aws_amplify_backend_auth.ActionIam.html @@ -1,4 +1,4 @@ ActionIam | Amplify Toolbox
    ActionIam: "addUserToGroup" | "createGroup" | "createUser" | "deleteGroup" | "deleteUser" | "deleteUserAttributes" | "disableUser" | "enableUser" | "forgetDevice" | "getDevice" | "getGroup" | "getUser" | "listUsers" | "listUsersInGroup" | "listGroups" | "listDevices" | "listGroupsForUser" | "removeUserFromGroup" | "resetUserPassword" | "setUserMfaPreference" | "setUserPassword" | "setUserSettings" | "updateDeviceStatus" | "updateGroup" | "updateUserAttributes"

    This maps to Cognito IAM actions.

    \ No newline at end of file +
    \ No newline at end of file diff --git a/types/_aws_amplify_backend_auth.ActionMeta.html b/types/_aws_amplify_backend_auth.ActionMeta.html index a957a8170a..a51e1760a2 100644 --- a/types/_aws_amplify_backend_auth.ActionMeta.html +++ b/types/_aws_amplify_backend_auth.ActionMeta.html @@ -1,2 +1,2 @@ ActionMeta | Amplify Toolbox
    ActionMeta: "manageUsers" | "manageGroups" | "manageGroupMembership" | "manageUserDevices" | "managePasswordRecovery"
    \ No newline at end of file +
    \ No newline at end of file diff --git a/types/_aws_amplify_backend_auth.AmazonProviderFactoryProps.html b/types/_aws_amplify_backend_auth.AmazonProviderFactoryProps.html index eb028a1947..6b6152e8ed 100644 --- a/types/_aws_amplify_backend_auth.AmazonProviderFactoryProps.html +++ b/types/_aws_amplify_backend_auth.AmazonProviderFactoryProps.html @@ -3,4 +3,4 @@

    See

    https://developer.amazon.com/docs/login-with-amazon/security-profile.html#client-identifier

  • clientSecret: BackendSecret

    The client secret to be accompanied with clientId for 'Login with Amazon' APIs to authenticate the client.

  • \ No newline at end of file +
    \ No newline at end of file diff --git a/types/_aws_amplify_backend_auth.AmplifyAuthProps.html b/types/_aws_amplify_backend_auth.AmplifyAuthProps.html index 2f27053380..5d60866afc 100644 --- a/types/_aws_amplify_backend_auth.AmplifyAuthProps.html +++ b/types/_aws_amplify_backend_auth.AmplifyAuthProps.html @@ -1 +1 @@ -AmplifyAuthProps | Amplify Toolbox
    AmplifyAuthProps: Expand<Omit<AuthProps, "outputStorageStrategy" | "loginWith" | "senders"> & {
        access?: AuthAccessGenerator;
        loginWith: Expand<AuthLoginWithFactoryProps>;
        senders?: {
            email: Pick<UserPoolSESOptions, "fromEmail" | "fromName" | "replyTo"> | CustomEmailSender;
        };
        triggers?: Partial<Record<TriggerEvent, ConstructFactory<ResourceProvider<FunctionResources>>>>;
    }>
    \ No newline at end of file +AmplifyAuthProps | Amplify Toolbox
    AmplifyAuthProps: Expand<Omit<AuthProps, "outputStorageStrategy" | "loginWith" | "senders"> & {
        access?: AuthAccessGenerator;
        loginWith: Expand<AuthLoginWithFactoryProps>;
        senders?: {
            email: Pick<UserPoolSESOptions, "fromEmail" | "fromName" | "replyTo"> | CustomEmailSender;
        };
        triggers?: Partial<Record<TriggerEvent, ConstructFactory<ResourceProvider<FunctionResources>>>>;
    }>
    \ No newline at end of file diff --git a/types/_aws_amplify_backend_auth.AppleProviderFactoryProps.html b/types/_aws_amplify_backend_auth.AppleProviderFactoryProps.html index f477ff1ba6..97cec44c3f 100644 --- a/types/_aws_amplify_backend_auth.AppleProviderFactoryProps.html +++ b/types/_aws_amplify_backend_auth.AppleProviderFactoryProps.html @@ -4,4 +4,4 @@
  • keyId: BackendSecret

    The keyId (of the same key, which content has to be later supplied as privateKey) for Apple APIs to authenticate the client.

  • privateKey: BackendSecret

    The privateKey content for Apple APIs to authenticate the client.

  • teamId: BackendSecret

    The teamId for Apple APIs to authenticate the client.

    -
  • \ No newline at end of file +
    \ No newline at end of file diff --git a/types/_aws_amplify_backend_auth.AuthAccessBuilder.html b/types/_aws_amplify_backend_auth.AuthAccessBuilder.html index 2a7fe18dcc..66a5e6ae0c 100644 --- a/types/_aws_amplify_backend_auth.AuthAccessBuilder.html +++ b/types/_aws_amplify_backend_auth.AuthAccessBuilder.html @@ -1 +1 @@ -AuthAccessBuilder | Amplify Toolbox
    AuthAccessBuilder: {
        resource: ((other) => AuthActionBuilder);
    }

    Type declaration

    \ No newline at end of file +AuthAccessBuilder | Amplify Toolbox
    AuthAccessBuilder: {
        resource: ((other) => AuthActionBuilder);
    }

    Type declaration

    \ No newline at end of file diff --git a/types/_aws_amplify_backend_auth.AuthAccessDefinition.html b/types/_aws_amplify_backend_auth.AuthAccessDefinition.html index 3a0ba14334..4cdbf4499b 100644 --- a/types/_aws_amplify_backend_auth.AuthAccessDefinition.html +++ b/types/_aws_amplify_backend_auth.AuthAccessDefinition.html @@ -1 +1 @@ -AuthAccessDefinition | Amplify Toolbox
    AuthAccessDefinition: {
        actions: AuthAction[];
        getResourceAccessAcceptor: ((getInstanceProps) => ResourceAccessAcceptor);
    }

    Type declaration

    \ No newline at end of file +AuthAccessDefinition | Amplify Toolbox
    AuthAccessDefinition: {
        actions: AuthAction[];
        getResourceAccessAcceptor: ((getInstanceProps) => ResourceAccessAcceptor);
    }

    Type declaration

    \ No newline at end of file diff --git a/types/_aws_amplify_backend_auth.AuthAccessGenerator.html b/types/_aws_amplify_backend_auth.AuthAccessGenerator.html index f89e4cc3d8..80b852e398 100644 --- a/types/_aws_amplify_backend_auth.AuthAccessGenerator.html +++ b/types/_aws_amplify_backend_auth.AuthAccessGenerator.html @@ -1 +1 @@ -AuthAccessGenerator | Amplify Toolbox
    AuthAccessGenerator: ((allow) => AuthAccessDefinition[])

    Type declaration

    \ No newline at end of file +AuthAccessGenerator | Amplify Toolbox
    AuthAccessGenerator: ((allow) => AuthAccessDefinition[])

    Type declaration

    \ No newline at end of file diff --git a/types/_aws_amplify_backend_auth.AuthAction.html b/types/_aws_amplify_backend_auth.AuthAction.html index b2cff761d4..83fe791be0 100644 --- a/types/_aws_amplify_backend_auth.AuthAction.html +++ b/types/_aws_amplify_backend_auth.AuthAction.html @@ -1 +1 @@ -AuthAction | Amplify Toolbox
    \ No newline at end of file +AuthAction | Amplify Toolbox
    \ No newline at end of file diff --git a/types/_aws_amplify_backend_auth.AuthActionBuilder.html b/types/_aws_amplify_backend_auth.AuthActionBuilder.html index 902ff17151..b71f1ed720 100644 --- a/types/_aws_amplify_backend_auth.AuthActionBuilder.html +++ b/types/_aws_amplify_backend_auth.AuthActionBuilder.html @@ -1 +1 @@ -AuthActionBuilder | Amplify Toolbox
    AuthActionBuilder: {
        to: ((actions) => AuthAccessDefinition);
    }

    Type declaration

    \ No newline at end of file +AuthActionBuilder | Amplify Toolbox
    AuthActionBuilder: {
        to: ((actions) => AuthAccessDefinition);
    }

    Type declaration

    \ No newline at end of file diff --git a/types/_aws_amplify_backend_auth.AuthLoginWithFactoryProps.html b/types/_aws_amplify_backend_auth.AuthLoginWithFactoryProps.html index b27ae4525e..04d66edc8c 100644 --- a/types/_aws_amplify_backend_auth.AuthLoginWithFactoryProps.html +++ b/types/_aws_amplify_backend_auth.AuthLoginWithFactoryProps.html @@ -1,3 +1,3 @@ AuthLoginWithFactoryProps | Amplify Toolbox
    AuthLoginWithFactoryProps: Omit<AuthProps["loginWith"], "externalProviders"> & {
        externalProviders?: ExternalProviderSpecificFactoryProps;
    }

    Auth factory loginWith attribute.

    Type declaration

    \ No newline at end of file +
    \ No newline at end of file diff --git a/types/_aws_amplify_backend_auth.BackendAuth.html b/types/_aws_amplify_backend_auth.BackendAuth.html index c1ebb495ef..db851ae93d 100644 --- a/types/_aws_amplify_backend_auth.BackendAuth.html +++ b/types/_aws_amplify_backend_auth.BackendAuth.html @@ -1 +1 @@ -BackendAuth | Amplify Toolbox
    \ No newline at end of file +BackendAuth | Amplify Toolbox
    \ No newline at end of file diff --git a/types/_aws_amplify_backend_auth.CustomEmailSender.html b/types/_aws_amplify_backend_auth.CustomEmailSender.html index f76f641e06..7dc72632a8 100644 --- a/types/_aws_amplify_backend_auth.CustomEmailSender.html +++ b/types/_aws_amplify_backend_auth.CustomEmailSender.html @@ -1,2 +1,2 @@ CustomEmailSender | Amplify Toolbox
    CustomEmailSender: {
        handler: ConstructFactory<AmplifyFunction> | IFunction;
        kmsKeyArn?: string;
    }

    CustomEmailSender type for configuring a custom Lambda function for email sending

    -

    Type declaration

    \ No newline at end of file +

    Type declaration

    \ No newline at end of file diff --git a/types/_aws_amplify_backend_auth.Expand.html b/types/_aws_amplify_backend_auth.Expand.html index 1bf27ab6f4..f5dfa2ef6e 100644 --- a/types/_aws_amplify_backend_auth.Expand.html +++ b/types/_aws_amplify_backend_auth.Expand.html @@ -1,4 +1,4 @@ Expand | Amplify Toolbox
    Expand<T>: T extends infer O
        ? {
            [K in keyof O]: O[K]
        }
        : never

    This utility allows us to expand nested types in auto complete prompts.

    Type Parameters

    • T

    Example

    type OtherType = {
    property1: string;
    property2: number;
    }
    type SomeType = {
    property2: Expand<OtherType>;
    }
    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/types/_aws_amplify_backend_auth.ExternalProviderGeneralFactoryProps.html b/types/_aws_amplify_backend_auth.ExternalProviderGeneralFactoryProps.html index 4a5d426d25..91b8be52d3 100644 --- a/types/_aws_amplify_backend_auth.ExternalProviderGeneralFactoryProps.html +++ b/types/_aws_amplify_backend_auth.ExternalProviderGeneralFactoryProps.html @@ -1,2 +1,2 @@ ExternalProviderGeneralFactoryProps | Amplify Toolbox
    ExternalProviderGeneralFactoryProps: Omit<ExternalProviderOptions, "signInWithApple" | "loginWithAmazon" | "facebook" | "oidc" | "google" | "domainPrefix">

    External provider general properties.

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/types/_aws_amplify_backend_auth.ExternalProviderSpecificFactoryProps.html b/types/_aws_amplify_backend_auth.ExternalProviderSpecificFactoryProps.html index 1f1148d007..d90befcdb8 100644 --- a/types/_aws_amplify_backend_auth.ExternalProviderSpecificFactoryProps.html +++ b/types/_aws_amplify_backend_auth.ExternalProviderSpecificFactoryProps.html @@ -4,4 +4,4 @@
  • Optional loginWithAmazon?: AmazonProviderFactoryProps

    LoginWithAmazon Settings

  • Optional oidc?: OidcProviderFactoryProps[]

    OIDC Settings

  • Optional signInWithApple?: AppleProviderFactoryProps

    SignInWithApple Settings

    -
  • \ No newline at end of file +
    \ No newline at end of file diff --git a/types/_aws_amplify_backend_auth.FacebookProviderFactoryProps.html b/types/_aws_amplify_backend_auth.FacebookProviderFactoryProps.html index 3b415f0263..a4c91135cd 100644 --- a/types/_aws_amplify_backend_auth.FacebookProviderFactoryProps.html +++ b/types/_aws_amplify_backend_auth.FacebookProviderFactoryProps.html @@ -2,4 +2,4 @@

    Type declaration

    \ No newline at end of file +
    \ No newline at end of file diff --git a/types/_aws_amplify_backend_auth.GoogleProviderFactoryProps.html b/types/_aws_amplify_backend_auth.GoogleProviderFactoryProps.html index 418bae7aa8..a3cbba79b4 100644 --- a/types/_aws_amplify_backend_auth.GoogleProviderFactoryProps.html +++ b/types/_aws_amplify_backend_auth.GoogleProviderFactoryProps.html @@ -5,4 +5,4 @@

    See

    https://developers.google.com/identity/sign-in/web/sign-in

    Default

    none
     
    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/types/_aws_amplify_backend_auth.OidcProviderFactoryProps.html b/types/_aws_amplify_backend_auth.OidcProviderFactoryProps.html index 5708573b3e..8831014049 100644 --- a/types/_aws_amplify_backend_auth.OidcProviderFactoryProps.html +++ b/types/_aws_amplify_backend_auth.OidcProviderFactoryProps.html @@ -1,4 +1,4 @@ OidcProviderFactoryProps | Amplify Toolbox
    OidcProviderFactoryProps: Omit<OidcProviderProps, "clientId" | "clientSecret"> & {
        clientId: BackendSecret;
        clientSecret: BackendSecret;
    }

    Oidc provider properties.

    Type declaration

    \ No newline at end of file +
    \ No newline at end of file diff --git a/types/_aws_amplify_backend_data.ApiKeyAuthorizationModeProps.html b/types/_aws_amplify_backend_data.ApiKeyAuthorizationModeProps.html index 18a75f9655..4ae17f1827 100644 --- a/types/_aws_amplify_backend_data.ApiKeyAuthorizationModeProps.html +++ b/types/_aws_amplify_backend_data.ApiKeyAuthorizationModeProps.html @@ -3,4 +3,4 @@
  • Optional expiresInDays?: number

    A duration representing the time from Cloudformation deploy until expiry.

    Default

    7
     
    -
  • \ No newline at end of file +
    \ No newline at end of file diff --git a/types/_aws_amplify_backend_data.AuthorizationModes.html b/types/_aws_amplify_backend_data.AuthorizationModes.html index c9b9ff0b98..69a7c3e8a9 100644 --- a/types/_aws_amplify_backend_data.AuthorizationModes.html +++ b/types/_aws_amplify_backend_data.AuthorizationModes.html @@ -3,4 +3,4 @@
  • Optional defaultAuthorizationMode?: DefaultAuthorizationMode

    Default auth mode to use in the API, only required if more than one auth mode is specified.

  • Optional lambdaAuthorizationMode?: LambdaAuthorizationModeProps

    Lambda authorization config if function provider is specified in the api definition.

  • Optional oidcAuthorizationMode?: OIDCAuthorizationModeProps

    OIDC authorization config if oidc provider is specified in the api definition.

    -
  • \ No newline at end of file +
    \ No newline at end of file diff --git a/types/_aws_amplify_backend_data.DataProps.html b/types/_aws_amplify_backend_data.DataProps.html index 44a58ffe86..5966b1c53e 100644 --- a/types/_aws_amplify_backend_data.DataProps.html +++ b/types/_aws_amplify_backend_data.DataProps.html @@ -3,4 +3,4 @@
  • Optional functions?: Record<string, ConstructFactory<AmplifyFunction>>

    Functions invokable by the API. The specific input type of the function is subject to change or removal.

  • Optional name?: string

    Optional name for the generated Api.

  • schema: DataSchemaInput

    Graphql Schema as a string to be passed into the CDK construct.

    -
  • \ No newline at end of file +
    \ No newline at end of file diff --git a/types/_aws_amplify_backend_data.DataSchemaInput.html b/types/_aws_amplify_backend_data.DataSchemaInput.html index f18fed47a7..79f50c8a36 100644 --- a/types/_aws_amplify_backend_data.DataSchemaInput.html +++ b/types/_aws_amplify_backend_data.DataSchemaInput.html @@ -1,2 +1,2 @@ DataSchemaInput | Amplify Toolbox
    DataSchemaInput: string | DerivedModelSchema | DerivedCombinedSchema

    Schemas type definition, can be either a raw Graphql string, or a typed model schema, or a collection of combined Schemas.

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/types/_aws_amplify_backend_data.DefaultAuthorizationMode.html b/types/_aws_amplify_backend_data.DefaultAuthorizationMode.html index 51c733661c..d2d1800b2d 100644 --- a/types/_aws_amplify_backend_data.DefaultAuthorizationMode.html +++ b/types/_aws_amplify_backend_data.DefaultAuthorizationMode.html @@ -1,2 +1,2 @@ DefaultAuthorizationMode | Amplify Toolbox
    DefaultAuthorizationMode: "iam" | "identityPool" | "userPool" | "oidc" | "apiKey" | "lambda"

    Authorization modes used in by client side Amplify represented in camelCase.

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/types/_aws_amplify_backend_data.LambdaAuthorizationModeProps.html b/types/_aws_amplify_backend_data.LambdaAuthorizationModeProps.html index e5a45ad28d..c0da09ed04 100644 --- a/types/_aws_amplify_backend_data.LambdaAuthorizationModeProps.html +++ b/types/_aws_amplify_backend_data.LambdaAuthorizationModeProps.html @@ -3,4 +3,4 @@
  • Optional timeToLiveInSeconds?: number

    How long the results are cached.

    Default

    60
     
    -
  • \ No newline at end of file +
    \ No newline at end of file diff --git a/types/_aws_amplify_backend_data.OIDCAuthorizationModeProps.html b/types/_aws_amplify_backend_data.OIDCAuthorizationModeProps.html index de8544c188..b14eaa43fb 100644 --- a/types/_aws_amplify_backend_data.OIDCAuthorizationModeProps.html +++ b/types/_aws_amplify_backend_data.OIDCAuthorizationModeProps.html @@ -7,4 +7,4 @@ This validation uses iat claim of OIDC token.

  • tokenExpiryFromAuthInSeconds: number

    The duration an OIDC token is valid after being authenticated by OIDC provider in seconds. auth_time claim in OIDC token is required for this validation to work.

    -
  • \ No newline at end of file +
    \ No newline at end of file diff --git a/types/_aws_amplify_backend_deployer.BackendDeployer.html b/types/_aws_amplify_backend_deployer.BackendDeployer.html index 8286a95b1b..da21741e63 100644 --- a/types/_aws_amplify_backend_deployer.BackendDeployer.html +++ b/types/_aws_amplify_backend_deployer.BackendDeployer.html @@ -1,2 +1,2 @@ BackendDeployer | Amplify Toolbox
    BackendDeployer: {
        deploy: ((backendId, deployProps?) => Promise<DeployResult>);
        destroy: ((backendId, destroyProps?) => Promise<DestroyResult>);
    }

    Invokes an invokable command

    -

    Type declaration

    \ No newline at end of file +

    Type declaration

    \ No newline at end of file diff --git a/types/_aws_amplify_backend_deployer.BackendDeployerOutputFormatter.html b/types/_aws_amplify_backend_deployer.BackendDeployerOutputFormatter.html index 279d959fc5..ab5037c107 100644 --- a/types/_aws_amplify_backend_deployer.BackendDeployerOutputFormatter.html +++ b/types/_aws_amplify_backend_deployer.BackendDeployerOutputFormatter.html @@ -1 +1 @@ -BackendDeployerOutputFormatter | Amplify Toolbox
    BackendDeployerOutputFormatter: {
        normalizeAmpxCommand: ((command) => string);
    }

    Type declaration

    • normalizeAmpxCommand: ((command) => string)
        • (command): string
        • Parameters

          • command: string

          Returns string

    \ No newline at end of file +BackendDeployerOutputFormatter | Amplify Toolbox
    BackendDeployerOutputFormatter: {
        normalizeAmpxCommand: ((command) => string);
    }

    Type declaration

    • normalizeAmpxCommand: ((command) => string)
        • (command): string
        • Parameters

          • command: string

          Returns string

    \ No newline at end of file diff --git a/types/_aws_amplify_backend_deployer.DeployProps.html b/types/_aws_amplify_backend_deployer.DeployProps.html index e5a8927659..f4f0da1317 100644 --- a/types/_aws_amplify_backend_deployer.DeployProps.html +++ b/types/_aws_amplify_backend_deployer.DeployProps.html @@ -1 +1 @@ -DeployProps | Amplify Toolbox
    DeployProps: {
        profile?: string;
        secretLastUpdated?: Date;
        validateAppSources?: boolean;
    }

    Type declaration

    • Optional profile?: string
    • Optional secretLastUpdated?: Date
    • Optional validateAppSources?: boolean
    \ No newline at end of file +DeployProps | Amplify Toolbox
    DeployProps: {
        profile?: string;
        secretLastUpdated?: Date;
        validateAppSources?: boolean;
    }

    Type declaration

    • Optional profile?: string
    • Optional secretLastUpdated?: Date
    • Optional validateAppSources?: boolean
    \ No newline at end of file diff --git a/types/_aws_amplify_backend_deployer.DeployResult.html b/types/_aws_amplify_backend_deployer.DeployResult.html index f1ecb8e8c2..77eab2997f 100644 --- a/types/_aws_amplify_backend_deployer.DeployResult.html +++ b/types/_aws_amplify_backend_deployer.DeployResult.html @@ -1 +1 @@ -DeployResult | Amplify Toolbox
    DeployResult: {
        deploymentTimes: DeploymentTimes;
    }

    Type declaration

    \ No newline at end of file +DeployResult | Amplify Toolbox
    DeployResult: {
        deploymentTimes: DeploymentTimes;
    }

    Type declaration

    \ No newline at end of file diff --git a/types/_aws_amplify_backend_deployer.DeploymentTimes.html b/types/_aws_amplify_backend_deployer.DeploymentTimes.html index bd4638f5d3..43a54cb18c 100644 --- a/types/_aws_amplify_backend_deployer.DeploymentTimes.html +++ b/types/_aws_amplify_backend_deployer.DeploymentTimes.html @@ -1 +1 @@ -DeploymentTimes | Amplify Toolbox
    DeploymentTimes: {
        synthesisTime?: number;
        totalTime?: number;
    }

    Type declaration

    • Optional synthesisTime?: number
    • Optional totalTime?: number
    \ No newline at end of file +DeploymentTimes | Amplify Toolbox
    DeploymentTimes: {
        synthesisTime?: number;
        totalTime?: number;
    }

    Type declaration

    • Optional synthesisTime?: number
    • Optional totalTime?: number
    \ No newline at end of file diff --git a/types/_aws_amplify_backend_deployer.DestroyProps.html b/types/_aws_amplify_backend_deployer.DestroyProps.html index 0a8e6d380a..6df8f50da2 100644 --- a/types/_aws_amplify_backend_deployer.DestroyProps.html +++ b/types/_aws_amplify_backend_deployer.DestroyProps.html @@ -1 +1 @@ -DestroyProps | Amplify Toolbox
    DestroyProps: {
        profile?: string;
    }

    Type declaration

    • Optional profile?: string
    \ No newline at end of file +DestroyProps | Amplify Toolbox
    DestroyProps: {
        profile?: string;
    }

    Type declaration

    • Optional profile?: string
    \ No newline at end of file diff --git a/types/_aws_amplify_backend_deployer.DestroyResult.html b/types/_aws_amplify_backend_deployer.DestroyResult.html index 1a60520873..af252f22f2 100644 --- a/types/_aws_amplify_backend_deployer.DestroyResult.html +++ b/types/_aws_amplify_backend_deployer.DestroyResult.html @@ -1 +1 @@ -DestroyResult | Amplify Toolbox
    DestroyResult: {
        deploymentTimes: DeploymentTimes;
    }

    Type declaration

    \ No newline at end of file +DestroyResult | Amplify Toolbox
    DestroyResult: {
        deploymentTimes: DeploymentTimes;
    }

    Type declaration

    \ No newline at end of file diff --git a/types/_aws_amplify_backend_function.AddEnvironmentFactory.html b/types/_aws_amplify_backend_function.AddEnvironmentFactory.html index 782d51e8a1..22e0926054 100644 --- a/types/_aws_amplify_backend_function.AddEnvironmentFactory.html +++ b/types/_aws_amplify_backend_function.AddEnvironmentFactory.html @@ -1 +1 @@ -AddEnvironmentFactory | Amplify Toolbox
    AddEnvironmentFactory: {
        addEnvironment: ((key, value) => void);
    }

    Type declaration

    • addEnvironment: ((key, value) => void)
        • (key, value): void
        • Parameters

          Returns void

    \ No newline at end of file +AddEnvironmentFactory | Amplify Toolbox
    AddEnvironmentFactory: {
        addEnvironment: ((key, value) => void);
    }

    Type declaration

    • addEnvironment: ((key, value) => void)
        • (key, value): void
        • Parameters

          Returns void

    \ No newline at end of file diff --git a/types/_aws_amplify_backend_function.CronSchedule.html b/types/_aws_amplify_backend_function.CronSchedule.html index 623cc2f92f..0d694eb913 100644 --- a/types/_aws_amplify_backend_function.CronSchedule.html +++ b/types/_aws_amplify_backend_function.CronSchedule.html @@ -1 +1 @@ -CronSchedule | Amplify Toolbox
    CronSchedule: `${string} ${string} ${string} ${string} ${string}` | `${string} ${string} ${string} ${string} ${string} ${string}`
    \ No newline at end of file +CronSchedule | Amplify Toolbox
    CronSchedule: `${string} ${string} ${string} ${string} ${string}` | `${string} ${string} ${string} ${string} ${string} ${string}`
    \ No newline at end of file diff --git a/types/_aws_amplify_backend_function.FunctionBundlingOptions.html b/types/_aws_amplify_backend_function.FunctionBundlingOptions.html index 6616c09b22..3f0b12f175 100644 --- a/types/_aws_amplify_backend_function.FunctionBundlingOptions.html +++ b/types/_aws_amplify_backend_function.FunctionBundlingOptions.html @@ -1,3 +1,3 @@ FunctionBundlingOptions | Amplify Toolbox
    FunctionBundlingOptions: {
        minify?: boolean;
    }

    Type declaration

    • Optional minify?: boolean

      Whether to minify the function code.

      Defaults to true.

      -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/types/_aws_amplify_backend_function.FunctionProps.html b/types/_aws_amplify_backend_function.FunctionProps.html index b2019a99ae..c3fdc0dd1a 100644 --- a/types/_aws_amplify_backend_function.FunctionProps.html +++ b/types/_aws_amplify_backend_function.FunctionProps.html @@ -36,4 +36,4 @@

    Example

    schedule
  • Optional timeoutSeconds?: number

    An amount of time in seconds between 1 second and 15 minutes. Must be a whole number. Default is 3 seconds.

    -
  • \ No newline at end of file +
    \ No newline at end of file diff --git a/types/_aws_amplify_backend_function.FunctionSchedule.html b/types/_aws_amplify_backend_function.FunctionSchedule.html index 1780ae6659..8cb52a29cb 100644 --- a/types/_aws_amplify_backend_function.FunctionSchedule.html +++ b/types/_aws_amplify_backend_function.FunctionSchedule.html @@ -1 +1 @@ -FunctionSchedule | Amplify Toolbox
    \ No newline at end of file +FunctionSchedule | Amplify Toolbox
    \ No newline at end of file diff --git a/types/_aws_amplify_backend_function.NodeVersion.html b/types/_aws_amplify_backend_function.NodeVersion.html index dac5668498..e14602614a 100644 --- a/types/_aws_amplify_backend_function.NodeVersion.html +++ b/types/_aws_amplify_backend_function.NodeVersion.html @@ -1 +1 @@ -NodeVersion | Amplify Toolbox
    NodeVersion: 16 | 18 | 20
    \ No newline at end of file +NodeVersion | Amplify Toolbox
    NodeVersion: 16 | 18 | 20
    \ No newline at end of file diff --git a/types/_aws_amplify_backend_function.TimeInterval.html b/types/_aws_amplify_backend_function.TimeInterval.html index 4c7c1d3a38..37486aab16 100644 --- a/types/_aws_amplify_backend_function.TimeInterval.html +++ b/types/_aws_amplify_backend_function.TimeInterval.html @@ -1 +1 @@ -TimeInterval | Amplify Toolbox
    TimeInterval: `every ${number}m` | `every ${number}h` | "every day" | "every week" | "every month" | "every year"
    \ No newline at end of file +TimeInterval | Amplify Toolbox
    TimeInterval: `every ${number}m` | `every ${number}h` | "every day" | "every week" | "every month" | "every year"
    \ No newline at end of file diff --git a/types/_aws_amplify_backend_output_schemas.AIConversationOutput.html b/types/_aws_amplify_backend_output_schemas.AIConversationOutput.html index 97ee2017eb..ad5b4ff2d4 100644 --- a/types/_aws_amplify_backend_output_schemas.AIConversationOutput.html +++ b/types/_aws_amplify_backend_output_schemas.AIConversationOutput.html @@ -1 +1 @@ -AIConversationOutput | Amplify Toolbox
    \ No newline at end of file +AIConversationOutput | Amplify Toolbox
    \ No newline at end of file diff --git a/types/_aws_amplify_backend_output_schemas.AuthOutput.html b/types/_aws_amplify_backend_output_schemas.AuthOutput.html index 1b15ee6b7f..2a4d178e28 100644 --- a/types/_aws_amplify_backend_output_schemas.AuthOutput.html +++ b/types/_aws_amplify_backend_output_schemas.AuthOutput.html @@ -1 +1 @@ -AuthOutput | Amplify Toolbox
    \ No newline at end of file +AuthOutput | Amplify Toolbox
    \ No newline at end of file diff --git a/types/_aws_amplify_backend_output_schemas.AwsAppsyncAuthenticationType.html b/types/_aws_amplify_backend_output_schemas.AwsAppsyncAuthenticationType.html index 5ebec3772f..febe7ec311 100644 --- a/types/_aws_amplify_backend_output_schemas.AwsAppsyncAuthenticationType.html +++ b/types/_aws_amplify_backend_output_schemas.AwsAppsyncAuthenticationType.html @@ -1 +1 @@ -AwsAppsyncAuthenticationType | Amplify Toolbox
    \ No newline at end of file +AwsAppsyncAuthenticationType | Amplify Toolbox
    \ No newline at end of file diff --git a/types/_aws_amplify_backend_output_schemas.BackendOutputEntryStackMetadata.html b/types/_aws_amplify_backend_output_schemas.BackendOutputEntryStackMetadata.html index ab7d3e3eea..45af650750 100644 --- a/types/_aws_amplify_backend_output_schemas.BackendOutputEntryStackMetadata.html +++ b/types/_aws_amplify_backend_output_schemas.BackendOutputEntryStackMetadata.html @@ -1,2 +1,2 @@ BackendOutputEntryStackMetadata | Amplify Toolbox
    BackendOutputEntryStackMetadata: z.infer<typeof backendOutputEntryStackMetadataSchema>

    Inferred type from backendOutputEntryStackMetadataSchema

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/types/_aws_amplify_backend_output_schemas.BackendOutputStackMetadata.html b/types/_aws_amplify_backend_output_schemas.BackendOutputStackMetadata.html index fb02db332a..25095e0588 100644 --- a/types/_aws_amplify_backend_output_schemas.BackendOutputStackMetadata.html +++ b/types/_aws_amplify_backend_output_schemas.BackendOutputStackMetadata.html @@ -1,2 +1,2 @@ BackendOutputStackMetadata | Amplify Toolbox
    BackendOutputStackMetadata: z.infer<typeof backendOutputStackMetadataSchema>

    Inferred type from backendOutputStackMetadataSchema

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/types/_aws_amplify_backend_output_schemas.CustomOutput.html b/types/_aws_amplify_backend_output_schemas.CustomOutput.html index 082f91d74b..e7c968f0d4 100644 --- a/types/_aws_amplify_backend_output_schemas.CustomOutput.html +++ b/types/_aws_amplify_backend_output_schemas.CustomOutput.html @@ -1 +1 @@ -CustomOutput | Amplify Toolbox
    \ No newline at end of file +CustomOutput | Amplify Toolbox
    \ No newline at end of file diff --git a/types/_aws_amplify_backend_output_schemas.FunctionOutput.html b/types/_aws_amplify_backend_output_schemas.FunctionOutput.html index bca3dba375..6294dd2028 100644 --- a/types/_aws_amplify_backend_output_schemas.FunctionOutput.html +++ b/types/_aws_amplify_backend_output_schemas.FunctionOutput.html @@ -1 +1 @@ -FunctionOutput | Amplify Toolbox
    \ No newline at end of file +FunctionOutput | Amplify Toolbox
    \ No newline at end of file diff --git a/types/_aws_amplify_backend_output_schemas.GraphqlOutput.html b/types/_aws_amplify_backend_output_schemas.GraphqlOutput.html index 5959b0469c..c3ad680ef2 100644 --- a/types/_aws_amplify_backend_output_schemas.GraphqlOutput.html +++ b/types/_aws_amplify_backend_output_schemas.GraphqlOutput.html @@ -1 +1 @@ -GraphqlOutput | Amplify Toolbox
    \ No newline at end of file +GraphqlOutput | Amplify Toolbox
    \ No newline at end of file diff --git a/types/_aws_amplify_backend_output_schemas.StorageOutput.html b/types/_aws_amplify_backend_output_schemas.StorageOutput.html index 105fa4351b..c730386214 100644 --- a/types/_aws_amplify_backend_output_schemas.StorageOutput.html +++ b/types/_aws_amplify_backend_output_schemas.StorageOutput.html @@ -1 +1 @@ -StorageOutput | Amplify Toolbox
    \ No newline at end of file +StorageOutput | Amplify Toolbox
    \ No newline at end of file diff --git a/types/_aws_amplify_backend_output_schemas.UnifiedBackendOutput.html b/types/_aws_amplify_backend_output_schemas.UnifiedBackendOutput.html index 18611a9446..d8e55a0122 100644 --- a/types/_aws_amplify_backend_output_schemas.UnifiedBackendOutput.html +++ b/types/_aws_amplify_backend_output_schemas.UnifiedBackendOutput.html @@ -1,3 +1,3 @@ UnifiedBackendOutput | Amplify Toolbox
    UnifiedBackendOutput: z.infer<typeof unifiedBackendOutputSchema>

    This type is a subset of the BackendOutput type that is exposed by the platform. It represents BackendOutput that has been validated against the schema of known output values

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/types/_aws_amplify_backend_output_storage.AttributionMetadata.html b/types/_aws_amplify_backend_output_storage.AttributionMetadata.html index eeb4b73482..c75d3c05f7 100644 --- a/types/_aws_amplify_backend_output_storage.AttributionMetadata.html +++ b/types/_aws_amplify_backend_output_storage.AttributionMetadata.html @@ -3,4 +3,4 @@
  • createdWith: string

    The library version that created this metadata

  • metadata: Record<string, string>

    Field where constructs can put additional information for BI tracking

  • stackType: string

    String that identifies what type of stack this metadata is set on

    -
  • \ No newline at end of file +
    \ No newline at end of file diff --git a/types/_aws_amplify_backend_output_storage.DeploymentEngineType.html b/types/_aws_amplify_backend_output_storage.DeploymentEngineType.html index b5dd4de177..4b93d9f38b 100644 --- a/types/_aws_amplify_backend_output_storage.DeploymentEngineType.html +++ b/types/_aws_amplify_backend_output_storage.DeploymentEngineType.html @@ -1 +1 @@ -DeploymentEngineType | Amplify Toolbox
    DeploymentEngineType: "AmplifyPipelineDeploy" | "AmplifySandbox" | "AmplifyCDK"
    \ No newline at end of file +DeploymentEngineType | Amplify Toolbox
    DeploymentEngineType: "AmplifyPipelineDeploy" | "AmplifySandbox" | "AmplifyCDK"
    \ No newline at end of file diff --git a/types/_aws_amplify_backend_output_storage.Platform.html b/types/_aws_amplify_backend_output_storage.Platform.html index f83f50609b..2559833bc7 100644 --- a/types/_aws_amplify_backend_output_storage.Platform.html +++ b/types/_aws_amplify_backend_output_storage.Platform.html @@ -1 +1 @@ -Platform | Amplify Toolbox
    Platform: "Mac" | "Windows" | "Linux" | "Other"
    \ No newline at end of file +Platform | Amplify Toolbox
    Platform: "Mac" | "Windows" | "Linux" | "Other"
    \ No newline at end of file diff --git a/types/_aws_amplify_backend_platform_test_stubs.StackResolver.html b/types/_aws_amplify_backend_platform_test_stubs.StackResolver.html index e8f47f9dbc..7f68a640c9 100644 --- a/types/_aws_amplify_backend_platform_test_stubs.StackResolver.html +++ b/types/_aws_amplify_backend_platform_test_stubs.StackResolver.html @@ -1,2 +1,2 @@ StackResolver | Amplify Toolbox
    StackResolver: {
        getStackFor: ((resourceGroupName) => Stack);
    }

    Vends stacks for a resource grouping

    -

    Type declaration

    • getStackFor: ((resourceGroupName) => Stack)
        • (resourceGroupName): Stack
        • Parameters

          • resourceGroupName: string

          Returns Stack

    \ No newline at end of file +

    Type declaration

    • getStackFor: ((resourceGroupName) => Stack)
        • (resourceGroupName): Stack
        • Parameters

          • resourceGroupName: string

          Returns Stack

    \ No newline at end of file diff --git a/types/_aws_amplify_backend_secret.Secret.html b/types/_aws_amplify_backend_secret.Secret.html index 742f4712de..832fac3290 100644 --- a/types/_aws_amplify_backend_secret.Secret.html +++ b/types/_aws_amplify_backend_secret.Secret.html @@ -1,2 +1,2 @@ Secret | Amplify Toolbox
    Secret: SecretIdentifier & {
        lastUpdated?: Date;
        value: string;
    }

    The secret object.

    -

    Type declaration

    • Optional lastUpdated?: Date
    • value: string
    \ No newline at end of file +

    Type declaration

    • Optional lastUpdated?: Date
    • value: string
    \ No newline at end of file diff --git a/types/_aws_amplify_backend_secret.SecretClient.html b/types/_aws_amplify_backend_secret.SecretClient.html index aa286f941b..e0020f10de 100644 --- a/types/_aws_amplify_backend_secret.SecretClient.html +++ b/types/_aws_amplify_backend_secret.SecretClient.html @@ -3,4 +3,4 @@
  • listSecrets: ((backendIdentifier) => Promise<SecretListItem[]>)

    List secrets.

  • removeSecret: ((backendIdentifier, secretName) => Promise<void>)

    Remove a secret.

      • (backendIdentifier, secretName): Promise<void>
      • Parameters

        Returns Promise<void>

  • setSecret: ((backendIdentifier, secretName, secretValue) => Promise<SecretIdentifier>)

    Set a secret.

    -
  • \ No newline at end of file +
    \ No newline at end of file diff --git a/types/_aws_amplify_backend_secret.SecretClientOptions.html b/types/_aws_amplify_backend_secret.SecretClientOptions.html index b5de66395d..59ef0fd160 100644 --- a/types/_aws_amplify_backend_secret.SecretClientOptions.html +++ b/types/_aws_amplify_backend_secret.SecretClientOptions.html @@ -1,2 +1,2 @@ SecretClientOptions | Amplify Toolbox
    SecretClientOptions: {
        credentials?: AwsCredentialIdentityProvider;
        region?: string;
    }

    Secret client options.

    -

    Type declaration

    • Optional credentials?: AwsCredentialIdentityProvider
    • Optional region?: string
    \ No newline at end of file +

    Type declaration

    • Optional credentials?: AwsCredentialIdentityProvider
    • Optional region?: string
    \ No newline at end of file diff --git a/types/_aws_amplify_backend_secret.SecretIdentifier.html b/types/_aws_amplify_backend_secret.SecretIdentifier.html index ac5a1217dd..31c1c00081 100644 --- a/types/_aws_amplify_backend_secret.SecretIdentifier.html +++ b/types/_aws_amplify_backend_secret.SecretIdentifier.html @@ -1,2 +1,2 @@ SecretIdentifier | Amplify Toolbox
    SecretIdentifier: {
        name: string;
        version?: number;
    }

    The unique identifier of the secret.

    -

    Type declaration

    • name: string
    • Optional version?: number
    \ No newline at end of file +

    Type declaration

    • name: string
    • Optional version?: number
    \ No newline at end of file diff --git a/types/_aws_amplify_backend_secret.SecretListItem.html b/types/_aws_amplify_backend_secret.SecretListItem.html index 7d29e74e20..42551fe145 100644 --- a/types/_aws_amplify_backend_secret.SecretListItem.html +++ b/types/_aws_amplify_backend_secret.SecretListItem.html @@ -1,2 +1,2 @@ SecretListItem | Amplify Toolbox
    SecretListItem: SecretIdentifier & {
        lastUpdated?: Date;
    }

    The returned object type of listSecrets API.

    -

    Type declaration

    • Optional lastUpdated?: Date
    \ No newline at end of file +

    Type declaration

    • Optional lastUpdated?: Date
    \ No newline at end of file diff --git a/types/_aws_amplify_backend_storage.AmplifyStorageFactoryProps.html b/types/_aws_amplify_backend_storage.AmplifyStorageFactoryProps.html index c86b811b30..4a2339d195 100644 --- a/types/_aws_amplify_backend_storage.AmplifyStorageFactoryProps.html +++ b/types/_aws_amplify_backend_storage.AmplifyStorageFactoryProps.html @@ -2,4 +2,4 @@

    See

    https://docs.amplify.aws/gen2/build-a-backend/storage/#storage-access

    Example

    export const storage = defineStorage({
    access: (allow) => ({
    'foo/*': [allow.authenticated.to(['read'])],
    })
    })
    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/types/_aws_amplify_backend_storage.AmplifyStorageProps.html b/types/_aws_amplify_backend_storage.AmplifyStorageProps.html index 32e8be7b46..d9284ee1da 100644 --- a/types/_aws_amplify_backend_storage.AmplifyStorageProps.html +++ b/types/_aws_amplify_backend_storage.AmplifyStorageProps.html @@ -11,4 +11,4 @@

    Example

    import<
     
    \ No newline at end of file +
    \ No newline at end of file diff --git a/types/_aws_amplify_backend_storage.AmplifyStorageTriggerEvent.html b/types/_aws_amplify_backend_storage.AmplifyStorageTriggerEvent.html index e75995e6ac..1e82528413 100644 --- a/types/_aws_amplify_backend_storage.AmplifyStorageTriggerEvent.html +++ b/types/_aws_amplify_backend_storage.AmplifyStorageTriggerEvent.html @@ -1 +1 @@ -AmplifyStorageTriggerEvent | Amplify Toolbox
    AmplifyStorageTriggerEvent: "onDelete" | "onUpload"
    \ No newline at end of file +AmplifyStorageTriggerEvent | Amplify Toolbox
    AmplifyStorageTriggerEvent: "onDelete" | "onUpload"
    \ No newline at end of file diff --git a/types/_aws_amplify_backend_storage.EntityId.html b/types/_aws_amplify_backend_storage.EntityId.html index 449ae9fd94..48e0bedba3 100644 --- a/types/_aws_amplify_backend_storage.EntityId.html +++ b/types/_aws_amplify_backend_storage.EntityId.html @@ -1,4 +1,4 @@ EntityId | Amplify Toolbox
    EntityId: "identity"

    Types of entity IDs that can be substituted in access policies

    'identity' corresponds to the Cognito Identity Pool IdentityID

    Currently this is the only supported entity type.

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/types/_aws_amplify_backend_storage.StorageAccessBuilder.html b/types/_aws_amplify_backend_storage.StorageAccessBuilder.html index e29d14234d..d75aaac287 100644 --- a/types/_aws_amplify_backend_storage.StorageAccessBuilder.html +++ b/types/_aws_amplify_backend_storage.StorageAccessBuilder.html @@ -20,4 +20,4 @@

    When configuring access for paths with the {entity_id} token, the token is replaced with a wildcard (*). For a path like media/profile-pictures/{entity_id}/*, this means access is configured for resources for any file within media/profile-pictures/*.

    -

    Returns StorageActionBuilder

    \ No newline at end of file +

    Returns StorageActionBuilder

    \ No newline at end of file diff --git a/types/_aws_amplify_backend_storage.StorageAccessDefinition.html b/types/_aws_amplify_backend_storage.StorageAccessDefinition.html index cd54d353f4..b47927057e 100644 --- a/types/_aws_amplify_backend_storage.StorageAccessDefinition.html +++ b/types/_aws_amplify_backend_storage.StorageAccessDefinition.html @@ -16,4 +16,4 @@ }

    The validationErrorMessage will be used to print an error message in case of validation failure

    An empty array means that no uniqueness will be enforced

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/types/_aws_amplify_backend_storage.StorageAccessGenerator.html b/types/_aws_amplify_backend_storage.StorageAccessGenerator.html index 01890c2d34..d333be3292 100644 --- a/types/_aws_amplify_backend_storage.StorageAccessGenerator.html +++ b/types/_aws_amplify_backend_storage.StorageAccessGenerator.html @@ -1 +1 @@ -StorageAccessGenerator | Amplify Toolbox
    StorageAccessGenerator: ((allow) => StorageAccessRecord)

    Type declaration

    \ No newline at end of file +StorageAccessGenerator | Amplify Toolbox
    StorageAccessGenerator: ((allow) => StorageAccessRecord)

    Type declaration

    \ No newline at end of file diff --git a/types/_aws_amplify_backend_storage.StorageAccessRecord.html b/types/_aws_amplify_backend_storage.StorageAccessRecord.html index 044fb22ed1..4abf9ff264 100644 --- a/types/_aws_amplify_backend_storage.StorageAccessRecord.html +++ b/types/_aws_amplify_backend_storage.StorageAccessRecord.html @@ -1 +1 @@ -StorageAccessRecord | Amplify Toolbox
    StorageAccessRecord: Record<StoragePath, StorageAccessDefinition[]>
    \ No newline at end of file +StorageAccessRecord | Amplify Toolbox
    StorageAccessRecord: Record<StoragePath, StorageAccessDefinition[]>
    \ No newline at end of file diff --git a/types/_aws_amplify_backend_storage.StorageAction.html b/types/_aws_amplify_backend_storage.StorageAction.html index deaee5c0b0..cb35738c29 100644 --- a/types/_aws_amplify_backend_storage.StorageAction.html +++ b/types/_aws_amplify_backend_storage.StorageAction.html @@ -4,4 +4,4 @@

    'list' grants the ability to list object names matching the path prefix. It does NOT grant the ability to get the content of those objects.

    'write' grants the ability to upload objects with a certain prefix. Note that this allows both creating new objects and updating existing ones.

    'delete' grant the ability to delete objects with a certain prefix.

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/types/_aws_amplify_backend_storage.StorageActionBuilder.html b/types/_aws_amplify_backend_storage.StorageActionBuilder.html index a22d697dc5..4ca538e8d9 100644 --- a/types/_aws_amplify_backend_storage.StorageActionBuilder.html +++ b/types/_aws_amplify_backend_storage.StorageActionBuilder.html @@ -2,4 +2,4 @@

    'read' is mutually exclusive with 'get' and 'list'

    \ No newline at end of file +

    Returns StorageAccessDefinition

    \ No newline at end of file diff --git a/types/_aws_amplify_backend_storage.StoragePath.html b/types/_aws_amplify_backend_storage.StoragePath.html index 40d32b2c72..04c738b824 100644 --- a/types/_aws_amplify_backend_storage.StoragePath.html +++ b/types/_aws_amplify_backend_storage.StoragePath.html @@ -1,2 +1,2 @@ StoragePath | Amplify Toolbox
    StoragePath: `${string}/*`

    Storage access paths must end with /*

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/types/_aws_amplify_backend_storage.StorageResources.html b/types/_aws_amplify_backend_storage.StorageResources.html index 39d061fd3d..48a75b0716 100644 --- a/types/_aws_amplify_backend_storage.StorageResources.html +++ b/types/_aws_amplify_backend_storage.StorageResources.html @@ -1 +1 @@ -StorageResources | Amplify Toolbox
    StorageResources: {
        bucket: IBucket;
        cfnResources: {
            cfnBucket: CfnBucket;
        };
    }

    Type declaration

    • bucket: IBucket
    • cfnResources: {
          cfnBucket: CfnBucket;
      }
      • cfnBucket: CfnBucket
    \ No newline at end of file +StorageResources | Amplify Toolbox
    StorageResources: {
        bucket: IBucket;
        cfnResources: {
            cfnBucket: CfnBucket;
        };
    }

    Type declaration

    • bucket: IBucket
    • cfnResources: {
          cfnBucket: CfnBucket;
      }
      • cfnBucket: CfnBucket
    \ No newline at end of file diff --git a/types/_aws_amplify_cli_core.ColorName.html b/types/_aws_amplify_cli_core.ColorName.html index 91dd0a91bf..0c5f0962dc 100644 --- a/types/_aws_amplify_cli_core.ColorName.html +++ b/types/_aws_amplify_cli_core.ColorName.html @@ -1 +1 @@ -ColorName | Amplify Toolbox
    ColorName: typeof colorNames[number]
    \ No newline at end of file +ColorName | Amplify Toolbox
    ColorName: typeof colorNames[number]
    \ No newline at end of file diff --git a/types/_aws_amplify_cli_core.RecordValue.html b/types/_aws_amplify_cli_core.RecordValue.html index 3f1dc6cd40..5079c9eb60 100644 --- a/types/_aws_amplify_cli_core.RecordValue.html +++ b/types/_aws_amplify_cli_core.RecordValue.html @@ -1 +1 @@ -RecordValue | Amplify Toolbox
    RecordValue: string | number | string[] | Date
    \ No newline at end of file +RecordValue | Amplify Toolbox
    RecordValue: string | number | string[] | Date
    \ No newline at end of file diff --git a/types/_aws_amplify_client_config.AnalyticsClientConfig.html b/types/_aws_amplify_client_config.AnalyticsClientConfig.html index f552a893c3..fc59446a72 100644 --- a/types/_aws_amplify_client_config.AnalyticsClientConfig.html +++ b/types/_aws_amplify_client_config.AnalyticsClientConfig.html @@ -1 +1 @@ -AnalyticsClientConfig | Amplify Toolbox
    AnalyticsClientConfig: {
        Analytics?: {
            Pinpoint: {
                appId: string;
                region: string;
            };
        };
        aws_mobile_analytics_app_id?: string;
        aws_mobile_analytics_app_region?: string;
    }

    Type declaration

    • Optional Analytics?: {
          Pinpoint: {
              appId: string;
              region: string;
          };
      }
      • Pinpoint: {
            appId: string;
            region: string;
        }
        • appId: string
        • region: string
    • Optional aws_mobile_analytics_app_id?: string
    • Optional aws_mobile_analytics_app_region?: string
    \ No newline at end of file +AnalyticsClientConfig | Amplify Toolbox
    AnalyticsClientConfig: {
        Analytics?: {
            Pinpoint: {
                appId: string;
                region: string;
            };
        };
        aws_mobile_analytics_app_id?: string;
        aws_mobile_analytics_app_region?: string;
    }

    Type declaration

    • Optional Analytics?: {
          Pinpoint: {
              appId: string;
              region: string;
          };
      }
      • Pinpoint: {
            appId: string;
            region: string;
        }
        • appId: string
        • region: string
    • Optional aws_mobile_analytics_app_id?: string
    • Optional aws_mobile_analytics_app_region?: string
    \ No newline at end of file diff --git a/types/_aws_amplify_client_config.AuthClientConfig.html b/types/_aws_amplify_client_config.AuthClientConfig.html index 5981759c2c..23b9b66959 100644 --- a/types/_aws_amplify_client_config.AuthClientConfig.html +++ b/types/_aws_amplify_client_config.AuthClientConfig.html @@ -1,3 +1,3 @@ AuthClientConfig | Amplify Toolbox
    AuthClientConfig: {
        allowUnauthenticatedIdentities?: string;
        aws_cognito_identity_pool_id?: string;
        aws_cognito_mfa_configuration?: string;
        aws_cognito_mfa_types?: string[];
        aws_cognito_password_protection_settings?: {
            passwordPolicyCharacters?: string[];
            passwordPolicyMinLength?: number;
        };
        aws_cognito_region: string;
        aws_cognito_signup_attributes?: string[];
        aws_cognito_social_providers?: string[];
        aws_cognito_username_attributes?: string[];
        aws_cognito_verification_mechanisms?: string[];
        aws_mandatory_sign_in?: string;
        aws_user_pools_id?: string;
        aws_user_pools_web_client_id?: string;
        oauth?: {
            clientId?: string;
            domain?: string;
            redirectSignIn?: string;
            redirectSignOut?: string;
            responseType?: string;
            scope?: string[];
        };
    }

    Type declaration

    • Optional allowUnauthenticatedIdentities?: string
    • Optional aws_cognito_identity_pool_id?: string
    • Optional aws_cognito_mfa_configuration?: string
    • Optional aws_cognito_mfa_types?: string[]
    • Optional aws_cognito_password_protection_settings?: {
          passwordPolicyCharacters?: string[];
          passwordPolicyMinLength?: number;
      }
      • Optional passwordPolicyCharacters?: string[]
      • Optional passwordPolicyMinLength?: number
    • aws_cognito_region: string
    • Optional aws_cognito_signup_attributes?: string[]
    • Optional aws_cognito_social_providers?: string[]
    • Optional aws_cognito_username_attributes?: string[]
    • Optional aws_cognito_verification_mechanisms?: string[]
    • Optional aws_mandatory_sign_in?: string
    • Optional aws_user_pools_id?: string
    • Optional aws_user_pools_web_client_id?: string
    • Optional oauth?: {
          clientId?: string;
          domain?: string;
          redirectSignIn?: string;
          redirectSignOut?: string;
          responseType?: string;
          scope?: string[];
      }
      • Optional clientId?: string
      • Optional domain?: string
      • Optional redirectSignIn?: string
      • Optional redirectSignOut?: string
      • Optional responseType?: string
      • Optional scope?: string[]
    \ No newline at end of file +

    Type declaration

    • Optional allowUnauthenticatedIdentities?: string
    • Optional aws_cognito_identity_pool_id?: string
    • Optional aws_cognito_mfa_configuration?: string
    • Optional aws_cognito_mfa_types?: string[]
    • Optional aws_cognito_password_protection_settings?: {
          passwordPolicyCharacters?: string[];
          passwordPolicyMinLength?: number;
      }
      • Optional passwordPolicyCharacters?: string[]
      • Optional passwordPolicyMinLength?: number
    • aws_cognito_region: string
    • Optional aws_cognito_signup_attributes?: string[]
    • Optional aws_cognito_social_providers?: string[]
    • Optional aws_cognito_username_attributes?: string[]
    • Optional aws_cognito_verification_mechanisms?: string[]
    • Optional aws_mandatory_sign_in?: string
    • Optional aws_user_pools_id?: string
    • Optional aws_user_pools_web_client_id?: string
    • Optional oauth?: {
          clientId?: string;
          domain?: string;
          redirectSignIn?: string;
          redirectSignOut?: string;
          responseType?: string;
          scope?: string[];
      }
      • Optional clientId?: string
      • Optional domain?: string
      • Optional redirectSignIn?: string
      • Optional redirectSignOut?: string
      • Optional responseType?: string
      • Optional scope?: string[]
    \ No newline at end of file diff --git a/types/_aws_amplify_client_config.ClientConfig.html b/types/_aws_amplify_client_config.ClientConfig.html index 829081793d..54399d3f03 100644 --- a/types/_aws_amplify_client_config.ClientConfig.html +++ b/types/_aws_amplify_client_config.ClientConfig.html @@ -1,4 +1,4 @@ ClientConfig | Amplify Toolbox

    Versions of client config schema supported by "this" package version. Create union for supported versions here, such as ClientConfig = clientConfigTypesV1.AWSAmplifyBackendOutputs | clientConfigTypesV2.AWSAmplifyBackendOutputs;

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/types/_aws_amplify_client_config.ClientConfigLegacy.html b/types/_aws_amplify_client_config.ClientConfigLegacy.html index bb285e3d7e..c9bb1a6bfa 100644 --- a/types/_aws_amplify_client_config.ClientConfigLegacy.html +++ b/types/_aws_amplify_client_config.ClientConfigLegacy.html @@ -1,2 +1,2 @@ ClientConfigLegacy | Amplify Toolbox
    \ No newline at end of file +
    \ No newline at end of file diff --git a/types/_aws_amplify_client_config.ClientConfigVersion.html b/types/_aws_amplify_client_config.ClientConfigVersion.html index 6d2f1783a8..505569c8b6 100644 --- a/types/_aws_amplify_client_config.ClientConfigVersion.html +++ b/types/_aws_amplify_client_config.ClientConfigVersion.html @@ -1 +1 @@ -ClientConfigVersion | Amplify Toolbox
    \ No newline at end of file +ClientConfigVersion | Amplify Toolbox
    \ No newline at end of file diff --git a/types/_aws_amplify_client_config.ClientConfigVersionTemplateType.html b/types/_aws_amplify_client_config.ClientConfigVersionTemplateType.html index ba42ac71ee..7129bbd719 100644 --- a/types/_aws_amplify_client_config.ClientConfigVersionTemplateType.html +++ b/types/_aws_amplify_client_config.ClientConfigVersionTemplateType.html @@ -6,4 +6,4 @@ : T extends '2' ? clientConfigTypesV2.AWSAmplifyBackendOutputs : never;

    -

    Type Parameters

    • T
    \ No newline at end of file +

    Type Parameters

    • T
    \ No newline at end of file diff --git a/types/_aws_amplify_client_config.CustomClientConfig.html b/types/_aws_amplify_client_config.CustomClientConfig.html index a8ce4d5cd2..7783e5f3ba 100644 --- a/types/_aws_amplify_client_config.CustomClientConfig.html +++ b/types/_aws_amplify_client_config.CustomClientConfig.html @@ -1 +1 @@ -CustomClientConfig | Amplify Toolbox
    CustomClientConfig: {
        custom: Record<string, unknown>;
    }

    Type declaration

    • custom: Record<string, unknown>
    \ No newline at end of file +CustomClientConfig | Amplify Toolbox
    CustomClientConfig: {
        custom: Record<string, unknown>;
    }

    Type declaration

    • custom: Record<string, unknown>
    \ No newline at end of file diff --git a/types/_aws_amplify_client_config.GenerateClientConfigToFileResult.html b/types/_aws_amplify_client_config.GenerateClientConfigToFileResult.html index e98a75c65b..0ae535fd48 100644 --- a/types/_aws_amplify_client_config.GenerateClientConfigToFileResult.html +++ b/types/_aws_amplify_client_config.GenerateClientConfigToFileResult.html @@ -1 +1 @@ -GenerateClientConfigToFileResult | Amplify Toolbox
    GenerateClientConfigToFileResult: {
        filesWritten: string[];
    }

    Type declaration

    • filesWritten: string[]
    \ No newline at end of file +GenerateClientConfigToFileResult | Amplify Toolbox
    GenerateClientConfigToFileResult: {
        filesWritten: string[];
    }

    Type declaration

    • filesWritten: string[]
    \ No newline at end of file diff --git a/types/_aws_amplify_client_config.GeoClientConfig.html b/types/_aws_amplify_client_config.GeoClientConfig.html index de0cd6bba2..c4a7d02296 100644 --- a/types/_aws_amplify_client_config.GeoClientConfig.html +++ b/types/_aws_amplify_client_config.GeoClientConfig.html @@ -1 +1 @@ -GeoClientConfig | Amplify Toolbox
    GeoClientConfig: {
        geo?: {
            amazon_location_service: {
                geofenceCollections?: {
                    default: string;
                    items: string[];
                };
                maps?: {
                    default: string;
                    items: Record<string, {
                        style: string;
                    }>;
                };
                region: string;
                search_indices?: {
                    default: string;
                    items: string[];
                };
            };
        };
    }

    Type declaration

    • Optional geo?: {
          amazon_location_service: {
              geofenceCollections?: {
                  default: string;
                  items: string[];
              };
              maps?: {
                  default: string;
                  items: Record<string, {
                      style: string;
                  }>;
              };
              region: string;
              search_indices?: {
                  default: string;
                  items: string[];
              };
          };
      }
      • amazon_location_service: {
            geofenceCollections?: {
                default: string;
                items: string[];
            };
            maps?: {
                default: string;
                items: Record<string, {
                    style: string;
                }>;
            };
            region: string;
            search_indices?: {
                default: string;
                items: string[];
            };
        }
        • Optional geofenceCollections?: {
              default: string;
              items: string[];
          }
          • default: string
          • items: string[]
        • Optional maps?: {
              default: string;
              items: Record<string, {
                  style: string;
              }>;
          }
          • default: string
          • items: Record<string, {
                style: string;
            }>
        • region: string
        • Optional search_indices?: {
              default: string;
              items: string[];
          }
          • default: string
          • items: string[]
    \ No newline at end of file +GeoClientConfig | Amplify Toolbox
    GeoClientConfig: {
        geo?: {
            amazon_location_service: {
                geofenceCollections?: {
                    default: string;
                    items: string[];
                };
                maps?: {
                    default: string;
                    items: Record<string, {
                        style: string;
                    }>;
                };
                region: string;
                search_indices?: {
                    default: string;
                    items: string[];
                };
            };
        };
    }

    Type declaration

    • Optional geo?: {
          amazon_location_service: {
              geofenceCollections?: {
                  default: string;
                  items: string[];
              };
              maps?: {
                  default: string;
                  items: Record<string, {
                      style: string;
                  }>;
              };
              region: string;
              search_indices?: {
                  default: string;
                  items: string[];
              };
          };
      }
      • amazon_location_service: {
            geofenceCollections?: {
                default: string;
                items: string[];
            };
            maps?: {
                default: string;
                items: Record<string, {
                    style: string;
                }>;
            };
            region: string;
            search_indices?: {
                default: string;
                items: string[];
            };
        }
        • Optional geofenceCollections?: {
              default: string;
              items: string[];
          }
          • default: string
          • items: string[]
        • Optional maps?: {
              default: string;
              items: Record<string, {
                  style: string;
              }>;
          }
          • default: string
          • items: Record<string, {
                style: string;
            }>
        • region: string
        • Optional search_indices?: {
              default: string;
              items: string[];
          }
          • default: string
          • items: string[]
    \ No newline at end of file diff --git a/types/_aws_amplify_client_config.GraphqlClientConfig.html b/types/_aws_amplify_client_config.GraphqlClientConfig.html index cfdb4ecc2e..eb4bce9d0b 100644 --- a/types/_aws_amplify_client_config.GraphqlClientConfig.html +++ b/types/_aws_amplify_client_config.GraphqlClientConfig.html @@ -1,3 +1,3 @@ GraphqlClientConfig | Amplify Toolbox
    GraphqlClientConfig: {
        aws_appsync_additionalAuthenticationTypes?: string;
        aws_appsync_apiKey?: string;
        aws_appsync_authenticationType: string;
        aws_appsync_conflictResolutionMode?: string;
        aws_appsync_graphqlEndpoint: string;
        aws_appsync_region: string;
        modelIntrospection?: unknown;
    }

    Type declaration

    • Optional aws_appsync_additionalAuthenticationTypes?: string
    • Optional aws_appsync_apiKey?: string
    • aws_appsync_authenticationType: string
    • Optional aws_appsync_conflictResolutionMode?: string
    • aws_appsync_graphqlEndpoint: string
    • aws_appsync_region: string
    • Optional modelIntrospection?: unknown
    \ No newline at end of file +

    Type declaration

    • Optional aws_appsync_additionalAuthenticationTypes?: string
    • Optional aws_appsync_apiKey?: string
    • aws_appsync_authenticationType: string
    • Optional aws_appsync_conflictResolutionMode?: string
    • aws_appsync_graphqlEndpoint: string
    • aws_appsync_region: string
    • Optional modelIntrospection?: unknown
    \ No newline at end of file diff --git a/types/_aws_amplify_client_config.NotificationsClientConfig.html b/types/_aws_amplify_client_config.NotificationsClientConfig.html index 44457ff8e9..eedc9fbe02 100644 --- a/types/_aws_amplify_client_config.NotificationsClientConfig.html +++ b/types/_aws_amplify_client_config.NotificationsClientConfig.html @@ -1 +1 @@ -NotificationsClientConfig | Amplify Toolbox
    NotificationsClientConfig: {
        Notifications?: {
            EMAIL?: {
                AWSPinpoint: {
                    appId: string;
                    region: string;
                };
            };
            InAppMessaging?: {
                AWSPinpoint: {
                    appId: string;
                    region: string;
                };
            };
            Push?: {
                AWSPinpoint: {
                    appId: string;
                    region: string;
                };
            };
            SMS?: {
                AWSPinpoint: {
                    appId: string;
                    region: string;
                };
            };
        };
    }

    Type declaration

    • Optional Notifications?: {
          EMAIL?: {
              AWSPinpoint: {
                  appId: string;
                  region: string;
              };
          };
          InAppMessaging?: {
              AWSPinpoint: {
                  appId: string;
                  region: string;
              };
          };
          Push?: {
              AWSPinpoint: {
                  appId: string;
                  region: string;
              };
          };
          SMS?: {
              AWSPinpoint: {
                  appId: string;
                  region: string;
              };
          };
      }
      • Optional EMAIL?: {
            AWSPinpoint: {
                appId: string;
                region: string;
            };
        }
        • AWSPinpoint: {
              appId: string;
              region: string;
          }
          • appId: string
          • region: string
      • Optional InAppMessaging?: {
            AWSPinpoint: {
                appId: string;
                region: string;
            };
        }
        • AWSPinpoint: {
              appId: string;
              region: string;
          }
          • appId: string
          • region: string
      • Optional Push?: {
            AWSPinpoint: {
                appId: string;
                region: string;
            };
        }
        • AWSPinpoint: {
              appId: string;
              region: string;
          }
          • appId: string
          • region: string
      • Optional SMS?: {
            AWSPinpoint: {
                appId: string;
                region: string;
            };
        }
        • AWSPinpoint: {
              appId: string;
              region: string;
          }
          • appId: string
          • region: string
    \ No newline at end of file +NotificationsClientConfig | Amplify Toolbox
    NotificationsClientConfig: {
        Notifications?: {
            EMAIL?: {
                AWSPinpoint: {
                    appId: string;
                    region: string;
                };
            };
            InAppMessaging?: {
                AWSPinpoint: {
                    appId: string;
                    region: string;
                };
            };
            Push?: {
                AWSPinpoint: {
                    appId: string;
                    region: string;
                };
            };
            SMS?: {
                AWSPinpoint: {
                    appId: string;
                    region: string;
                };
            };
        };
    }

    Type declaration

    • Optional Notifications?: {
          EMAIL?: {
              AWSPinpoint: {
                  appId: string;
                  region: string;
              };
          };
          InAppMessaging?: {
              AWSPinpoint: {
                  appId: string;
                  region: string;
              };
          };
          Push?: {
              AWSPinpoint: {
                  appId: string;
                  region: string;
              };
          };
          SMS?: {
              AWSPinpoint: {
                  appId: string;
                  region: string;
              };
          };
      }
      • Optional EMAIL?: {
            AWSPinpoint: {
                appId: string;
                region: string;
            };
        }
        • AWSPinpoint: {
              appId: string;
              region: string;
          }
          • appId: string
          • region: string
      • Optional InAppMessaging?: {
            AWSPinpoint: {
                appId: string;
                region: string;
            };
        }
        • AWSPinpoint: {
              appId: string;
              region: string;
          }
          • appId: string
          • region: string
      • Optional Push?: {
            AWSPinpoint: {
                appId: string;
                region: string;
            };
        }
        • AWSPinpoint: {
              appId: string;
              region: string;
          }
          • appId: string
          • region: string
      • Optional SMS?: {
            AWSPinpoint: {
                appId: string;
                region: string;
            };
        }
        • AWSPinpoint: {
              appId: string;
              region: string;
          }
          • appId: string
          • region: string
    \ No newline at end of file diff --git a/types/_aws_amplify_client_config.PlatformClientConfig.html b/types/_aws_amplify_client_config.PlatformClientConfig.html index df24197774..d5fa5817aa 100644 --- a/types/_aws_amplify_client_config.PlatformClientConfig.html +++ b/types/_aws_amplify_client_config.PlatformClientConfig.html @@ -1 +1 @@ -PlatformClientConfig | Amplify Toolbox
    PlatformClientConfig: {
        aws_project_region: string;
    }

    Type declaration

    • aws_project_region: string
    \ No newline at end of file +PlatformClientConfig | Amplify Toolbox
    PlatformClientConfig: {
        aws_project_region: string;
    }

    Type declaration

    • aws_project_region: string
    \ No newline at end of file diff --git a/types/_aws_amplify_client_config.StorageClientConfig.html b/types/_aws_amplify_client_config.StorageClientConfig.html index 7417e12236..8e9518a658 100644 --- a/types/_aws_amplify_client_config.StorageClientConfig.html +++ b/types/_aws_amplify_client_config.StorageClientConfig.html @@ -1,3 +1,3 @@ StorageClientConfig | Amplify Toolbox
    StorageClientConfig: {
        aws_user_files_s3_bucket: string;
        aws_user_files_s3_bucket_region: string;
    }

    Type declaration

    • aws_user_files_s3_bucket: string
    • aws_user_files_s3_bucket_region: string
    \ No newline at end of file +

    Type declaration

    • aws_user_files_s3_bucket: string
    • aws_user_files_s3_bucket_region: string
    \ No newline at end of file diff --git a/types/_aws_amplify_client_config.clientConfigTypesV1.AmazonCognitoStandardAttributes.html b/types/_aws_amplify_client_config.clientConfigTypesV1.AmazonCognitoStandardAttributes.html index 6506a19288..e327310f64 100644 --- a/types/_aws_amplify_client_config.clientConfigTypesV1.AmazonCognitoStandardAttributes.html +++ b/types/_aws_amplify_client_config.clientConfigTypesV1.AmazonCognitoStandardAttributes.html @@ -1,2 +1,2 @@ AmazonCognitoStandardAttributes | Amplify Toolbox
    AmazonCognitoStandardAttributes: "address" | "birthdate" | "email" | "family_name" | "gender" | "given_name" | "locale" | "middle_name" | "name" | "nickname" | "phone_number" | "picture" | "preferred_username" | "profile" | "sub" | "updated_at" | "website" | "zoneinfo"
    \ No newline at end of file +
    \ No newline at end of file diff --git a/types/_aws_amplify_client_config.clientConfigTypesV1.AmazonPinpointChannels.html b/types/_aws_amplify_client_config.clientConfigTypesV1.AmazonPinpointChannels.html index 6df90690a3..7f4ca84ff5 100644 --- a/types/_aws_amplify_client_config.clientConfigTypesV1.AmazonPinpointChannels.html +++ b/types/_aws_amplify_client_config.clientConfigTypesV1.AmazonPinpointChannels.html @@ -1,2 +1,2 @@ AmazonPinpointChannels | Amplify Toolbox
    AmazonPinpointChannels: "IN_APP_MESSAGING" | "FCM" | "APNS" | "EMAIL" | "SMS"

    supported channels for Amazon Pinpoint

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/types/_aws_amplify_client_config.clientConfigTypesV1.AwsAppsyncAuthorizationType.html b/types/_aws_amplify_client_config.clientConfigTypesV1.AwsAppsyncAuthorizationType.html index a44928cf46..fb61b216bf 100644 --- a/types/_aws_amplify_client_config.clientConfigTypesV1.AwsAppsyncAuthorizationType.html +++ b/types/_aws_amplify_client_config.clientConfigTypesV1.AwsAppsyncAuthorizationType.html @@ -1,2 +1,2 @@ AwsAppsyncAuthorizationType | Amplify Toolbox
    AwsAppsyncAuthorizationType: "AMAZON_COGNITO_USER_POOLS" | "API_KEY" | "AWS_IAM" | "AWS_LAMBDA" | "OPENID_CONNECT"

    List of supported auth types for AWS AppSync

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/types/_aws_amplify_client_config.clientConfigTypesV1.AwsRegion.html b/types/_aws_amplify_client_config.clientConfigTypesV1.AwsRegion.html index a12dfc6ac7..5341d51364 100644 --- a/types/_aws_amplify_client_config.clientConfigTypesV1.AwsRegion.html +++ b/types/_aws_amplify_client_config.clientConfigTypesV1.AwsRegion.html @@ -1 +1 @@ -AwsRegion | Amplify Toolbox
    \ No newline at end of file +AwsRegion | Amplify Toolbox
    \ No newline at end of file diff --git a/types/_aws_amplify_client_config.clientConfigTypesV1_1.AmazonCognitoStandardAttributes.html b/types/_aws_amplify_client_config.clientConfigTypesV1_1.AmazonCognitoStandardAttributes.html index 0d6b7b570a..09e7f5dc55 100644 --- a/types/_aws_amplify_client_config.clientConfigTypesV1_1.AmazonCognitoStandardAttributes.html +++ b/types/_aws_amplify_client_config.clientConfigTypesV1_1.AmazonCognitoStandardAttributes.html @@ -1,2 +1,2 @@ AmazonCognitoStandardAttributes | Amplify Toolbox
    AmazonCognitoStandardAttributes: "address" | "birthdate" | "email" | "family_name" | "gender" | "given_name" | "locale" | "middle_name" | "name" | "nickname" | "phone_number" | "picture" | "preferred_username" | "profile" | "sub" | "updated_at" | "website" | "zoneinfo"
    \ No newline at end of file +
    \ No newline at end of file diff --git a/types/_aws_amplify_client_config.clientConfigTypesV1_1.AmazonPinpointChannels.html b/types/_aws_amplify_client_config.clientConfigTypesV1_1.AmazonPinpointChannels.html index 826188db23..790c63bd8f 100644 --- a/types/_aws_amplify_client_config.clientConfigTypesV1_1.AmazonPinpointChannels.html +++ b/types/_aws_amplify_client_config.clientConfigTypesV1_1.AmazonPinpointChannels.html @@ -1,2 +1,2 @@ AmazonPinpointChannels | Amplify Toolbox
    AmazonPinpointChannels: "IN_APP_MESSAGING" | "FCM" | "APNS" | "EMAIL" | "SMS"

    supported channels for Amazon Pinpoint

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/types/_aws_amplify_client_config.clientConfigTypesV1_1.AwsAppsyncAuthorizationType.html b/types/_aws_amplify_client_config.clientConfigTypesV1_1.AwsAppsyncAuthorizationType.html index d08b121295..ea8a336f1c 100644 --- a/types/_aws_amplify_client_config.clientConfigTypesV1_1.AwsAppsyncAuthorizationType.html +++ b/types/_aws_amplify_client_config.clientConfigTypesV1_1.AwsAppsyncAuthorizationType.html @@ -1,2 +1,2 @@ AwsAppsyncAuthorizationType | Amplify Toolbox
    AwsAppsyncAuthorizationType: "AMAZON_COGNITO_USER_POOLS" | "API_KEY" | "AWS_IAM" | "AWS_LAMBDA" | "OPENID_CONNECT"

    List of supported auth types for AWS AppSync

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/types/_aws_amplify_client_config.clientConfigTypesV1_1.AwsRegion.html b/types/_aws_amplify_client_config.clientConfigTypesV1_1.AwsRegion.html index bc0222a4e9..69a74c85a6 100644 --- a/types/_aws_amplify_client_config.clientConfigTypesV1_1.AwsRegion.html +++ b/types/_aws_amplify_client_config.clientConfigTypesV1_1.AwsRegion.html @@ -1 +1 @@ -AwsRegion | Amplify Toolbox
    \ No newline at end of file +AwsRegion | Amplify Toolbox
    \ No newline at end of file diff --git a/types/_aws_amplify_client_config.clientConfigTypesV1_2.AmazonCognitoStandardAttributes.html b/types/_aws_amplify_client_config.clientConfigTypesV1_2.AmazonCognitoStandardAttributes.html index b06542262d..4fe365940d 100644 --- a/types/_aws_amplify_client_config.clientConfigTypesV1_2.AmazonCognitoStandardAttributes.html +++ b/types/_aws_amplify_client_config.clientConfigTypesV1_2.AmazonCognitoStandardAttributes.html @@ -1,2 +1,2 @@ AmazonCognitoStandardAttributes | Amplify Toolbox
    AmazonCognitoStandardAttributes: "address" | "birthdate" | "email" | "family_name" | "gender" | "given_name" | "locale" | "middle_name" | "name" | "nickname" | "phone_number" | "picture" | "preferred_username" | "profile" | "sub" | "updated_at" | "website" | "zoneinfo"
    \ No newline at end of file +
    \ No newline at end of file diff --git a/types/_aws_amplify_client_config.clientConfigTypesV1_2.AmazonPinpointChannels.html b/types/_aws_amplify_client_config.clientConfigTypesV1_2.AmazonPinpointChannels.html index 369e4501a2..c83b12094e 100644 --- a/types/_aws_amplify_client_config.clientConfigTypesV1_2.AmazonPinpointChannels.html +++ b/types/_aws_amplify_client_config.clientConfigTypesV1_2.AmazonPinpointChannels.html @@ -1,2 +1,2 @@ AmazonPinpointChannels | Amplify Toolbox
    AmazonPinpointChannels: "IN_APP_MESSAGING" | "FCM" | "APNS" | "EMAIL" | "SMS"

    supported channels for Amazon Pinpoint

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/types/_aws_amplify_client_config.clientConfigTypesV1_2.AmplifyStorageAccessActions.html b/types/_aws_amplify_client_config.clientConfigTypesV1_2.AmplifyStorageAccessActions.html index cbc98c3b70..1c7ee9d82c 100644 --- a/types/_aws_amplify_client_config.clientConfigTypesV1_2.AmplifyStorageAccessActions.html +++ b/types/_aws_amplify_client_config.clientConfigTypesV1_2.AmplifyStorageAccessActions.html @@ -1 +1 @@ -AmplifyStorageAccessActions | Amplify Toolbox
    AmplifyStorageAccessActions: "read" | "get" | "list" | "write" | "delete"
    \ No newline at end of file +AmplifyStorageAccessActions | Amplify Toolbox
    AmplifyStorageAccessActions: "read" | "get" | "list" | "write" | "delete"
    \ No newline at end of file diff --git a/types/_aws_amplify_client_config.clientConfigTypesV1_2.AwsAppsyncAuthorizationType.html b/types/_aws_amplify_client_config.clientConfigTypesV1_2.AwsAppsyncAuthorizationType.html index 51040fb090..cc4f462b92 100644 --- a/types/_aws_amplify_client_config.clientConfigTypesV1_2.AwsAppsyncAuthorizationType.html +++ b/types/_aws_amplify_client_config.clientConfigTypesV1_2.AwsAppsyncAuthorizationType.html @@ -1,2 +1,2 @@ AwsAppsyncAuthorizationType | Amplify Toolbox
    AwsAppsyncAuthorizationType: "AMAZON_COGNITO_USER_POOLS" | "API_KEY" | "AWS_IAM" | "AWS_LAMBDA" | "OPENID_CONNECT"

    List of supported auth types for AWS AppSync

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/types/_aws_amplify_client_config.clientConfigTypesV1_2.AwsRegion.html b/types/_aws_amplify_client_config.clientConfigTypesV1_2.AwsRegion.html index 0adf3afb3d..d5ed8a3d1b 100644 --- a/types/_aws_amplify_client_config.clientConfigTypesV1_2.AwsRegion.html +++ b/types/_aws_amplify_client_config.clientConfigTypesV1_2.AwsRegion.html @@ -1 +1 @@ -AwsRegion | Amplify Toolbox
    \ No newline at end of file +AwsRegion | Amplify Toolbox
    \ No newline at end of file diff --git a/types/_aws_amplify_client_config.clientConfigTypesV1_3.AmazonCognitoStandardAttributes.html b/types/_aws_amplify_client_config.clientConfigTypesV1_3.AmazonCognitoStandardAttributes.html index d3037fdc6b..60b2d8962d 100644 --- a/types/_aws_amplify_client_config.clientConfigTypesV1_3.AmazonCognitoStandardAttributes.html +++ b/types/_aws_amplify_client_config.clientConfigTypesV1_3.AmazonCognitoStandardAttributes.html @@ -1,2 +1,2 @@ AmazonCognitoStandardAttributes | Amplify Toolbox
    AmazonCognitoStandardAttributes: "address" | "birthdate" | "email" | "family_name" | "gender" | "given_name" | "locale" | "middle_name" | "name" | "nickname" | "phone_number" | "picture" | "preferred_username" | "profile" | "sub" | "updated_at" | "website" | "zoneinfo"
    \ No newline at end of file +
    \ No newline at end of file diff --git a/types/_aws_amplify_client_config.clientConfigTypesV1_3.AmazonPinpointChannels.html b/types/_aws_amplify_client_config.clientConfigTypesV1_3.AmazonPinpointChannels.html index a6a5101b39..abdf14ce51 100644 --- a/types/_aws_amplify_client_config.clientConfigTypesV1_3.AmazonPinpointChannels.html +++ b/types/_aws_amplify_client_config.clientConfigTypesV1_3.AmazonPinpointChannels.html @@ -1,2 +1,2 @@ AmazonPinpointChannels | Amplify Toolbox
    AmazonPinpointChannels: "IN_APP_MESSAGING" | "FCM" | "APNS" | "EMAIL" | "SMS"

    supported channels for Amazon Pinpoint

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/types/_aws_amplify_client_config.clientConfigTypesV1_3.AmplifyStorageAccessActions.html b/types/_aws_amplify_client_config.clientConfigTypesV1_3.AmplifyStorageAccessActions.html index bf4763313e..f6722f9880 100644 --- a/types/_aws_amplify_client_config.clientConfigTypesV1_3.AmplifyStorageAccessActions.html +++ b/types/_aws_amplify_client_config.clientConfigTypesV1_3.AmplifyStorageAccessActions.html @@ -1 +1 @@ -AmplifyStorageAccessActions | Amplify Toolbox
    AmplifyStorageAccessActions: "read" | "get" | "list" | "write" | "delete"
    \ No newline at end of file +AmplifyStorageAccessActions | Amplify Toolbox
    AmplifyStorageAccessActions: "read" | "get" | "list" | "write" | "delete"
    \ No newline at end of file diff --git a/types/_aws_amplify_client_config.clientConfigTypesV1_3.AwsAppsyncAuthorizationType.html b/types/_aws_amplify_client_config.clientConfigTypesV1_3.AwsAppsyncAuthorizationType.html index f22c72ed81..33991b6416 100644 --- a/types/_aws_amplify_client_config.clientConfigTypesV1_3.AwsAppsyncAuthorizationType.html +++ b/types/_aws_amplify_client_config.clientConfigTypesV1_3.AwsAppsyncAuthorizationType.html @@ -1,2 +1,2 @@ AwsAppsyncAuthorizationType | Amplify Toolbox
    AwsAppsyncAuthorizationType: "AMAZON_COGNITO_USER_POOLS" | "API_KEY" | "AWS_IAM" | "AWS_LAMBDA" | "OPENID_CONNECT"

    List of supported auth types for AWS AppSync

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/types/_aws_amplify_client_config.clientConfigTypesV1_3.AwsRegion.html b/types/_aws_amplify_client_config.clientConfigTypesV1_3.AwsRegion.html index f64fd50d64..c814895673 100644 --- a/types/_aws_amplify_client_config.clientConfigTypesV1_3.AwsRegion.html +++ b/types/_aws_amplify_client_config.clientConfigTypesV1_3.AwsRegion.html @@ -1 +1 @@ -AwsRegion | Amplify Toolbox
    \ No newline at end of file +AwsRegion | Amplify Toolbox
    \ No newline at end of file diff --git a/types/_aws_amplify_deployed_backend_client.AppNameAndBranchBackendIdentifier.html b/types/_aws_amplify_deployed_backend_client.AppNameAndBranchBackendIdentifier.html index 51d9b7d5c0..3b7dc1ad0f 100644 --- a/types/_aws_amplify_deployed_backend_client.AppNameAndBranchBackendIdentifier.html +++ b/types/_aws_amplify_deployed_backend_client.AppNameAndBranchBackendIdentifier.html @@ -1,2 +1,2 @@ AppNameAndBranchBackendIdentifier | Amplify Toolbox
    AppNameAndBranchBackendIdentifier: {
        appName: string;
        branchName: string;
    }

    Tuple of Amplify App name and branch

    -

    Type declaration

    • appName: string
    • branchName: string
    \ No newline at end of file +

    Type declaration

    • appName: string
    • branchName: string
    \ No newline at end of file diff --git a/types/_aws_amplify_deployed_backend_client.BackendMetadata.html b/types/_aws_amplify_deployed_backend_client.BackendMetadata.html index 9772c62fa0..36ca9938de 100644 --- a/types/_aws_amplify_deployed_backend_client.BackendMetadata.html +++ b/types/_aws_amplify_deployed_backend_client.BackendMetadata.html @@ -1 +1 @@ -BackendMetadata | Amplify Toolbox
    BackendMetadata: {
        apiConfiguration?: {
            additionalAuthTypes: ApiAuthType[];
            apiId: string;
            conflictResolutionMode?: ConflictResolutionMode;
            defaultAuthType: ApiAuthType;
            graphqlEndpoint: string;
            lastUpdated: Date | undefined;
            modelSchemaS3Uri: string;
            status: BackendDeploymentStatus;
        };
        authConfiguration?: {
            lastUpdated: Date | undefined;
            status: BackendDeploymentStatus;
            userPoolId: string;
        };
        deploymentType: DeploymentType;
        functionConfigurations?: FunctionConfiguration[];
        lastUpdated: Date | undefined;
        name: string;
        resources: DeployedBackendResource[];
        status: BackendDeploymentStatus;
        storageConfiguration?: {
            lastUpdated: Date | undefined;
            s3BucketName: string;
            status: BackendDeploymentStatus;
        };
    }

    Type declaration

    \ No newline at end of file +BackendMetadata | Amplify Toolbox
    BackendMetadata: {
        apiConfiguration?: {
            additionalAuthTypes: ApiAuthType[];
            apiId: string;
            conflictResolutionMode?: ConflictResolutionMode;
            defaultAuthType: ApiAuthType;
            graphqlEndpoint: string;
            lastUpdated: Date | undefined;
            modelSchemaS3Uri: string;
            status: BackendDeploymentStatus;
        };
        authConfiguration?: {
            lastUpdated: Date | undefined;
            status: BackendDeploymentStatus;
            userPoolId: string;
        };
        deploymentType: DeploymentType;
        functionConfigurations?: FunctionConfiguration[];
        lastUpdated: Date | undefined;
        name: string;
        resources: DeployedBackendResource[];
        status: BackendDeploymentStatus;
        storageConfiguration?: {
            lastUpdated: Date | undefined;
            s3BucketName: string;
            status: BackendDeploymentStatus;
        };
    }

    Type declaration

    \ No newline at end of file diff --git a/types/_aws_amplify_deployed_backend_client.BackendOutputClient.html b/types/_aws_amplify_deployed_backend_client.BackendOutputClient.html index 4ba00f6eaf..8f7b170903 100644 --- a/types/_aws_amplify_deployed_backend_client.BackendOutputClient.html +++ b/types/_aws_amplify_deployed_backend_client.BackendOutputClient.html @@ -1,2 +1,2 @@ BackendOutputClient | Amplify Toolbox
    BackendOutputClient: {
        getOutput: ((backendIdentifier) => Promise<UnifiedBackendOutput>);
    }

    Defines BackendOutputClient

    -

    Type declaration

    \ No newline at end of file +

    Type declaration

    \ No newline at end of file diff --git a/types/_aws_amplify_deployed_backend_client.BackendOutputClientFactoryOptions.html b/types/_aws_amplify_deployed_backend_client.BackendOutputClientFactoryOptions.html index 4039208dce..a6a3bea6be 100644 --- a/types/_aws_amplify_deployed_backend_client.BackendOutputClientFactoryOptions.html +++ b/types/_aws_amplify_deployed_backend_client.BackendOutputClientFactoryOptions.html @@ -1 +1 @@ -BackendOutputClientFactoryOptions | Amplify Toolbox
    \ No newline at end of file +BackendOutputClientFactoryOptions | Amplify Toolbox
    \ No newline at end of file diff --git a/types/_aws_amplify_deployed_backend_client.BackendOutputClientOptions.html b/types/_aws_amplify_deployed_backend_client.BackendOutputClientOptions.html index bfa48d7a77..da87e8c655 100644 --- a/types/_aws_amplify_deployed_backend_client.BackendOutputClientOptions.html +++ b/types/_aws_amplify_deployed_backend_client.BackendOutputClientOptions.html @@ -1 +1 @@ -BackendOutputClientOptions | Amplify Toolbox
    BackendOutputClientOptions: {
        amplifyClient: AmplifyClient;
        cloudFormationClient: CloudFormationClient;
    }

    Type declaration

    • amplifyClient: AmplifyClient
    • cloudFormationClient: CloudFormationClient
    \ No newline at end of file +BackendOutputClientOptions | Amplify Toolbox
    BackendOutputClientOptions: {
        amplifyClient: AmplifyClient;
        cloudFormationClient: CloudFormationClient;
    }

    Type declaration

    • amplifyClient: AmplifyClient
    • cloudFormationClient: CloudFormationClient
    \ No newline at end of file diff --git a/types/_aws_amplify_deployed_backend_client.BackendOutputCredentialsOptions.html b/types/_aws_amplify_deployed_backend_client.BackendOutputCredentialsOptions.html index b461cebb34..2275663f91 100644 --- a/types/_aws_amplify_deployed_backend_client.BackendOutputCredentialsOptions.html +++ b/types/_aws_amplify_deployed_backend_client.BackendOutputCredentialsOptions.html @@ -1 +1 @@ -BackendOutputCredentialsOptions | Amplify Toolbox
    BackendOutputCredentialsOptions: {
        credentials: AwsCredentialIdentityProvider;
    }

    Type declaration

    • credentials: AwsCredentialIdentityProvider
    \ No newline at end of file +BackendOutputCredentialsOptions | Amplify Toolbox
    BackendOutputCredentialsOptions: {
        credentials: AwsCredentialIdentityProvider;
    }

    Type declaration

    • credentials: AwsCredentialIdentityProvider
    \ No newline at end of file diff --git a/types/_aws_amplify_deployed_backend_client.BackendSummaryMetadata.html b/types/_aws_amplify_deployed_backend_client.BackendSummaryMetadata.html index 43e3c58ac3..0a41a5565e 100644 --- a/types/_aws_amplify_deployed_backend_client.BackendSummaryMetadata.html +++ b/types/_aws_amplify_deployed_backend_client.BackendSummaryMetadata.html @@ -1 +1 @@ -BackendSummaryMetadata | Amplify Toolbox
    BackendSummaryMetadata: {
        backendId: BackendIdentifier | undefined;
        lastUpdated: Date | undefined;
        name: string;
        status: BackendDeploymentStatus;
    }

    Type declaration

    \ No newline at end of file +BackendSummaryMetadata | Amplify Toolbox
    BackendSummaryMetadata: {
        backendId: BackendIdentifier | undefined;
        lastUpdated: Date | undefined;
        name: string;
        status: BackendDeploymentStatus;
    }

    Type declaration

    \ No newline at end of file diff --git a/types/_aws_amplify_deployed_backend_client.DeployedBackendClient.html b/types/_aws_amplify_deployed_backend_client.DeployedBackendClient.html index 4cf0b16d50..203f79444c 100644 --- a/types/_aws_amplify_deployed_backend_client.DeployedBackendClient.html +++ b/types/_aws_amplify_deployed_backend_client.DeployedBackendClient.html @@ -1 +1 @@ -DeployedBackendClient | Amplify Toolbox
    DeployedBackendClient: {
        deleteSandbox: ((sandboxBackendIdentifier) => Promise<void>);
        getBackendMetadata: ((backendId) => Promise<BackendMetadata>);
        listBackends: ((listBackendsRequest?) => ListBackendsResponse);
    }

    Type declaration

    \ No newline at end of file +DeployedBackendClient | Amplify Toolbox
    DeployedBackendClient: {
        deleteSandbox: ((sandboxBackendIdentifier) => Promise<void>);
        getBackendMetadata: ((backendId) => Promise<BackendMetadata>);
        listBackends: ((listBackendsRequest?) => ListBackendsResponse);
    }

    Type declaration

    \ No newline at end of file diff --git a/types/_aws_amplify_deployed_backend_client.DeployedBackendIdentifier.html b/types/_aws_amplify_deployed_backend_client.DeployedBackendIdentifier.html index 220a957c78..b016a3fe7e 100644 --- a/types/_aws_amplify_deployed_backend_client.DeployedBackendIdentifier.html +++ b/types/_aws_amplify_deployed_backend_client.DeployedBackendIdentifier.html @@ -1 +1 @@ -DeployedBackendIdentifier | Amplify Toolbox
    \ No newline at end of file +DeployedBackendIdentifier | Amplify Toolbox
    \ No newline at end of file diff --git a/types/_aws_amplify_deployed_backend_client.DeployedBackendResource.html b/types/_aws_amplify_deployed_backend_client.DeployedBackendResource.html index f06b5ba7a4..901ed85dfc 100644 --- a/types/_aws_amplify_deployed_backend_client.DeployedBackendResource.html +++ b/types/_aws_amplify_deployed_backend_client.DeployedBackendResource.html @@ -1 +1 @@ -DeployedBackendResource | Amplify Toolbox
    DeployedBackendResource: {
        arn?: string;
        lastUpdated?: Date;
        logicalResourceId?: string;
        physicalResourceId?: string;
        resourceStatus?: string;
        resourceStatusReason?: string;
        resourceType?: string;
    }

    Type declaration

    • Optional arn?: string
    • Optional lastUpdated?: Date
    • Optional logicalResourceId?: string
    • Optional physicalResourceId?: string
    • Optional resourceStatus?: string
    • Optional resourceStatusReason?: string
    • Optional resourceType?: string
    \ No newline at end of file +DeployedBackendResource | Amplify Toolbox
    DeployedBackendResource: {
        arn?: string;
        lastUpdated?: Date;
        logicalResourceId?: string;
        physicalResourceId?: string;
        resourceStatus?: string;
        resourceStatusReason?: string;
        resourceType?: string;
    }

    Type declaration

    • Optional arn?: string
    • Optional lastUpdated?: Date
    • Optional logicalResourceId?: string
    • Optional physicalResourceId?: string
    • Optional resourceStatus?: string
    • Optional resourceStatusReason?: string
    • Optional resourceType?: string
    \ No newline at end of file diff --git a/types/_aws_amplify_deployed_backend_client.FunctionConfiguration.html b/types/_aws_amplify_deployed_backend_client.FunctionConfiguration.html index 7c44b52754..8c49729f89 100644 --- a/types/_aws_amplify_deployed_backend_client.FunctionConfiguration.html +++ b/types/_aws_amplify_deployed_backend_client.FunctionConfiguration.html @@ -1 +1 @@ -FunctionConfiguration | Amplify Toolbox
    FunctionConfiguration: {
        functionName: string;
        lastUpdated: Date | undefined;
        status: BackendDeploymentStatus;
    }

    Type declaration

    \ No newline at end of file +FunctionConfiguration | Amplify Toolbox
    FunctionConfiguration: {
        functionName: string;
        lastUpdated: Date | undefined;
        status: BackendDeploymentStatus;
    }

    Type declaration

    \ No newline at end of file diff --git a/types/_aws_amplify_deployed_backend_client.ListBackendsRequest.html b/types/_aws_amplify_deployed_backend_client.ListBackendsRequest.html index 845a0586fb..c01d006f1e 100644 --- a/types/_aws_amplify_deployed_backend_client.ListBackendsRequest.html +++ b/types/_aws_amplify_deployed_backend_client.ListBackendsRequest.html @@ -1 +1 @@ -ListBackendsRequest | Amplify Toolbox
    ListBackendsRequest: {
        backendStatusFilters?: BackendStatus[];
        deploymentType: DeploymentType;
    }

    Type declaration

    \ No newline at end of file +ListBackendsRequest | Amplify Toolbox
    ListBackendsRequest: {
        backendStatusFilters?: BackendStatus[];
        deploymentType: DeploymentType;
    }

    Type declaration

    \ No newline at end of file diff --git a/types/_aws_amplify_deployed_backend_client.ListBackendsResponse.html b/types/_aws_amplify_deployed_backend_client.ListBackendsResponse.html index 312344b980..b7f7f96ec8 100644 --- a/types/_aws_amplify_deployed_backend_client.ListBackendsResponse.html +++ b/types/_aws_amplify_deployed_backend_client.ListBackendsResponse.html @@ -1 +1 @@ -ListBackendsResponse | Amplify Toolbox
    ListBackendsResponse: {
        getBackendSummaryByPage: (() => AsyncGenerator<BackendSummaryMetadata[]>);
    }

    Type declaration

    \ No newline at end of file +ListBackendsResponse | Amplify Toolbox
    ListBackendsResponse: {
        getBackendSummaryByPage: (() => AsyncGenerator<BackendSummaryMetadata[]>);
    }

    Type declaration

    \ No newline at end of file diff --git a/types/_aws_amplify_deployed_backend_client.StackIdentifier.html b/types/_aws_amplify_deployed_backend_client.StackIdentifier.html index 7215fbc52b..6fade07bda 100644 --- a/types/_aws_amplify_deployed_backend_client.StackIdentifier.html +++ b/types/_aws_amplify_deployed_backend_client.StackIdentifier.html @@ -1 +1 @@ -StackIdentifier | Amplify Toolbox
    StackIdentifier: {
        stackName: string;
    }

    Type declaration

    • stackName: string
    \ No newline at end of file +StackIdentifier | Amplify Toolbox
    StackIdentifier: {
        stackName: string;
    }

    Type declaration

    • stackName: string
    \ No newline at end of file diff --git a/types/_aws_amplify_form_generator.FormGenerationOptions.html b/types/_aws_amplify_form_generator.FormGenerationOptions.html index 0be3379982..f5c25ebcc0 100644 --- a/types/_aws_amplify_form_generator.FormGenerationOptions.html +++ b/types/_aws_amplify_form_generator.FormGenerationOptions.html @@ -1 +1 @@ -FormGenerationOptions | Amplify Toolbox
    FormGenerationOptions: {
        models?: string[];
    }

    Type declaration

    • Optional models?: string[]
    \ No newline at end of file +FormGenerationOptions | Amplify Toolbox
    FormGenerationOptions: {
        models?: string[];
    }

    Type declaration

    • Optional models?: string[]
    \ No newline at end of file diff --git a/types/_aws_amplify_form_generator.GenerateGraphqlToFileResult.html b/types/_aws_amplify_form_generator.GenerateGraphqlToFileResult.html index 3abc32bc40..7d806c0b37 100644 --- a/types/_aws_amplify_form_generator.GenerateGraphqlToFileResult.html +++ b/types/_aws_amplify_form_generator.GenerateGraphqlToFileResult.html @@ -1 +1 @@ -GenerateGraphqlToFileResult | Amplify Toolbox
    GenerateGraphqlToFileResult: {
        filesWritten: string[];
    }

    Type declaration

    • filesWritten: string[]
    \ No newline at end of file +GenerateGraphqlToFileResult | Amplify Toolbox
    GenerateGraphqlToFileResult: {
        filesWritten: string[];
    }

    Type declaration

    • filesWritten: string[]
    \ No newline at end of file diff --git a/types/_aws_amplify_form_generator.GraphqlFormGenerator.html b/types/_aws_amplify_form_generator.GraphqlFormGenerator.html index 1429abca41..f5712462cf 100644 --- a/types/_aws_amplify_form_generator.GraphqlFormGenerator.html +++ b/types/_aws_amplify_form_generator.GraphqlFormGenerator.html @@ -1 +1 @@ -GraphqlFormGenerator | Amplify Toolbox
    GraphqlFormGenerator: {
        generateForms: ((options?) => Promise<GraphqlGenerationResult>);
    }

    Type declaration

    \ No newline at end of file +GraphqlFormGenerator | Amplify Toolbox
    GraphqlFormGenerator: {
        generateForms: ((options?) => Promise<GraphqlGenerationResult>);
    }

    Type declaration

    \ No newline at end of file diff --git a/types/_aws_amplify_form_generator.GraphqlGenerationResult.html b/types/_aws_amplify_form_generator.GraphqlGenerationResult.html index 77c26e2e42..f39dd99767 100644 --- a/types/_aws_amplify_form_generator.GraphqlGenerationResult.html +++ b/types/_aws_amplify_form_generator.GraphqlGenerationResult.html @@ -1 +1 @@ -GraphqlGenerationResult | Amplify Toolbox
    GraphqlGenerationResult: {
        writeToDirectory: ((directoryPath) => Promise<GenerateGraphqlToFileResult>);
    }

    Type declaration

    \ No newline at end of file +GraphqlGenerationResult | Amplify Toolbox
    GraphqlGenerationResult: {
        writeToDirectory: ((directoryPath) => Promise<GenerateGraphqlToFileResult>);
    }

    Type declaration

    \ No newline at end of file diff --git a/types/_aws_amplify_form_generator.LocalGraphqlFormGeneratorParams.html b/types/_aws_amplify_form_generator.LocalGraphqlFormGeneratorParams.html index 393af6c65b..ceef0c77e3 100644 --- a/types/_aws_amplify_form_generator.LocalGraphqlFormGeneratorParams.html +++ b/types/_aws_amplify_form_generator.LocalGraphqlFormGeneratorParams.html @@ -1 +1 @@ -LocalGraphqlFormGeneratorParams | Amplify Toolbox
    LocalGraphqlFormGeneratorParams: {
        graphqlModelDirectoryPath: string;
        introspectionSchemaUrl: string;
    }

    Type declaration

    • graphqlModelDirectoryPath: string
    • introspectionSchemaUrl: string
    \ No newline at end of file +LocalGraphqlFormGeneratorParams | Amplify Toolbox
    LocalGraphqlFormGeneratorParams: {
        graphqlModelDirectoryPath: string;
        introspectionSchemaUrl: string;
    }

    Type declaration

    • graphqlModelDirectoryPath: string
    • introspectionSchemaUrl: string
    \ No newline at end of file diff --git a/types/_aws_amplify_model_generator.DocumentGenerationParameters.html b/types/_aws_amplify_model_generator.DocumentGenerationParameters.html index c89a7d5565..cf6aaeb518 100644 --- a/types/_aws_amplify_model_generator.DocumentGenerationParameters.html +++ b/types/_aws_amplify_model_generator.DocumentGenerationParameters.html @@ -1 +1 @@ -DocumentGenerationParameters | Amplify Toolbox
    DocumentGenerationParameters: {
        maxDepth?: number;
        relativeTypesPath?: string;
        targetFormat: StatementsTarget;
        typenameIntrospection?: boolean;
    }

    Type declaration

    • Optional maxDepth?: number
    • Optional relativeTypesPath?: string
    • targetFormat: StatementsTarget
    • Optional typenameIntrospection?: boolean
    \ No newline at end of file +DocumentGenerationParameters | Amplify Toolbox
    DocumentGenerationParameters: {
        maxDepth?: number;
        relativeTypesPath?: string;
        targetFormat: StatementsTarget;
        typenameIntrospection?: boolean;
    }

    Type declaration

    • Optional maxDepth?: number
    • Optional relativeTypesPath?: string
    • targetFormat: StatementsTarget
    • Optional typenameIntrospection?: boolean
    \ No newline at end of file diff --git a/types/_aws_amplify_model_generator.GenerateApiCodeProps.html b/types/_aws_amplify_model_generator.GenerateApiCodeProps.html index 02b425f1ee..7afc636579 100644 --- a/types/_aws_amplify_model_generator.GenerateApiCodeProps.html +++ b/types/_aws_amplify_model_generator.GenerateApiCodeProps.html @@ -1 +1 @@ -GenerateApiCodeProps | Amplify Toolbox
    GenerateApiCodeProps: GenerateOptions & DeployedBackendIdentifier & {
        awsClientProvider: AWSClientProvider<{
            getAmplifyClient: AmplifyClient;
            getCloudFormationClient: CloudFormationClient;
            getS3Client: S3Client;
        }>;
    }

    Type declaration

    • awsClientProvider: AWSClientProvider<{
          getAmplifyClient: AmplifyClient;
          getCloudFormationClient: CloudFormationClient;
          getS3Client: S3Client;
      }>
    \ No newline at end of file +GenerateApiCodeProps | Amplify Toolbox
    GenerateApiCodeProps: GenerateOptions & DeployedBackendIdentifier & {
        awsClientProvider: AWSClientProvider<{
            getAmplifyClient: AmplifyClient;
            getCloudFormationClient: CloudFormationClient;
            getS3Client: S3Client;
        }>;
    }

    Type declaration

    • awsClientProvider: AWSClientProvider<{
          getAmplifyClient: AmplifyClient;
          getCloudFormationClient: CloudFormationClient;
          getS3Client: S3Client;
      }>
    \ No newline at end of file diff --git a/types/_aws_amplify_model_generator.GenerateGraphqlCodegenOptions.html b/types/_aws_amplify_model_generator.GenerateGraphqlCodegenOptions.html index d41927cd11..af3475aaae 100644 --- a/types/_aws_amplify_model_generator.GenerateGraphqlCodegenOptions.html +++ b/types/_aws_amplify_model_generator.GenerateGraphqlCodegenOptions.html @@ -1 +1 @@ -GenerateGraphqlCodegenOptions | Amplify Toolbox
    GenerateGraphqlCodegenOptions: {
        format: GRAPHQL_CODEGEN;
        maxDepth?: number;
        multipleSwiftFiles?: boolean;
        statementTarget: GenerateApiCodeStatementTarget;
        typeNameIntrospection?: boolean;
        typeTarget?: GenerateApiCodeTypeTarget;
    }

    Type declaration

    \ No newline at end of file +GenerateGraphqlCodegenOptions | Amplify Toolbox
    GenerateGraphqlCodegenOptions: {
        format: GRAPHQL_CODEGEN;
        maxDepth?: number;
        multipleSwiftFiles?: boolean;
        statementTarget: GenerateApiCodeStatementTarget;
        typeNameIntrospection?: boolean;
        typeTarget?: GenerateApiCodeTypeTarget;
    }

    Type declaration

    \ No newline at end of file diff --git a/types/_aws_amplify_model_generator.GenerateGraphqlCodegenToFileResult.html b/types/_aws_amplify_model_generator.GenerateGraphqlCodegenToFileResult.html index 9423982489..f79bef31d0 100644 --- a/types/_aws_amplify_model_generator.GenerateGraphqlCodegenToFileResult.html +++ b/types/_aws_amplify_model_generator.GenerateGraphqlCodegenToFileResult.html @@ -1 +1 @@ -GenerateGraphqlCodegenToFileResult | Amplify Toolbox
    GenerateGraphqlCodegenToFileResult: {
        filesWritten: string[];
    }

    Type declaration

    • filesWritten: string[]
    \ No newline at end of file +GenerateGraphqlCodegenToFileResult | Amplify Toolbox
    GenerateGraphqlCodegenToFileResult: {
        filesWritten: string[];
    }

    Type declaration

    • filesWritten: string[]
    \ No newline at end of file diff --git a/types/_aws_amplify_model_generator.GenerateIntrospectionOptions.html b/types/_aws_amplify_model_generator.GenerateIntrospectionOptions.html index a988280eeb..d29139a532 100644 --- a/types/_aws_amplify_model_generator.GenerateIntrospectionOptions.html +++ b/types/_aws_amplify_model_generator.GenerateIntrospectionOptions.html @@ -1 +1 @@ -GenerateIntrospectionOptions | Amplify Toolbox
    GenerateIntrospectionOptions: {
        format: INTROSPECTION;
    }

    Type declaration

    \ No newline at end of file +GenerateIntrospectionOptions | Amplify Toolbox
    GenerateIntrospectionOptions: {
        format: INTROSPECTION;
    }

    Type declaration

    \ No newline at end of file diff --git a/types/_aws_amplify_model_generator.GenerateModelsOptions.html b/types/_aws_amplify_model_generator.GenerateModelsOptions.html index ad31253349..685a8aa2b9 100644 --- a/types/_aws_amplify_model_generator.GenerateModelsOptions.html +++ b/types/_aws_amplify_model_generator.GenerateModelsOptions.html @@ -1 +1 @@ -GenerateModelsOptions | Amplify Toolbox
    GenerateModelsOptions: {
        addTimestampFields?: boolean;
        emitAuthProvider?: boolean;
        format: MODELGEN;
        generateIndexRules?: boolean;
        generateModelsForLazyLoadAndCustomSelectionSet?: boolean;
        handleListNullabilityTransparently?: boolean;
        modelTarget: GenerateApiCodeModelTarget;
        respectPrimaryKeyAttributesOnConnectionField?: boolean;
        transformerVersion?: number;
        useExperimentalPipelinedTransformer?: boolean;
    }

    Type declaration

    • Optional addTimestampFields?: boolean
    • Optional emitAuthProvider?: boolean
    • format: MODELGEN
    • Optional generateIndexRules?: boolean
    • Optional generateModelsForLazyLoadAndCustomSelectionSet?: boolean
    • Optional handleListNullabilityTransparently?: boolean
    • modelTarget: GenerateApiCodeModelTarget
    • Optional respectPrimaryKeyAttributesOnConnectionField?: boolean
    • Optional transformerVersion?: number
    • Optional useExperimentalPipelinedTransformer?: boolean
    \ No newline at end of file +GenerateModelsOptions | Amplify Toolbox
    GenerateModelsOptions: {
        addTimestampFields?: boolean;
        emitAuthProvider?: boolean;
        format: MODELGEN;
        generateIndexRules?: boolean;
        generateModelsForLazyLoadAndCustomSelectionSet?: boolean;
        handleListNullabilityTransparently?: boolean;
        modelTarget: GenerateApiCodeModelTarget;
        respectPrimaryKeyAttributesOnConnectionField?: boolean;
        transformerVersion?: number;
        useExperimentalPipelinedTransformer?: boolean;
    }

    Type declaration

    • Optional addTimestampFields?: boolean
    • Optional emitAuthProvider?: boolean
    • format: MODELGEN
    • Optional generateIndexRules?: boolean
    • Optional generateModelsForLazyLoadAndCustomSelectionSet?: boolean
    • Optional handleListNullabilityTransparently?: boolean
    • modelTarget: GenerateApiCodeModelTarget
    • Optional respectPrimaryKeyAttributesOnConnectionField?: boolean
    • Optional transformerVersion?: number
    • Optional useExperimentalPipelinedTransformer?: boolean
    \ No newline at end of file diff --git a/types/_aws_amplify_model_generator.GenerateOptions.html b/types/_aws_amplify_model_generator.GenerateOptions.html index 2d3600fa67..f1564d8420 100644 --- a/types/_aws_amplify_model_generator.GenerateOptions.html +++ b/types/_aws_amplify_model_generator.GenerateOptions.html @@ -1 +1 @@ -GenerateOptions | Amplify Toolbox
    \ No newline at end of file +GenerateOptions | Amplify Toolbox
    \ No newline at end of file diff --git a/types/_aws_amplify_model_generator.GenerationResult.html b/types/_aws_amplify_model_generator.GenerationResult.html index ec11ba1a6e..176b0f730d 100644 --- a/types/_aws_amplify_model_generator.GenerationResult.html +++ b/types/_aws_amplify_model_generator.GenerationResult.html @@ -1 +1 @@ -GenerationResult | Amplify Toolbox
    GenerationResult: {
        getResults: (() => Promise<Record<string, string>>);
        writeToDirectory: ((directoryPath) => Promise<GenerateGraphqlCodegenToFileResult>);
    }

    Type declaration

    \ No newline at end of file +GenerationResult | Amplify Toolbox
    GenerationResult: {
        getResults: (() => Promise<Record<string, string>>);
        writeToDirectory: ((directoryPath) => Promise<GenerateGraphqlCodegenToFileResult>);
    }

    Type declaration

    \ No newline at end of file diff --git a/types/_aws_amplify_model_generator.GraphqlDocumentGenerator.html b/types/_aws_amplify_model_generator.GraphqlDocumentGenerator.html index faafea5ac5..c367f991bf 100644 --- a/types/_aws_amplify_model_generator.GraphqlDocumentGenerator.html +++ b/types/_aws_amplify_model_generator.GraphqlDocumentGenerator.html @@ -1 +1 @@ -GraphqlDocumentGenerator | Amplify Toolbox
    GraphqlDocumentGenerator: {
        generateModels: ((params) => Promise<GenerationResult>);
    }

    Type declaration

    \ No newline at end of file +GraphqlDocumentGenerator | Amplify Toolbox
    GraphqlDocumentGenerator: {
        generateModels: ((params) => Promise<GenerationResult>);
    }

    Type declaration

    \ No newline at end of file diff --git a/types/_aws_amplify_model_generator.GraphqlDocumentGeneratorFactoryParams.html b/types/_aws_amplify_model_generator.GraphqlDocumentGeneratorFactoryParams.html index dba0d94aae..6e658fc768 100644 --- a/types/_aws_amplify_model_generator.GraphqlDocumentGeneratorFactoryParams.html +++ b/types/_aws_amplify_model_generator.GraphqlDocumentGeneratorFactoryParams.html @@ -1 +1 @@ -GraphqlDocumentGeneratorFactoryParams | Amplify Toolbox
    GraphqlDocumentGeneratorFactoryParams: {
        awsClientProvider: AWSClientProvider<{
            getAmplifyClient: AmplifyClient;
            getCloudFormationClient: CloudFormationClient;
        }>;
        backendIdentifier: DeployedBackendIdentifier;
    }

    Type declaration

    \ No newline at end of file +GraphqlDocumentGeneratorFactoryParams | Amplify Toolbox
    GraphqlDocumentGeneratorFactoryParams: {
        awsClientProvider: AWSClientProvider<{
            getAmplifyClient: AmplifyClient;
            getCloudFormationClient: CloudFormationClient;
        }>;
        backendIdentifier: DeployedBackendIdentifier;
    }

    Type declaration

    \ No newline at end of file diff --git a/types/_aws_amplify_model_generator.GraphqlModelsGenerator.html b/types/_aws_amplify_model_generator.GraphqlModelsGenerator.html index 426d90cdf7..27d5610328 100644 --- a/types/_aws_amplify_model_generator.GraphqlModelsGenerator.html +++ b/types/_aws_amplify_model_generator.GraphqlModelsGenerator.html @@ -1 +1 @@ -GraphqlModelsGenerator | Amplify Toolbox
    GraphqlModelsGenerator: {
        generateModels: ((params) => Promise<GenerationResult>);
    }

    Type declaration

    \ No newline at end of file +GraphqlModelsGenerator | Amplify Toolbox
    GraphqlModelsGenerator: {
        generateModels: ((params) => Promise<GenerationResult>);
    }

    Type declaration

    \ No newline at end of file diff --git a/types/_aws_amplify_model_generator.GraphqlModelsGeneratorFactoryParams.html b/types/_aws_amplify_model_generator.GraphqlModelsGeneratorFactoryParams.html index 2fa20729f7..8e40486e63 100644 --- a/types/_aws_amplify_model_generator.GraphqlModelsGeneratorFactoryParams.html +++ b/types/_aws_amplify_model_generator.GraphqlModelsGeneratorFactoryParams.html @@ -1 +1 @@ -GraphqlModelsGeneratorFactoryParams | Amplify Toolbox
    GraphqlModelsGeneratorFactoryParams: {
        awsClientProvider: AWSClientProvider<{
            getAmplifyClient: AmplifyClient;
            getCloudFormationClient: CloudFormationClient;
            getS3Client: S3Client;
        }>;
        backendIdentifier: DeployedBackendIdentifier;
    } | {
        awsClientProvider: AWSClientProvider<{
            getAmplifyClient: AmplifyClient;
            getCloudFormationClient: CloudFormationClient;
            getS3Client: S3Client;
        }>;
        modelSchemaS3Uri: string;
    }

    Type declaration

    • awsClientProvider: AWSClientProvider<{
          getAmplifyClient: AmplifyClient;
          getCloudFormationClient: CloudFormationClient;
          getS3Client: S3Client;
      }>
    • backendIdentifier: DeployedBackendIdentifier

    Type declaration

    • awsClientProvider: AWSClientProvider<{
          getAmplifyClient: AmplifyClient;
          getCloudFormationClient: CloudFormationClient;
          getS3Client: S3Client;
      }>
    • modelSchemaS3Uri: string
    \ No newline at end of file +GraphqlModelsGeneratorFactoryParams | Amplify Toolbox
    GraphqlModelsGeneratorFactoryParams: {
        awsClientProvider: AWSClientProvider<{
            getAmplifyClient: AmplifyClient;
            getCloudFormationClient: CloudFormationClient;
            getS3Client: S3Client;
        }>;
        backendIdentifier: DeployedBackendIdentifier;
    } | {
        awsClientProvider: AWSClientProvider<{
            getAmplifyClient: AmplifyClient;
            getCloudFormationClient: CloudFormationClient;
            getS3Client: S3Client;
        }>;
        modelSchemaS3Uri: string;
    }

    Type declaration

    • awsClientProvider: AWSClientProvider<{
          getAmplifyClient: AmplifyClient;
          getCloudFormationClient: CloudFormationClient;
          getS3Client: S3Client;
      }>
    • backendIdentifier: DeployedBackendIdentifier

    Type declaration

    • awsClientProvider: AWSClientProvider<{
          getAmplifyClient: AmplifyClient;
          getCloudFormationClient: CloudFormationClient;
          getS3Client: S3Client;
      }>
    • modelSchemaS3Uri: string
    \ No newline at end of file diff --git a/types/_aws_amplify_model_generator.GraphqlTypesGenerator.html b/types/_aws_amplify_model_generator.GraphqlTypesGenerator.html index 30b9470213..96f2a54013 100644 --- a/types/_aws_amplify_model_generator.GraphqlTypesGenerator.html +++ b/types/_aws_amplify_model_generator.GraphqlTypesGenerator.html @@ -1 +1 @@ -GraphqlTypesGenerator | Amplify Toolbox
    GraphqlTypesGenerator: {
        generateTypes: ((params) => Promise<GenerationResult>);
    }

    Type declaration

    \ No newline at end of file +GraphqlTypesGenerator | Amplify Toolbox
    GraphqlTypesGenerator: {
        generateTypes: ((params) => Promise<GenerationResult>);
    }

    Type declaration

    \ No newline at end of file diff --git a/types/_aws_amplify_model_generator.ModelsGenerationParameters.html b/types/_aws_amplify_model_generator.ModelsGenerationParameters.html index 5e60382061..ddae94ce47 100644 --- a/types/_aws_amplify_model_generator.ModelsGenerationParameters.html +++ b/types/_aws_amplify_model_generator.ModelsGenerationParameters.html @@ -1 +1 @@ -ModelsGenerationParameters | Amplify Toolbox
    ModelsGenerationParameters: {
        addTimestampFields?: boolean;
        emitAuthProvider?: boolean;
        generateIndexRules?: boolean;
        generateModelsForLazyLoadAndCustomSelectionSet?: boolean;
        handleListNullabilityTransparently?: boolean;
        respectPrimaryKeyAttributesOnConnectionField?: boolean;
        target: ModelsTarget;
        transformerVersion?: number;
        useExperimentalPipelinedTransformer?: boolean;
    }

    Type declaration

    • Optional addTimestampFields?: boolean
    • Optional emitAuthProvider?: boolean
    • Optional generateIndexRules?: boolean
    • Optional generateModelsForLazyLoadAndCustomSelectionSet?: boolean
    • Optional handleListNullabilityTransparently?: boolean
    • Optional respectPrimaryKeyAttributesOnConnectionField?: boolean
    • target: ModelsTarget
    • Optional transformerVersion?: number
    • Optional useExperimentalPipelinedTransformer?: boolean
    \ No newline at end of file +ModelsGenerationParameters | Amplify Toolbox
    ModelsGenerationParameters: {
        addTimestampFields?: boolean;
        emitAuthProvider?: boolean;
        generateIndexRules?: boolean;
        generateModelsForLazyLoadAndCustomSelectionSet?: boolean;
        handleListNullabilityTransparently?: boolean;
        respectPrimaryKeyAttributesOnConnectionField?: boolean;
        target: ModelsTarget;
        transformerVersion?: number;
        useExperimentalPipelinedTransformer?: boolean;
    }

    Type declaration

    • Optional addTimestampFields?: boolean
    • Optional emitAuthProvider?: boolean
    • Optional generateIndexRules?: boolean
    • Optional generateModelsForLazyLoadAndCustomSelectionSet?: boolean
    • Optional handleListNullabilityTransparently?: boolean
    • Optional respectPrimaryKeyAttributesOnConnectionField?: boolean
    • target: ModelsTarget
    • Optional transformerVersion?: number
    • Optional useExperimentalPipelinedTransformer?: boolean
    \ No newline at end of file diff --git a/types/_aws_amplify_model_generator.TypesGenerationParameters.html b/types/_aws_amplify_model_generator.TypesGenerationParameters.html index 2dc6d439bf..7f647c692e 100644 --- a/types/_aws_amplify_model_generator.TypesGenerationParameters.html +++ b/types/_aws_amplify_model_generator.TypesGenerationParameters.html @@ -1 +1 @@ -TypesGenerationParameters | Amplify Toolbox
    TypesGenerationParameters: {
        maxDepth?: number;
        multipleSwiftFiles?: boolean;
        target: TypesTarget;
        typenameIntrospection?: boolean;
    }

    Type declaration

    • Optional maxDepth?: number
    • Optional multipleSwiftFiles?: boolean
    • target: TypesTarget
    • Optional typenameIntrospection?: boolean
    \ No newline at end of file +TypesGenerationParameters | Amplify Toolbox
    TypesGenerationParameters: {
        maxDepth?: number;
        multipleSwiftFiles?: boolean;
        target: TypesTarget;
        typenameIntrospection?: boolean;
    }

    Type declaration

    • Optional maxDepth?: number
    • Optional multipleSwiftFiles?: boolean
    • target: TypesTarget
    • Optional typenameIntrospection?: boolean
    \ No newline at end of file diff --git a/types/_aws_amplify_platform_core.AmplifyErrorClassification.html b/types/_aws_amplify_platform_core.AmplifyErrorClassification.html index fc5d189d97..bc5ca53e3f 100644 --- a/types/_aws_amplify_platform_core.AmplifyErrorClassification.html +++ b/types/_aws_amplify_platform_core.AmplifyErrorClassification.html @@ -1,2 +1,2 @@ AmplifyErrorClassification | Amplify Toolbox
    AmplifyErrorClassification: "FAULT" | "ERROR"

    Amplify exception classifications

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/types/_aws_amplify_platform_core.AmplifyErrorOptions.html b/types/_aws_amplify_platform_core.AmplifyErrorOptions.html index 3187b69e8c..47edbe2ba4 100644 --- a/types/_aws_amplify_platform_core.AmplifyErrorOptions.html +++ b/types/_aws_amplify_platform_core.AmplifyErrorOptions.html @@ -1,2 +1,2 @@ AmplifyErrorOptions | Amplify Toolbox
    AmplifyErrorOptions: {
        code?: string;
        details?: string;
        link?: string;
        message: string;
        resolution?: string;
    }

    Amplify Error options object

    -

    Type declaration

    • Optional code?: string
    • Optional details?: string
    • Optional link?: string
    • message: string
    • Optional resolution?: string
    \ No newline at end of file +

    Type declaration

    • Optional code?: string
    • Optional details?: string
    • Optional link?: string
    • message: string
    • Optional resolution?: string
    \ No newline at end of file diff --git a/types/_aws_amplify_platform_core.AmplifyUserErrorOptions.html b/types/_aws_amplify_platform_core.AmplifyUserErrorOptions.html index aaad552be5..8890b5fb99 100644 --- a/types/_aws_amplify_platform_core.AmplifyUserErrorOptions.html +++ b/types/_aws_amplify_platform_core.AmplifyUserErrorOptions.html @@ -1,2 +1,2 @@ AmplifyUserErrorOptions | Amplify Toolbox
    AmplifyUserErrorOptions: Omit<AmplifyErrorOptions, "resolution"> & {
        resolution: string;
    }

    Same as AmplifyErrorOptions except resolution is required

    -

    Type declaration

    • resolution: string
    \ No newline at end of file +

    Type declaration

    • resolution: string
    \ No newline at end of file diff --git a/types/_aws_amplify_platform_core.ConfigurationController.html b/types/_aws_amplify_platform_core.ConfigurationController.html index 39c778567d..9daa7d851f 100644 --- a/types/_aws_amplify_platform_core.ConfigurationController.html +++ b/types/_aws_amplify_platform_core.ConfigurationController.html @@ -1 +1 @@ -ConfigurationController | Amplify Toolbox
    ConfigurationController: {
        clear: (() => Promise<void>);
        get: (<T>(path) => Promise<T>);
        set: ((path, value) => Promise<void>);
        write: (() => Promise<void>);
    }

    Type declaration

    • clear: (() => Promise<void>)
        • (): Promise<void>
        • Returns Promise<void>

    • get: (<T>(path) => Promise<T>)
        • <T>(path): Promise<T>
        • Type Parameters

          • T

          Parameters

          • path: string

          Returns Promise<T>

    • set: ((path, value) => Promise<void>)
        • (path, value): Promise<void>
        • Parameters

          • path: string
          • value: string | boolean | number

          Returns Promise<void>

    • write: (() => Promise<void>)
        • (): Promise<void>
        • Returns Promise<void>

    \ No newline at end of file +ConfigurationController | Amplify Toolbox
    ConfigurationController: {
        clear: (() => Promise<void>);
        get: (<T>(path) => Promise<T>);
        set: ((path, value) => Promise<void>);
        write: (() => Promise<void>);
    }

    Type declaration

    • clear: (() => Promise<void>)
        • (): Promise<void>
        • Returns Promise<void>

    • get: (<T>(path) => Promise<T>)
        • <T>(path): Promise<T>
        • Type Parameters

          • T

          Parameters

          • path: string

          Returns Promise<T>

    • set: ((path, value) => Promise<void>)
        • (path, value): Promise<void>
        • Parameters

          • path: string
          • value: string | boolean | number

          Returns Promise<void>

    • write: (() => Promise<void>)
        • (): Promise<void>
        • Returns Promise<void>

    \ No newline at end of file diff --git a/types/_aws_amplify_platform_core.LocalConfigurationFileName.html b/types/_aws_amplify_platform_core.LocalConfigurationFileName.html index e293856e6a..26f47d23d7 100644 --- a/types/_aws_amplify_platform_core.LocalConfigurationFileName.html +++ b/types/_aws_amplify_platform_core.LocalConfigurationFileName.html @@ -1 +1 @@ -LocalConfigurationFileName | Amplify Toolbox
    LocalConfigurationFileName: "usage_data_preferences.json"
    \ No newline at end of file +LocalConfigurationFileName | Amplify Toolbox
    LocalConfigurationFileName: "usage_data_preferences.json"
    \ No newline at end of file diff --git a/types/_aws_amplify_platform_core.PackageJson.html b/types/_aws_amplify_platform_core.PackageJson.html index f6416fe6a9..fd543bb9fc 100644 --- a/types/_aws_amplify_platform_core.PackageJson.html +++ b/types/_aws_amplify_platform_core.PackageJson.html @@ -1 +1 @@ -PackageJson | Amplify Toolbox
    \ No newline at end of file +PackageJson | Amplify Toolbox
    \ No newline at end of file diff --git a/types/_aws_amplify_platform_core.UsageDataEmitter.html b/types/_aws_amplify_platform_core.UsageDataEmitter.html index dc0761acec..692108436f 100644 --- a/types/_aws_amplify_platform_core.UsageDataEmitter.html +++ b/types/_aws_amplify_platform_core.UsageDataEmitter.html @@ -1 +1 @@ -UsageDataEmitter | Amplify Toolbox
    UsageDataEmitter: {
        emitFailure: ((error, dimensions?) => Promise<void>);
        emitSuccess: ((metrics?, dimensions?) => Promise<void>);
    }

    Type declaration

    • emitFailure: ((error, dimensions?) => Promise<void>)
        • (error, dimensions?): Promise<void>
        • Parameters

          • error: AmplifyError
          • Optional dimensions: Record<string, string>

          Returns Promise<void>

    • emitSuccess: ((metrics?, dimensions?) => Promise<void>)
        • (metrics?, dimensions?): Promise<void>
        • Parameters

          • Optional metrics: Record<string, number>
          • Optional dimensions: Record<string, string>

          Returns Promise<void>

    \ No newline at end of file +UsageDataEmitter | Amplify Toolbox
    UsageDataEmitter: {
        emitFailure: ((error, dimensions?) => Promise<void>);
        emitSuccess: ((metrics?, dimensions?) => Promise<void>);
    }

    Type declaration

    • emitFailure: ((error, dimensions?) => Promise<void>)
        • (error, dimensions?): Promise<void>
        • Parameters

          • error: AmplifyError
          • Optional dimensions: Record<string, string>

          Returns Promise<void>

    • emitSuccess: ((metrics?, dimensions?) => Promise<void>)
        • (metrics?, dimensions?): Promise<void>
        • Parameters

          • Optional metrics: Record<string, number>
          • Optional dimensions: Record<string, string>

          Returns Promise<void>

    \ No newline at end of file diff --git a/types/_aws_amplify_plugin_types.AWSClientProvider.html b/types/_aws_amplify_plugin_types.AWSClientProvider.html index 06adb7e256..f2b2a8fe87 100644 --- a/types/_aws_amplify_plugin_types.AWSClientProvider.html +++ b/types/_aws_amplify_plugin_types.AWSClientProvider.html @@ -1 +1 @@ -AWSClientProvider | Amplify Toolbox
    AWSClientProvider<T>: {
        [K in keyof T]: (() => T[K])
    }

    Type Parameters

    • T extends Record<`get${string}Client`, Client<object, MetadataBearer, unknown>>
    \ No newline at end of file +AWSClientProvider | Amplify Toolbox
    AWSClientProvider<T>: {
        [K in keyof T]: (() => T[K])
    }

    Type Parameters

    • T extends Record<`get${string}Client`, Client<object, MetadataBearer, unknown>>
    \ No newline at end of file diff --git a/types/_aws_amplify_plugin_types.AmplifyFunction.html b/types/_aws_amplify_plugin_types.AmplifyFunction.html index b9b9d3230b..9895aa9cf6 100644 --- a/types/_aws_amplify_plugin_types.AmplifyFunction.html +++ b/types/_aws_amplify_plugin_types.AmplifyFunction.html @@ -1 +1 @@ -AmplifyFunction | Amplify Toolbox
    \ No newline at end of file +AmplifyFunction | Amplify Toolbox
    \ No newline at end of file diff --git a/types/_aws_amplify_plugin_types.AppId.html b/types/_aws_amplify_plugin_types.AppId.html index a42a0a8939..3f81bf70fd 100644 --- a/types/_aws_amplify_plugin_types.AppId.html +++ b/types/_aws_amplify_plugin_types.AppId.html @@ -1,2 +1,2 @@ AppId | Amplify Toolbox
    AppId: string

    These are some utility types to make the BackendIdentifier a bit more self-documenting

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/types/_aws_amplify_plugin_types.AuthCfnResources.html b/types/_aws_amplify_plugin_types.AuthCfnResources.html index 9b6ed9c143..7684536003 100644 --- a/types/_aws_amplify_plugin_types.AuthCfnResources.html +++ b/types/_aws_amplify_plugin_types.AuthCfnResources.html @@ -4,4 +4,4 @@
  • cfnIdentityPoolRoleAttachment: CfnIdentityPoolRoleAttachment

    The generated CfnIdentityPoolRoleAttachment L1 resource.

  • cfnUserPool: CfnUserPool

    The generated CfnUserPool L1 resource.

  • cfnUserPoolClient: CfnUserPoolClient

    The generated CfnUserPoolClient L1 resource.

    -
  • \ No newline at end of file +
    \ No newline at end of file diff --git a/types/_aws_amplify_plugin_types.AuthResources.html b/types/_aws_amplify_plugin_types.AuthResources.html index 1a1469851a..e3ece862fa 100644 --- a/types/_aws_amplify_plugin_types.AuthResources.html +++ b/types/_aws_amplify_plugin_types.AuthResources.html @@ -7,4 +7,4 @@
  • unauthenticatedUserIamRole: IRole

    The generated unauth role.

  • userPool: IUserPool

    The generated UserPool L2 Resource.

  • userPoolClient: IUserPoolClient

    The generated UserPoolClient L2 Resource.

    -
  • \ No newline at end of file +
    \ No newline at end of file diff --git a/types/_aws_amplify_plugin_types.AuthRoleName.html b/types/_aws_amplify_plugin_types.AuthRoleName.html index df10ae5b44..a04090e7c1 100644 --- a/types/_aws_amplify_plugin_types.AuthRoleName.html +++ b/types/_aws_amplify_plugin_types.AuthRoleName.html @@ -1 +1 @@ -AuthRoleName | Amplify Toolbox
    AuthRoleName: keyof Pick<AuthResources, "authenticatedUserIamRole" | "unauthenticatedUserIamRole">
    \ No newline at end of file +AuthRoleName | Amplify Toolbox
    AuthRoleName: keyof Pick<AuthResources, "authenticatedUserIamRole" | "unauthenticatedUserIamRole">
    \ No newline at end of file diff --git a/types/_aws_amplify_plugin_types.BackendIdentifier.html b/types/_aws_amplify_plugin_types.BackendIdentifier.html index 35dbfcf221..9022085ff4 100644 --- a/types/_aws_amplify_plugin_types.BackendIdentifier.html +++ b/types/_aws_amplify_plugin_types.BackendIdentifier.html @@ -13,4 +13,4 @@

    While this type does not enforce any specific behavior, at the time of writing, this value defaults to package.json#name when running sandbox commands Consult upstream code for exact usage.

  • type: Readonly<Extract<DeploymentType, "sandbox">>

    Const that determines this BackendIdentifier is for a sandbox backend

    -
  • \ No newline at end of file +
    \ No newline at end of file diff --git a/types/_aws_amplify_plugin_types.BackendOutput.html b/types/_aws_amplify_plugin_types.BackendOutput.html index 14e7260f9d..39364a64ef 100644 --- a/types/_aws_amplify_plugin_types.BackendOutput.html +++ b/types/_aws_amplify_plugin_types.BackendOutput.html @@ -1 +1 @@ -BackendOutput | Amplify Toolbox
    BackendOutput: Record<string, BackendOutputEntry>
    \ No newline at end of file +BackendOutput | Amplify Toolbox
    BackendOutput: Record<string, BackendOutputEntry>
    \ No newline at end of file diff --git a/types/_aws_amplify_plugin_types.BackendOutputEntry.html b/types/_aws_amplify_plugin_types.BackendOutputEntry.html index c540bc5710..cd9b75aaa9 100644 --- a/types/_aws_amplify_plugin_types.BackendOutputEntry.html +++ b/types/_aws_amplify_plugin_types.BackendOutputEntry.html @@ -1 +1 @@ -BackendOutputEntry | Amplify Toolbox
    BackendOutputEntry<T>: {
        payload: T;
        version: string;
    }

    Type Parameters

    • T extends Record<string, string> = Record<string, string>

    Type declaration

    • Readonly payload: T
    • Readonly version: string
    \ No newline at end of file +BackendOutputEntry | Amplify Toolbox
    BackendOutputEntry<T>: {
        payload: T;
        version: string;
    }

    Type Parameters

    • T extends Record<string, string> = Record<string, string>

    Type declaration

    • Readonly payload: T
    • Readonly version: string
    \ No newline at end of file diff --git a/types/_aws_amplify_plugin_types.BackendOutputRetrievalStrategy.html b/types/_aws_amplify_plugin_types.BackendOutputRetrievalStrategy.html index fc138f8af3..8b8930400d 100644 --- a/types/_aws_amplify_plugin_types.BackendOutputRetrievalStrategy.html +++ b/types/_aws_amplify_plugin_types.BackendOutputRetrievalStrategy.html @@ -1,2 +1,2 @@ BackendOutputRetrievalStrategy | Amplify Toolbox
    BackendOutputRetrievalStrategy: {
        fetchBackendOutput: (() => Promise<BackendOutput>);
    }

    Type declaration

    \ No newline at end of file +
    \ No newline at end of file diff --git a/types/_aws_amplify_plugin_types.BackendOutputStorageStrategy.html b/types/_aws_amplify_plugin_types.BackendOutputStorageStrategy.html index 19f4ec046d..b38d777183 100644 --- a/types/_aws_amplify_plugin_types.BackendOutputStorageStrategy.html +++ b/types/_aws_amplify_plugin_types.BackendOutputStorageStrategy.html @@ -1,2 +1,2 @@ BackendOutputStorageStrategy | Amplify Toolbox
    BackendOutputStorageStrategy<T>: {
        addBackendOutputEntry: ((keyName, backendOutputEntry) => void);
        appendToBackendOutputList: ((keyName, backendOutputEntry) => void);
    }

    Type for an object that collects output data from constructs

    -

    Type Parameters

    Type declaration

    • addBackendOutputEntry: ((keyName, backendOutputEntry) => void)
        • (keyName, backendOutputEntry): void
        • Parameters

          • keyName: string
          • backendOutputEntry: T

          Returns void

    • appendToBackendOutputList: ((keyName, backendOutputEntry) => void)
        • (keyName, backendOutputEntry): void
        • Parameters

          Returns void

    \ No newline at end of file +

    Type Parameters

    Type declaration

    • addBackendOutputEntry: ((keyName, backendOutputEntry) => void)
        • (keyName, backendOutputEntry): void
        • Parameters

          • keyName: string
          • backendOutputEntry: T

          Returns void

    • appendToBackendOutputList: ((keyName, backendOutputEntry) => void)
        • (keyName, backendOutputEntry): void
        • Parameters

          Returns void

    \ No newline at end of file diff --git a/types/_aws_amplify_plugin_types.BackendSecret.html b/types/_aws_amplify_plugin_types.BackendSecret.html index a4189d346b..8daf488c3e 100644 --- a/types/_aws_amplify_plugin_types.BackendSecret.html +++ b/types/_aws_amplify_plugin_types.BackendSecret.html @@ -1,3 +1,3 @@ BackendSecret | Amplify Toolbox
    BackendSecret: {
        resolve: ((scope, backendIdentifier) => SecretValue);
        resolvePath: ((backendIdentifier) => ResolvePathResult);
    }

    Type declaration

    \ No newline at end of file +
    \ No newline at end of file diff --git a/types/_aws_amplify_plugin_types.BackendSecretResolver.html b/types/_aws_amplify_plugin_types.BackendSecretResolver.html index 5f429a12e9..1273ee083b 100644 --- a/types/_aws_amplify_plugin_types.BackendSecretResolver.html +++ b/types/_aws_amplify_plugin_types.BackendSecretResolver.html @@ -1 +1 @@ -BackendSecretResolver | Amplify Toolbox
    BackendSecretResolver: {
        resolvePath: ((backendSecret) => ResolvePathResult);
        resolveSecret: ((backendSecret) => SecretValue);
    }

    Type declaration

    \ No newline at end of file +BackendSecretResolver | Amplify Toolbox
    BackendSecretResolver: {
        resolvePath: ((backendSecret) => ResolvePathResult);
        resolveSecret: ((backendSecret) => SecretValue);
    }

    Type declaration

    \ No newline at end of file diff --git a/types/_aws_amplify_plugin_types.BranchName.html b/types/_aws_amplify_plugin_types.BranchName.html index 3b9fc11b4e..2a7edab212 100644 --- a/types/_aws_amplify_plugin_types.BranchName.html +++ b/types/_aws_amplify_plugin_types.BranchName.html @@ -1 +1 @@ -BranchName | Amplify Toolbox
    BranchName: string
    \ No newline at end of file +BranchName | Amplify Toolbox
    BranchName: string
    \ No newline at end of file diff --git a/types/_aws_amplify_plugin_types.ConstructContainer.html b/types/_aws_amplify_plugin_types.ConstructContainer.html index 0864bb6bd7..364b8ecca1 100644 --- a/types/_aws_amplify_plugin_types.ConstructContainer.html +++ b/types/_aws_amplify_plugin_types.ConstructContainer.html @@ -1,2 +1,2 @@ ConstructContainer | Amplify Toolbox
    ConstructContainer: {
        getConstructFactory: (<T>(token) => ConstructFactory<T> | undefined);
        getOrCompute: ((generator) => ResourceProvider);
        registerConstructFactory: ((token, provider) => void);
    }

    Vends Constructs based on an initializer function

    -

    Type declaration

    \ No newline at end of file +

    Type declaration

    \ No newline at end of file diff --git a/types/_aws_amplify_plugin_types.ConstructContainerEntryGenerator.html b/types/_aws_amplify_plugin_types.ConstructContainerEntryGenerator.html index 91001c175b..d38b9c45e9 100644 --- a/types/_aws_amplify_plugin_types.ConstructContainerEntryGenerator.html +++ b/types/_aws_amplify_plugin_types.ConstructContainerEntryGenerator.html @@ -2,4 +2,4 @@

    Type Parameters

    • T extends object = object

    Type declaration

    \ No newline at end of file +
    \ No newline at end of file diff --git a/types/_aws_amplify_plugin_types.ConstructFactory.html b/types/_aws_amplify_plugin_types.ConstructFactory.html index 0edb4d18da..9f641e167c 100644 --- a/types/_aws_amplify_plugin_types.ConstructFactory.html +++ b/types/_aws_amplify_plugin_types.ConstructFactory.html @@ -1,4 +1,4 @@ ConstructFactory | Amplify Toolbox
    ConstructFactory<T>: {
        getInstance: ((props) => T);
        provides?: string;
    }

    Functional interface for construct factories. All objects in the backend-engine definition must implement this interface.

    Type Parameters

    Type declaration

    • getInstance: ((props) => T)
    • Optional Readonly provides?: string

      A construct factory can register that the return value implements additional interfaces Registering as a provider allows other construct factories to fetch this one based on the provides token

      -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/types/_aws_amplify_plugin_types.ConstructFactoryGetInstanceProps.html b/types/_aws_amplify_plugin_types.ConstructFactoryGetInstanceProps.html index e09ba06fe7..400386a31d 100644 --- a/types/_aws_amplify_plugin_types.ConstructFactoryGetInstanceProps.html +++ b/types/_aws_amplify_plugin_types.ConstructFactoryGetInstanceProps.html @@ -1 +1 @@ -ConstructFactoryGetInstanceProps | Amplify Toolbox
    ConstructFactoryGetInstanceProps: {
        constructContainer: ConstructContainer;
        importPathVerifier?: ImportPathVerifier;
        outputStorageStrategy: BackendOutputStorageStrategy<BackendOutputEntry>;
        resourceNameValidator?: ResourceNameValidator;
    }

    Type declaration

    \ No newline at end of file +ConstructFactoryGetInstanceProps | Amplify Toolbox
    ConstructFactoryGetInstanceProps: {
        constructContainer: ConstructContainer;
        importPathVerifier?: ImportPathVerifier;
        outputStorageStrategy: BackendOutputStorageStrategy<BackendOutputEntry>;
        resourceNameValidator?: ResourceNameValidator;
    }

    Type declaration

    \ No newline at end of file diff --git a/types/_aws_amplify_plugin_types.DeepPartial.html b/types/_aws_amplify_plugin_types.DeepPartial.html index 4040ab3d39..1510d37c67 100644 --- a/types/_aws_amplify_plugin_types.DeepPartial.html +++ b/types/_aws_amplify_plugin_types.DeepPartial.html @@ -2,4 +2,4 @@ The DeepPartial type recursively makes all properties of T optional. If a property is an object, it will also be made partially optional.

    Type Parameters

    • T

      The type of the object to make partially optional.

      -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/types/_aws_amplify_plugin_types.DeepPartialAmplifyGeneratedConfigs.html b/types/_aws_amplify_plugin_types.DeepPartialAmplifyGeneratedConfigs.html index b172ba4a3d..1a9d0ce29f 100644 --- a/types/_aws_amplify_plugin_types.DeepPartialAmplifyGeneratedConfigs.html +++ b/types/_aws_amplify_plugin_types.DeepPartialAmplifyGeneratedConfigs.html @@ -1,3 +1,3 @@ DeepPartialAmplifyGeneratedConfigs | Amplify Toolbox
    DeepPartialAmplifyGeneratedConfigs<T>: {
        [P in keyof T]?: P extends "auth" | "data" | "storage"
            ? T[P] extends object
                ? DeepPartialAmplifyGeneratedConfigs<T[P]>
                : Partial<T[P]>
            : T[P]
    }

    Makes all the properties of the entire nested object partial for Amplify generated configs instead of just the top level properties. Other properties are not changed.

    -

    Type Parameters

    • T
    \ No newline at end of file +

    Type Parameters

    • T
    \ No newline at end of file diff --git a/types/_aws_amplify_plugin_types.DeploymentType.html b/types/_aws_amplify_plugin_types.DeploymentType.html index 926c200ff4..8f80899536 100644 --- a/types/_aws_amplify_plugin_types.DeploymentType.html +++ b/types/_aws_amplify_plugin_types.DeploymentType.html @@ -1,4 +1,4 @@ DeploymentType | Amplify Toolbox
    DeploymentType: "branch" | "sandbox"

    Represents the types of Amplify deployments

    Branch deployments are tied to specific git branches and are designed to be used in CI/CD Sandbox deployments are local development environments

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/types/_aws_amplify_plugin_types.FunctionResources.html b/types/_aws_amplify_plugin_types.FunctionResources.html index 81de7f8bfa..48969cd92b 100644 --- a/types/_aws_amplify_plugin_types.FunctionResources.html +++ b/types/_aws_amplify_plugin_types.FunctionResources.html @@ -1 +1 @@ -FunctionResources | Amplify Toolbox
    FunctionResources: {
        cfnResources: {
            cfnFunction: CfnFunction;
        };
        lambda: IFunction;
    }

    Type declaration

    • cfnResources: {
          cfnFunction: CfnFunction;
      }
      • cfnFunction: CfnFunction
    • lambda: IFunction
    \ No newline at end of file +FunctionResources | Amplify Toolbox
    FunctionResources: {
        cfnResources: {
            cfnFunction: CfnFunction;
        };
        lambda: IFunction;
    }

    Type declaration

    • cfnResources: {
          cfnFunction: CfnFunction;
      }
      • cfnFunction: CfnFunction
    • lambda: IFunction
    \ No newline at end of file diff --git a/types/_aws_amplify_plugin_types.GenerateContainerEntryProps.html b/types/_aws_amplify_plugin_types.GenerateContainerEntryProps.html index 4657f196a4..02f55ef2fc 100644 --- a/types/_aws_amplify_plugin_types.GenerateContainerEntryProps.html +++ b/types/_aws_amplify_plugin_types.GenerateContainerEntryProps.html @@ -1 +1 @@ -GenerateContainerEntryProps | Amplify Toolbox
    GenerateContainerEntryProps: {
        backendSecretResolver: BackendSecretResolver;
        scope: Construct;
        ssmEnvironmentEntriesGenerator: SsmEnvironmentEntriesGenerator;
        stableBackendIdentifiers: StableBackendIdentifiers;
    }

    Type declaration

    \ No newline at end of file +GenerateContainerEntryProps | Amplify Toolbox
    GenerateContainerEntryProps: {
        backendSecretResolver: BackendSecretResolver;
        scope: Construct;
        ssmEnvironmentEntriesGenerator: SsmEnvironmentEntriesGenerator;
        stableBackendIdentifiers: StableBackendIdentifiers;
    }

    Type declaration

    \ No newline at end of file diff --git a/types/_aws_amplify_plugin_types.ImportPathVerifier.html b/types/_aws_amplify_plugin_types.ImportPathVerifier.html index 0a8343da13..e8751286bb 100644 --- a/types/_aws_amplify_plugin_types.ImportPathVerifier.html +++ b/types/_aws_amplify_plugin_types.ImportPathVerifier.html @@ -2,4 +2,4 @@

    Type declaration

    • verify: ((importStack, expectedImportingFile, errorMessage) => void)

      Verify that the given stack originated from an expected file path

      importStack is expected to be in the format returned by (new Error()).stack

      If the error was not imported by the expected file, an error with errorMessage is thrown

      -
        • (importStack, expectedImportingFile, errorMessage): void
        • Parameters

          • importStack: string | undefined
          • expectedImportingFile: string
          • errorMessage: string

          Returns void

    \ No newline at end of file +
      • (importStack, expectedImportingFile, errorMessage): void
      • Parameters

        • importStack: string | undefined
        • expectedImportingFile: string
        • errorMessage: string

        Returns void

    \ No newline at end of file diff --git a/types/_aws_amplify_plugin_types.MainStackCreator.html b/types/_aws_amplify_plugin_types.MainStackCreator.html index b7b60dbf73..b299639538 100644 --- a/types/_aws_amplify_plugin_types.MainStackCreator.html +++ b/types/_aws_amplify_plugin_types.MainStackCreator.html @@ -1,2 +1,2 @@ MainStackCreator | Amplify Toolbox
    MainStackCreator: {
        getOrCreateMainStack: (() => Stack);
    }

    Interface for objects that can create stacks in a given scope

    -

    Type declaration

    • getOrCreateMainStack: (() => Stack)
        • (): Stack
        • Returns Stack

    \ No newline at end of file +

    Type declaration

    • getOrCreateMainStack: (() => Stack)
        • (): Stack
        • Returns Stack

    \ No newline at end of file diff --git a/types/_aws_amplify_plugin_types.MainStackNameResolver.html b/types/_aws_amplify_plugin_types.MainStackNameResolver.html index 53382c705c..a6f2b8ab9a 100644 --- a/types/_aws_amplify_plugin_types.MainStackNameResolver.html +++ b/types/_aws_amplify_plugin_types.MainStackNameResolver.html @@ -1,2 +1,2 @@ MainStackNameResolver | Amplify Toolbox
    MainStackNameResolver: {
        resolveMainStackName: (() => Promise<string>);
    }

    Interface for objects that can resolve a stack name

    -

    Type declaration

    • resolveMainStackName: (() => Promise<string>)
        • (): Promise<string>
        • Returns Promise<string>

    \ No newline at end of file +

    Type declaration

    • resolveMainStackName: (() => Promise<string>)
        • (): Promise<string>
        • Returns Promise<string>

    \ No newline at end of file diff --git a/types/_aws_amplify_plugin_types.PackageManagerController.html b/types/_aws_amplify_plugin_types.PackageManagerController.html index ee3f617d37..58086c0f83 100644 --- a/types/_aws_amplify_plugin_types.PackageManagerController.html +++ b/types/_aws_amplify_plugin_types.PackageManagerController.html @@ -1 +1 @@ -PackageManagerController | Amplify Toolbox
    PackageManagerController: {
        allowsSignalPropagation: (() => boolean);
        getCommand: ((args) => string);
        initializeProject: (() => Promise<void>);
        initializeTsConfig: ((targetDir) => Promise<void>);
        installDependencies: ((packageNames, type) => Promise<void>);
        runWithPackageManager: ((args, dir, options?) => ExecaChildProcess);
    }

    Type declaration

    • allowsSignalPropagation: (() => boolean)
        • (): boolean
        • Returns boolean

    • getCommand: ((args) => string)
        • (args): string
        • Parameters

          • args: string[]

          Returns string

    • initializeProject: (() => Promise<void>)
        • (): Promise<void>
        • Returns Promise<void>

    • initializeTsConfig: ((targetDir) => Promise<void>)
        • (targetDir): Promise<void>
        • Parameters

          • targetDir: string

          Returns Promise<void>

    • installDependencies: ((packageNames, type) => Promise<void>)
        • (packageNames, type): Promise<void>
        • Parameters

          • packageNames: string[]
          • type: "dev" | "prod"

          Returns Promise<void>

    • runWithPackageManager: ((args, dir, options?) => ExecaChildProcess)
        • (args, dir, options?): ExecaChildProcess
        • Parameters

          • args: string[] | undefined
          • dir: string
          • Optional options: Options<"utf8">

          Returns ExecaChildProcess

    \ No newline at end of file +PackageManagerController | Amplify Toolbox
    PackageManagerController: {
        allowsSignalPropagation: (() => boolean);
        getCommand: ((args) => string);
        initializeProject: (() => Promise<void>);
        initializeTsConfig: ((targetDir) => Promise<void>);
        installDependencies: ((packageNames, type) => Promise<void>);
        runWithPackageManager: ((args, dir, options?) => ExecaChildProcess);
    }

    Type declaration

    • allowsSignalPropagation: (() => boolean)
        • (): boolean
        • Returns boolean

    • getCommand: ((args) => string)
        • (args): string
        • Parameters

          • args: string[]

          Returns string

    • initializeProject: (() => Promise<void>)
        • (): Promise<void>
        • Returns Promise<void>

    • initializeTsConfig: ((targetDir) => Promise<void>)
        • (targetDir): Promise<void>
        • Parameters

          • targetDir: string

          Returns Promise<void>

    • installDependencies: ((packageNames, type) => Promise<void>)
        • (packageNames, type): Promise<void>
        • Parameters

          • packageNames: string[]
          • type: "dev" | "prod"

          Returns Promise<void>

    • runWithPackageManager: ((args, dir, options?) => ExecaChildProcess)
        • (args, dir, options?): ExecaChildProcess
        • Parameters

          • args: string[] | undefined
          • dir: string
          • Optional options: Options<"utf8">

          Returns ExecaChildProcess

    \ No newline at end of file diff --git a/types/_aws_amplify_plugin_types.ProjectName.html b/types/_aws_amplify_plugin_types.ProjectName.html index 7a8750a965..1cdebaae9e 100644 --- a/types/_aws_amplify_plugin_types.ProjectName.html +++ b/types/_aws_amplify_plugin_types.ProjectName.html @@ -1 +1 @@ -ProjectName | Amplify Toolbox
    ProjectName: string
    \ No newline at end of file +ProjectName | Amplify Toolbox
    ProjectName: string
    \ No newline at end of file diff --git a/types/_aws_amplify_plugin_types.ResolvePathResult.html b/types/_aws_amplify_plugin_types.ResolvePathResult.html index c3ac3be850..1c35db83f7 100644 --- a/types/_aws_amplify_plugin_types.ResolvePathResult.html +++ b/types/_aws_amplify_plugin_types.ResolvePathResult.html @@ -1 +1 @@ -ResolvePathResult | Amplify Toolbox
    ResolvePathResult: {
        branchSecretPath: string;
        sharedSecretPath: string;
    }

    Type declaration

    • branchSecretPath: string
    • sharedSecretPath: string
    \ No newline at end of file +ResolvePathResult | Amplify Toolbox
    ResolvePathResult: {
        branchSecretPath: string;
        sharedSecretPath: string;
    }

    Type declaration

    • branchSecretPath: string
    • sharedSecretPath: string
    \ No newline at end of file diff --git a/types/_aws_amplify_plugin_types.ResourceAccessAcceptor.html b/types/_aws_amplify_plugin_types.ResourceAccessAcceptor.html index 2df2704874..35786091c9 100644 --- a/types/_aws_amplify_plugin_types.ResourceAccessAcceptor.html +++ b/types/_aws_amplify_plugin_types.ResourceAccessAcceptor.html @@ -1,2 +1,2 @@ ResourceAccessAcceptor | Amplify Toolbox
    ResourceAccessAcceptor: {
        acceptResourceAccess: ((policy, ssmEnvironmentEntries) => void);
        identifier: string;
    }

    Type declaration

    • acceptResourceAccess: ((policy, ssmEnvironmentEntries) => void)
        • (policy, ssmEnvironmentEntries): void
        • Parameters

          Returns void

    • identifier: string

      String used to uniquely identify this acceptor. Each instance should have it's own identifier.

      -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/types/_aws_amplify_plugin_types.ResourceAccessAcceptorFactory.html b/types/_aws_amplify_plugin_types.ResourceAccessAcceptorFactory.html index 70d37c25bb..69b11e7a12 100644 --- a/types/_aws_amplify_plugin_types.ResourceAccessAcceptorFactory.html +++ b/types/_aws_amplify_plugin_types.ResourceAccessAcceptorFactory.html @@ -1,4 +1,4 @@ ResourceAccessAcceptorFactory | Amplify Toolbox

    Type alias ResourceAccessAcceptorFactory<RoleIdentifier>

    ResourceAccessAcceptorFactory<RoleIdentifier>: {
        getResourceAccessAcceptor: ((...roleIdentifier) => ResourceAccessAcceptor);
    }

    Type Parameters

    • RoleIdentifier extends string | undefined = undefined

    Type declaration

    \ No newline at end of file +
    \ No newline at end of file diff --git a/types/_aws_amplify_plugin_types.ResourceNameValidator.html b/types/_aws_amplify_plugin_types.ResourceNameValidator.html index cdeaeecefb..f87feaacb7 100644 --- a/types/_aws_amplify_plugin_types.ResourceNameValidator.html +++ b/types/_aws_amplify_plugin_types.ResourceNameValidator.html @@ -1,3 +1,3 @@ ResourceNameValidator | Amplify Toolbox
    ResourceNameValidator: {
        validate: ((resourceName) => void);
    }

    Implementors can validate what should be the correct resource name

    Type declaration

    • validate: ((resourceName) => void)

      executes the validation

      -
        • (resourceName): void
        • Parameters

          • resourceName: string

          Returns void

    \ No newline at end of file +
      • (resourceName): void
      • Parameters

        • resourceName: string

        Returns void

    \ No newline at end of file diff --git a/types/_aws_amplify_plugin_types.ResourceProvider.html b/types/_aws_amplify_plugin_types.ResourceProvider.html index a9c9b108a1..99953a5681 100644 --- a/types/_aws_amplify_plugin_types.ResourceProvider.html +++ b/types/_aws_amplify_plugin_types.ResourceProvider.html @@ -1,4 +1,4 @@ ResourceProvider | Amplify Toolbox
    ResourceProvider<T>: {
        resources: T;
    }

    Provides reference to underlying CDK resources.

    Note: we have to use object as the generic constraint rather than Record<string, unknown> so that interfaces will also satisfy the constraint See: https://stackoverflow.com/questions/63617344/how-to-satisfy-the-constraint-of-recordstring-unknown-with-interface

    -

    Type Parameters

    • T extends object = object

    Type declaration

    • resources: T
    \ No newline at end of file +

    Type Parameters

    • T extends object = object

    Type declaration

    • resources: T
    \ No newline at end of file diff --git a/types/_aws_amplify_plugin_types.SandboxName.html b/types/_aws_amplify_plugin_types.SandboxName.html index e9953e1861..398dd5af49 100644 --- a/types/_aws_amplify_plugin_types.SandboxName.html +++ b/types/_aws_amplify_plugin_types.SandboxName.html @@ -1 +1 @@ -SandboxName | Amplify Toolbox
    SandboxName: string
    \ No newline at end of file +SandboxName | Amplify Toolbox
    SandboxName: string
    \ No newline at end of file diff --git a/types/_aws_amplify_plugin_types.SsmEnvironmentEntriesGenerator.html b/types/_aws_amplify_plugin_types.SsmEnvironmentEntriesGenerator.html index 26c8517556..3d7b608402 100644 --- a/types/_aws_amplify_plugin_types.SsmEnvironmentEntriesGenerator.html +++ b/types/_aws_amplify_plugin_types.SsmEnvironmentEntriesGenerator.html @@ -1 +1 @@ -SsmEnvironmentEntriesGenerator | Amplify Toolbox
    SsmEnvironmentEntriesGenerator: {
        generateSsmEnvironmentEntries: ((scopeContext) => SsmEnvironmentEntry[]);
    }

    Type declaration

    \ No newline at end of file +SsmEnvironmentEntriesGenerator | Amplify Toolbox
    SsmEnvironmentEntriesGenerator: {
        generateSsmEnvironmentEntries: ((scopeContext) => SsmEnvironmentEntry[]);
    }

    Type declaration

    \ No newline at end of file diff --git a/types/_aws_amplify_plugin_types.SsmEnvironmentEntry.html b/types/_aws_amplify_plugin_types.SsmEnvironmentEntry.html index 1f4589ff15..bc7cc280ef 100644 --- a/types/_aws_amplify_plugin_types.SsmEnvironmentEntry.html +++ b/types/_aws_amplify_plugin_types.SsmEnvironmentEntry.html @@ -1,3 +1,3 @@ SsmEnvironmentEntry | Amplify Toolbox
    SsmEnvironmentEntry: {
        name: string;
        path: string;
    }

    Type declaration

    • name: string

      The environment variable name where this SSM value will be placed at runtime

    • path: string

      The SSM parameter path that will be fetched at runtime

      -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/types/_aws_amplify_plugin_types.StableBackendIdentifiers.html b/types/_aws_amplify_plugin_types.StableBackendIdentifiers.html index 7b86994e8c..06156be70c 100644 --- a/types/_aws_amplify_plugin_types.StableBackendIdentifiers.html +++ b/types/_aws_amplify_plugin_types.StableBackendIdentifiers.html @@ -1 +1 @@ -StableBackendIdentifiers | Amplify Toolbox
    StableBackendIdentifiers: {
        getStableBackendHash: (() => string);
    }

    Type declaration

    • getStableBackendHash: (() => string)
        • (): string
        • Returns string

    \ No newline at end of file +StableBackendIdentifiers | Amplify Toolbox
    StableBackendIdentifiers: {
        getStableBackendHash: (() => string);
    }

    Type declaration

    • getStableBackendHash: (() => string)
        • (): string
        • Returns string

    \ No newline at end of file diff --git a/types/_aws_amplify_plugin_types.StackProvider.html b/types/_aws_amplify_plugin_types.StackProvider.html index 56bb1fe17a..f1bd925bea 100644 --- a/types/_aws_amplify_plugin_types.StackProvider.html +++ b/types/_aws_amplify_plugin_types.StackProvider.html @@ -1 +1 @@ -StackProvider | Amplify Toolbox
    StackProvider: {
        stack: Stack;
    }

    Type declaration

    • stack: Stack
    \ No newline at end of file +StackProvider | Amplify Toolbox
    StackProvider: {
        stack: Stack;
    }

    Type declaration

    • stack: Stack
    \ No newline at end of file diff --git a/types/_aws_amplify_sandbox.BackendIdSandboxResolver.html b/types/_aws_amplify_sandbox.BackendIdSandboxResolver.html index 552969a49e..0ae244c84a 100644 --- a/types/_aws_amplify_sandbox.BackendIdSandboxResolver.html +++ b/types/_aws_amplify_sandbox.BackendIdSandboxResolver.html @@ -1 +1 @@ -BackendIdSandboxResolver | Amplify Toolbox
    BackendIdSandboxResolver: ((identifier?) => Promise<BackendIdentifier>)

    Type declaration

    \ No newline at end of file +BackendIdSandboxResolver | Amplify Toolbox
    BackendIdSandboxResolver: ((identifier?) => Promise<BackendIdentifier>)

    Type declaration

    \ No newline at end of file diff --git a/types/_aws_amplify_sandbox.Sandbox.html b/types/_aws_amplify_sandbox.Sandbox.html index d5d987a549..831676acdc 100644 --- a/types/_aws_amplify_sandbox.Sandbox.html +++ b/types/_aws_amplify_sandbox.Sandbox.html @@ -3,4 +3,4 @@
  • start: ((options) => Promise<void>)

    Starts the sandbox

      • (options): Promise<void>
      • Parameters

        • options: SandboxOptions

          such as which directory to watch for file changes

        Returns Promise<void>

  • stop: (() => Promise<void>)

    Stops watching for file changes

    -
      • (): Promise<void>
      • Returns Promise<void>

  • \ No newline at end of file +
      • (): Promise<void>
      • Returns Promise<void>

    \ No newline at end of file diff --git a/types/_aws_amplify_sandbox.SandboxDeleteOptions.html b/types/_aws_amplify_sandbox.SandboxDeleteOptions.html index 977359de46..50717aab13 100644 --- a/types/_aws_amplify_sandbox.SandboxDeleteOptions.html +++ b/types/_aws_amplify_sandbox.SandboxDeleteOptions.html @@ -1 +1 @@ -SandboxDeleteOptions | Amplify Toolbox
    SandboxDeleteOptions: {
        identifier?: string;
        profile?: string;
    }

    Type declaration

    • Optional identifier?: string
    • Optional profile?: string
    \ No newline at end of file +SandboxDeleteOptions | Amplify Toolbox
    SandboxDeleteOptions: {
        identifier?: string;
        profile?: string;
    }

    Type declaration

    • Optional identifier?: string
    • Optional profile?: string
    \ No newline at end of file diff --git a/types/_aws_amplify_sandbox.SandboxEvents.html b/types/_aws_amplify_sandbox.SandboxEvents.html index 4873f31315..a741a6da61 100644 --- a/types/_aws_amplify_sandbox.SandboxEvents.html +++ b/types/_aws_amplify_sandbox.SandboxEvents.html @@ -1 +1 @@ -SandboxEvents | Amplify Toolbox
    SandboxEvents: "successfulDeployment" | "failedDeployment" | "successfulDeletion"
    \ No newline at end of file +SandboxEvents | Amplify Toolbox
    SandboxEvents: "successfulDeployment" | "failedDeployment" | "successfulDeletion"
    \ No newline at end of file diff --git a/types/_aws_amplify_sandbox.SandboxFunctionStreamingOptions.html b/types/_aws_amplify_sandbox.SandboxFunctionStreamingOptions.html index 5966389f7d..e60287807b 100644 --- a/types/_aws_amplify_sandbox.SandboxFunctionStreamingOptions.html +++ b/types/_aws_amplify_sandbox.SandboxFunctionStreamingOptions.html @@ -1 +1 @@ -SandboxFunctionStreamingOptions | Amplify Toolbox
    SandboxFunctionStreamingOptions: {
        enabled: boolean;
        logsFilters?: string[];
        logsOutFile?: string;
    }

    Type declaration

    • enabled: boolean
    • Optional logsFilters?: string[]
    • Optional logsOutFile?: string
    \ No newline at end of file +SandboxFunctionStreamingOptions | Amplify Toolbox
    SandboxFunctionStreamingOptions: {
        enabled: boolean;
        logsFilters?: string[];
        logsOutFile?: string;
    }

    Type declaration

    • enabled: boolean
    • Optional logsFilters?: string[]
    • Optional logsOutFile?: string
    \ No newline at end of file diff --git a/types/_aws_amplify_sandbox.SandboxOptions.html b/types/_aws_amplify_sandbox.SandboxOptions.html index 9d5e154604..523b4fbd4a 100644 --- a/types/_aws_amplify_sandbox.SandboxOptions.html +++ b/types/_aws_amplify_sandbox.SandboxOptions.html @@ -1 +1 @@ -SandboxOptions | Amplify Toolbox
    SandboxOptions: {
        dir?: string;
        exclude?: string[];
        format?: ClientConfigFormat;
        functionStreamingOptions?: SandboxFunctionStreamingOptions;
        identifier?: string;
        profile?: string;
        watchForChanges?: boolean;
    }

    Type declaration

    \ No newline at end of file +SandboxOptions | Amplify Toolbox
    SandboxOptions: {
        dir?: string;
        exclude?: string[];
        format?: ClientConfigFormat;
        functionStreamingOptions?: SandboxFunctionStreamingOptions;
        identifier?: string;
        profile?: string;
        watchForChanges?: boolean;
    }

    Type declaration

    \ No newline at end of file diff --git a/types/_aws_amplify_schema_generator.SQLDataSourceConfig.html b/types/_aws_amplify_schema_generator.SQLDataSourceConfig.html index ef34415ac6..bbc603090f 100644 --- a/types/_aws_amplify_schema_generator.SQLDataSourceConfig.html +++ b/types/_aws_amplify_schema_generator.SQLDataSourceConfig.html @@ -1 +1 @@ -SQLDataSourceConfig | Amplify Toolbox
    SQLDataSourceConfig: {
        database: string;
        engine: SQLEngine;
        host: string;
        password: string;
        port: number;
        username: string;
    }

    Type declaration

    • database: string
    • engine: SQLEngine
    • host: string
    • password: string
    • port: number
    • username: string
    \ No newline at end of file +SQLDataSourceConfig | Amplify Toolbox
    SQLDataSourceConfig: {
        database: string;
        engine: SQLEngine;
        host: string;
        password: string;
        port: number;
        username: string;
    }

    Type declaration

    • database: string
    • engine: SQLEngine
    • host: string
    • password: string
    • port: number
    • username: string
    \ No newline at end of file diff --git a/types/_aws_amplify_schema_generator.SQLEngine.html b/types/_aws_amplify_schema_generator.SQLEngine.html index 9d9ac6fc5c..32ea03cd4d 100644 --- a/types/_aws_amplify_schema_generator.SQLEngine.html +++ b/types/_aws_amplify_schema_generator.SQLEngine.html @@ -1 +1 @@ -SQLEngine | Amplify Toolbox
    SQLEngine: "mysql" | "postgresql"
    \ No newline at end of file +SQLEngine | Amplify Toolbox
    SQLEngine: "mysql" | "postgresql"
    \ No newline at end of file diff --git a/types/_aws_amplify_schema_generator.SchemaGeneratorConfig.html b/types/_aws_amplify_schema_generator.SchemaGeneratorConfig.html index 1b9dd7a394..bf0d76abc5 100644 --- a/types/_aws_amplify_schema_generator.SchemaGeneratorConfig.html +++ b/types/_aws_amplify_schema_generator.SchemaGeneratorConfig.html @@ -1 +1 @@ -SchemaGeneratorConfig | Amplify Toolbox
    SchemaGeneratorConfig: {
        connectionUri: {
            secretName: string;
            value: string;
        };
        out: string;
        sslCert?: {
            secretName: string;
            value: string;
        };
    }

    Type declaration

    • connectionUri: {
          secretName: string;
          value: string;
      }
      • secretName: string
      • value: string
    • out: string
    • Optional sslCert?: {
          secretName: string;
          value: string;
      }
      • secretName: string
      • value: string
    \ No newline at end of file +SchemaGeneratorConfig | Amplify Toolbox
    SchemaGeneratorConfig: {
        connectionUri: {
            secretName: string;
            value: string;
        };
        out: string;
        sslCert?: {
            secretName: string;
            value: string;
        };
    }

    Type declaration

    • connectionUri: {
          secretName: string;
          value: string;
      }
      • secretName: string
      • value: string
    • out: string
    • Optional sslCert?: {
          secretName: string;
          value: string;
      }
      • secretName: string
      • value: string
    \ No newline at end of file diff --git a/variables/_aws_amplify_auth_construct.triggerEvents.html b/variables/_aws_amplify_auth_construct.triggerEvents.html index 61c6ad1682..cb59d96794 100644 --- a/variables/_aws_amplify_auth_construct.triggerEvents.html +++ b/variables/_aws_amplify_auth_construct.triggerEvents.html @@ -1,3 +1,3 @@ triggerEvents | Amplify Toolbox
    triggerEvents: readonly ["createAuthChallenge", "customMessage", "defineAuthChallenge", "postAuthentication", "postConfirmation", "preAuthentication", "preSignUp", "preTokenGeneration", "userMigration", "verifyAuthChallengeResponse"] = ...

    Supported auth trigger events. Derived from CDK UserPoolOperation, but we can't use that to get type inference because the operation names are typed as "string" rather than a string literal

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/variables/_aws_amplify_backend_output_schemas.AwsAppsyncAuthenticationZodEnum.html b/variables/_aws_amplify_backend_output_schemas.AwsAppsyncAuthenticationZodEnum.html index 2fc8fcec97..8b60649ec7 100644 --- a/variables/_aws_amplify_backend_output_schemas.AwsAppsyncAuthenticationZodEnum.html +++ b/variables/_aws_amplify_backend_output_schemas.AwsAppsyncAuthenticationZodEnum.html @@ -1 +1 @@ -AwsAppsyncAuthenticationZodEnum | Amplify Toolbox
    AwsAppsyncAuthenticationZodEnum: ZodEnum<["API_KEY", "AWS_LAMBDA", "AWS_IAM", "OPENID_CONNECT", "AMAZON_COGNITO_USER_POOLS"]> = ...
    \ No newline at end of file +AwsAppsyncAuthenticationZodEnum | Amplify Toolbox
    AwsAppsyncAuthenticationZodEnum: ZodEnum<["API_KEY", "AWS_LAMBDA", "AWS_IAM", "OPENID_CONNECT", "AMAZON_COGNITO_USER_POOLS"]> = ...
    \ No newline at end of file diff --git a/variables/_aws_amplify_backend_output_schemas.aiConversationOutputKey.html b/variables/_aws_amplify_backend_output_schemas.aiConversationOutputKey.html index 2f3bdf141d..978ff7d0eb 100644 --- a/variables/_aws_amplify_backend_output_schemas.aiConversationOutputKey.html +++ b/variables/_aws_amplify_backend_output_schemas.aiConversationOutputKey.html @@ -1,2 +1,2 @@ aiConversationOutputKey | Amplify Toolbox
    aiConversationOutputKey: "AWS::Amplify::AI::Conversation" = 'AWS::Amplify::AI::Conversation'

    Expected key that AI conversation output is stored under

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/variables/_aws_amplify_backend_output_schemas.authOutputKey.html b/variables/_aws_amplify_backend_output_schemas.authOutputKey.html index 4355540e4d..48ed892103 100644 --- a/variables/_aws_amplify_backend_output_schemas.authOutputKey.html +++ b/variables/_aws_amplify_backend_output_schemas.authOutputKey.html @@ -1,2 +1,2 @@ authOutputKey | Amplify Toolbox
    authOutputKey: "AWS::Amplify::Auth" = 'AWS::Amplify::Auth'

    Expected key that auth output is stored under

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/variables/_aws_amplify_backend_output_schemas.backendOutputEntryStackMetadataSchema.html b/variables/_aws_amplify_backend_output_schemas.backendOutputEntryStackMetadataSchema.html index f8a2778eb0..4f4cec7431 100644 --- a/variables/_aws_amplify_backend_output_schemas.backendOutputEntryStackMetadataSchema.html +++ b/variables/_aws_amplify_backend_output_schemas.backendOutputEntryStackMetadataSchema.html @@ -1,2 +1,2 @@ backendOutputEntryStackMetadataSchema | Amplify Toolbox
    backendOutputEntryStackMetadataSchema: ZodObject<{
        stackOutputs: ZodArray<ZodString, "many">;
        version: ZodString;
    }, "strip", ZodTypeAny, {
        stackOutputs: string[];
        version: string;
    }, {
        stackOutputs: string[];
        version: string;
    }> = ...

    Data schema for storing a backend output entry using stack metadata

    -

    Type declaration

    • stackOutputs: ZodArray<ZodString, "many">
    • version: ZodString

    Type declaration

    • stackOutputs: string[]
    • version: string

    Type declaration

    • stackOutputs: string[]
    • version: string
    \ No newline at end of file +

    Type declaration

    • stackOutputs: ZodArray<ZodString, "many">
    • version: ZodString

    Type declaration

    • stackOutputs: string[]
    • version: string

    Type declaration

    • stackOutputs: string[]
    • version: string
    \ No newline at end of file diff --git a/variables/_aws_amplify_backend_output_schemas.backendOutputStackMetadataSchema.html b/variables/_aws_amplify_backend_output_schemas.backendOutputStackMetadataSchema.html index 1af09515d4..2aa279e405 100644 --- a/variables/_aws_amplify_backend_output_schemas.backendOutputStackMetadataSchema.html +++ b/variables/_aws_amplify_backend_output_schemas.backendOutputStackMetadataSchema.html @@ -1,2 +1,2 @@ backendOutputStackMetadataSchema | Amplify Toolbox
    backendOutputStackMetadataSchema: ZodRecord<ZodString, ZodObject<{
        stackOutputs: ZodArray<ZodString, "many">;
        version: ZodString;
    }, "strip", ZodTypeAny, {
        stackOutputs: string[];
        version: string;
    }, {
        stackOutputs: string[];
        version: string;
    }>> = ...

    Data schema for storing backend output using stack metadata

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/variables/_aws_amplify_backend_output_schemas.customOutputKey.html b/variables/_aws_amplify_backend_output_schemas.customOutputKey.html index 1ab0726d43..0ec5a5e7f8 100644 --- a/variables/_aws_amplify_backend_output_schemas.customOutputKey.html +++ b/variables/_aws_amplify_backend_output_schemas.customOutputKey.html @@ -1,2 +1,2 @@ customOutputKey | Amplify Toolbox
    customOutputKey: "AWS::Amplify::Custom" = 'AWS::Amplify::Custom'

    ---------- Custom exports ----------

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/variables/_aws_amplify_backend_output_schemas.functionOutputKey.html b/variables/_aws_amplify_backend_output_schemas.functionOutputKey.html index 90cbb89616..4b2e78a825 100644 --- a/variables/_aws_amplify_backend_output_schemas.functionOutputKey.html +++ b/variables/_aws_amplify_backend_output_schemas.functionOutputKey.html @@ -1,2 +1,2 @@ functionOutputKey | Amplify Toolbox
    functionOutputKey: "AWS::Amplify::Function" = 'AWS::Amplify::Function'

    Expected key that function output is stored under

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/variables/_aws_amplify_backend_output_schemas.graphqlOutputKey.html b/variables/_aws_amplify_backend_output_schemas.graphqlOutputKey.html index 4612e8d618..85edb03d80 100644 --- a/variables/_aws_amplify_backend_output_schemas.graphqlOutputKey.html +++ b/variables/_aws_amplify_backend_output_schemas.graphqlOutputKey.html @@ -1,2 +1,2 @@ graphqlOutputKey | Amplify Toolbox
    graphqlOutputKey: "AWS::Amplify::GraphQL" = 'AWS::Amplify::GraphQL'

    Expected key that graphql output is stored under

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/variables/_aws_amplify_backend_output_schemas.platformOutputKey.html b/variables/_aws_amplify_backend_output_schemas.platformOutputKey.html index 291d6ec0b5..fb7a76faba 100644 --- a/variables/_aws_amplify_backend_output_schemas.platformOutputKey.html +++ b/variables/_aws_amplify_backend_output_schemas.platformOutputKey.html @@ -1,2 +1,2 @@ platformOutputKey | Amplify Toolbox
    platformOutputKey: "AWS::Amplify::Platform" = 'AWS::Amplify::Platform'

    ---------- Platform exports ----------

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/variables/_aws_amplify_backend_output_schemas.storageOutputKey.html b/variables/_aws_amplify_backend_output_schemas.storageOutputKey.html index cf5042440d..986bf80277 100644 --- a/variables/_aws_amplify_backend_output_schemas.storageOutputKey.html +++ b/variables/_aws_amplify_backend_output_schemas.storageOutputKey.html @@ -1,2 +1,2 @@ storageOutputKey | Amplify Toolbox
    storageOutputKey: "AWS::Amplify::Storage" = 'AWS::Amplify::Storage'

    Expected key that storage output is stored under

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/variables/_aws_amplify_backend_output_schemas.unifiedBackendOutputSchema.html b/variables/_aws_amplify_backend_output_schemas.unifiedBackendOutputSchema.html index 37cd4841a0..03118246c5 100644 --- a/variables/_aws_amplify_backend_output_schemas.unifiedBackendOutputSchema.html +++ b/variables/_aws_amplify_backend_output_schemas.unifiedBackendOutputSchema.html @@ -1,3 +1,3 @@ unifiedBackendOutputSchema | Amplify Toolbox
    unifiedBackendOutputSchema: ZodObject<{
        AWS::Amplify::AI::Conversation: ZodOptional<ZodDiscriminatedUnion<"version", [ZodObject<{
            payload: ZodObject<{
                definedConversationHandlers: ZodString;
            }, "strip", ZodTypeAny, {
                definedConversationHandlers: string;
            }, {
                definedConversationHandlers: string;
            }>;
            version: ZodLiteral<"1">;
        }, "strip", ZodTypeAny, {
            payload: {
                definedConversationHandlers: string;
            };
            version: "1";
        }, {
            payload: {
                definedConversationHandlers: string;
            };
            version: "1";
        }>]>>;
        AWS::Amplify::Auth: ZodOptional<ZodDiscriminatedUnion<"version", [ZodObject<{
            payload: ZodObject<{
                allowUnauthenticatedIdentities: ZodOptional<ZodString>;
                authRegion: ZodString;
                groups: ZodOptional<ZodString>;
                identityPoolId: ZodString;
                mfaConfiguration: ZodOptional<ZodString>;
                mfaTypes: ZodOptional<ZodString>;
                oauthClientId: ZodOptional<ZodString>;
                oauthCognitoDomain: ZodOptional<ZodString>;
                oauthRedirectSignIn: ZodOptional<ZodString>;
                oauthRedirectSignOut: ZodOptional<ZodString>;
                oauthResponseType: ZodOptional<ZodString>;
                oauthScope: ZodOptional<ZodString>;
                passwordPolicyMinLength: ZodOptional<ZodString>;
                passwordPolicyRequirements: ZodOptional<ZodString>;
                signupAttributes: ZodOptional<ZodString>;
                socialProviders: ZodOptional<ZodString>;
                userPoolId: ZodString;
                usernameAttributes: ZodOptional<ZodString>;
                verificationMechanisms: ZodOptional<ZodString>;
                webClientId: ZodString;
            }, "strip", ZodTypeAny, {
                allowUnauthenticatedIdentities?: string;
                authRegion: string;
                groups?: string;
                identityPoolId: string;
                mfaConfiguration?: string;
                mfaTypes?: string;
                oauthClientId?: string;
                oauthCognitoDomain?: string;
                oauthRedirectSignIn?: string;
                oauthRedirectSignOut?: string;
                oauthResponseType?: string;
                oauthScope?: string;
                passwordPolicyMinLength?: string;
                passwordPolicyRequirements?: string;
                signupAttributes?: string;
                socialProviders?: string;
                userPoolId: string;
                usernameAttributes?: string;
                verificationMechanisms?: string;
                webClientId: string;
            }, {
                allowUnauthenticatedIdentities?: string;
                authRegion: string;
                groups?: string;
                identityPoolId: string;
                mfaConfiguration?: string;
                mfaTypes?: string;
                oauthClientId?: string;
                oauthCognitoDomain?: string;
                oauthRedirectSignIn?: string;
                oauthRedirectSignOut?: string;
                oauthResponseType?: string;
                oauthScope?: string;
                passwordPolicyMinLength?: string;
                passwordPolicyRequirements?: string;
                signupAttributes?: string;
                socialProviders?: string;
                userPoolId: string;
                usernameAttributes?: string;
                verificationMechanisms?: string;
                webClientId: string;
            }>;
            version: ZodLiteral<"1">;
        }, "strip", ZodTypeAny, {
            payload: {
                allowUnauthenticatedIdentities?: string;
                authRegion: string;
                groups?: string;
                identityPoolId: string;
                mfaConfiguration?: string;
                mfaTypes?: string;
                oauthClientId?: string;
                oauthCognitoDomain?: string;
                oauthRedirectSignIn?: string;
                oauthRedirectSignOut?: string;
                oauthResponseType?: string;
                oauthScope?: string;
                passwordPolicyMinLength?: string;
                passwordPolicyRequirements?: string;
                signupAttributes?: string;
                socialProviders?: string;
                userPoolId: string;
                usernameAttributes?: string;
                verificationMechanisms?: string;
                webClientId: string;
            };
            version: "1";
        }, {
            payload: {
                allowUnauthenticatedIdentities?: string;
                authRegion: string;
                groups?: string;
                identityPoolId: string;
                mfaConfiguration?: string;
                mfaTypes?: string;
                oauthClientId?: string;
                oauthCognitoDomain?: string;
                oauthRedirectSignIn?: string;
                oauthRedirectSignOut?: string;
                oauthResponseType?: string;
                oauthScope?: string;
                passwordPolicyMinLength?: string;
                passwordPolicyRequirements?: string;
                signupAttributes?: string;
                socialProviders?: string;
                userPoolId: string;
                usernameAttributes?: string;
                verificationMechanisms?: string;
                webClientId: string;
            };
            version: "1";
        }>]>>;
        AWS::Amplify::Custom: ZodOptional<ZodDiscriminatedUnion<"version", [ZodObject<{
            payload: ZodObject<{
                customOutputs: ZodString;
            }, "strip", ZodTypeAny, {
                customOutputs: string;
            }, {
                customOutputs: string;
            }>;
            version: ZodLiteral<"1">;
        }, "strip", ZodTypeAny, {
            payload: {
                customOutputs: string;
            };
            version: "1";
        }, {
            payload: {
                customOutputs: string;
            };
            version: "1";
        }>]>>;
        AWS::Amplify::Function: ZodOptional<ZodDiscriminatedUnion<"version", [ZodObject<{
            payload: ZodObject<{
                definedFunctions: ZodString;
            }, "strip", ZodTypeAny, {
                definedFunctions: string;
            }, {
                definedFunctions: string;
            }>;
            version: ZodLiteral<"1">;
        }, "strip", ZodTypeAny, {
            payload: {
                definedFunctions: string;
            };
            version: "1";
        }, {
            payload: {
                definedFunctions: string;
            };
            version: "1";
        }>]>>;
        AWS::Amplify::GraphQL: ZodOptional<ZodDiscriminatedUnion<"version", [ZodObject<{
            payload: ZodObject<{
                amplifyApiModelSchemaS3Uri: ZodString;
                awsAppsyncAdditionalAuthenticationTypes: ZodOptional<ZodString>;
                awsAppsyncApiEndpoint: ZodString;
                awsAppsyncApiId: ZodString;
                awsAppsyncApiKey: ZodOptional<ZodString>;
                awsAppsyncAuthenticationType: ZodEnum<[(...), (...), (...), (...), (...)]>;
                awsAppsyncConflictResolutionMode: ZodOptional<ZodString>;
                awsAppsyncRegion: ZodString;
            }, "strip", ZodTypeAny, {
                amplifyApiModelSchemaS3Uri: string;
                awsAppsyncAdditionalAuthenticationTypes?: string;
                awsAppsyncApiEndpoint: string;
                awsAppsyncApiId: string;
                awsAppsyncApiKey?: string;
                awsAppsyncAuthenticationType: "API_KEY" | "AWS_LAMBDA" | "AWS_IAM" | "OPENID_CONNECT" | "AMAZON_COGNITO_USER_POOLS";
                awsAppsyncConflictResolutionMode?: string;
                awsAppsyncRegion: string;
            }, {
                amplifyApiModelSchemaS3Uri: string;
                awsAppsyncAdditionalAuthenticationTypes?: string;
                awsAppsyncApiEndpoint: string;
                awsAppsyncApiId: string;
                awsAppsyncApiKey?: string;
                awsAppsyncAuthenticationType: "API_KEY" | "AWS_LAMBDA" | "AWS_IAM" | "OPENID_CONNECT" | "AMAZON_COGNITO_USER_POOLS";
                awsAppsyncConflictResolutionMode?: string;
                awsAppsyncRegion: string;
            }>;
            version: ZodLiteral<"1">;
        }, "strip", ZodTypeAny, {
            payload: {
                amplifyApiModelSchemaS3Uri: string;
                awsAppsyncAdditionalAuthenticationTypes?: string;
                awsAppsyncApiEndpoint: string;
                awsAppsyncApiId: string;
                awsAppsyncApiKey?: string;
                awsAppsyncAuthenticationType: "API_KEY" | "AWS_LAMBDA" | "AWS_IAM" | "OPENID_CONNECT" | "AMAZON_COGNITO_USER_POOLS";
                awsAppsyncConflictResolutionMode?: string;
                awsAppsyncRegion: string;
            };
            version: "1";
        }, {
            payload: {
                amplifyApiModelSchemaS3Uri: string;
                awsAppsyncAdditionalAuthenticationTypes?: string;
                awsAppsyncApiEndpoint: string;
                awsAppsyncApiId: string;
                awsAppsyncApiKey?: string;
                awsAppsyncAuthenticationType: "API_KEY" | "AWS_LAMBDA" | "AWS_IAM" | "OPENID_CONNECT" | "AMAZON_COGNITO_USER_POOLS";
                awsAppsyncConflictResolutionMode?: string;
                awsAppsyncRegion: string;
            };
            version: "1";
        }>]>>;
        AWS::Amplify::Platform: ZodOptional<ZodDiscriminatedUnion<"version", [ZodObject<{
            payload: ZodObject<{
                deploymentType: ZodString;
                region: ZodString;
            }, "strip", ZodTypeAny, {
                deploymentType: string;
                region: string;
            }, {
                deploymentType: string;
                region: string;
            }>;
            version: ZodLiteral<"1">;
        }, "strip", ZodTypeAny, {
            payload: {
                deploymentType: string;
                region: string;
            };
            version: "1";
        }, {
            payload: {
                deploymentType: string;
                region: string;
            };
            version: "1";
        }>]>>;
        AWS::Amplify::Storage: ZodOptional<ZodDiscriminatedUnion<"version", [ZodObject<{
            payload: ZodObject<{
                bucketName: ZodString;
                buckets: ZodOptional<ZodString>;
                storageRegion: ZodString;
            }, "strip", ZodTypeAny, {
                bucketName: string;
                buckets?: string;
                storageRegion: string;
            }, {
                bucketName: string;
                buckets?: string;
                storageRegion: string;
            }>;
            version: ZodLiteral<"1">;
        }, "strip", ZodTypeAny, {
            payload: {
                bucketName: string;
                buckets?: string;
                storageRegion: string;
            };
            version: "1";
        }, {
            payload: {
                bucketName: string;
                buckets?: string;
                storageRegion: string;
            };
            version: "1";
        }>]>>;
    }, "strip", ZodTypeAny, {
        AWS::Amplify::AI::Conversation?: {
            payload: {
                definedConversationHandlers: string;
            };
            version: "1";
        };
        AWS::Amplify::Auth?: {
            payload: {
                allowUnauthenticatedIdentities?: string;
                authRegion: string;
                groups?: string;
                identityPoolId: string;
                mfaConfiguration?: string;
                mfaTypes?: string;
                oauthClientId?: string;
                oauthCognitoDomain?: string;
                oauthRedirectSignIn?: string;
                oauthRedirectSignOut?: string;
                oauthResponseType?: string;
                oauthScope?: string;
                passwordPolicyMinLength?: string;
                passwordPolicyRequirements?: string;
                signupAttributes?: string;
                socialProviders?: string;
                userPoolId: string;
                usernameAttributes?: string;
                verificationMechanisms?: string;
                webClientId: string;
            };
            version: "1";
        };
        AWS::Amplify::Custom?: {
            payload: {
                customOutputs: string;
            };
            version: "1";
        };
        AWS::Amplify::Function?: {
            payload: {
                definedFunctions: string;
            };
            version: "1";
        };
        AWS::Amplify::GraphQL?: {
            payload: {
                amplifyApiModelSchemaS3Uri: string;
                awsAppsyncAdditionalAuthenticationTypes?: string;
                awsAppsyncApiEndpoint: string;
                awsAppsyncApiId: string;
                awsAppsyncApiKey?: string;
                awsAppsyncAuthenticationType: "API_KEY" | "AWS_LAMBDA" | "AWS_IAM" | "OPENID_CONNECT" | "AMAZON_COGNITO_USER_POOLS";
                awsAppsyncConflictResolutionMode?: string;
                awsAppsyncRegion: string;
            };
            version: "1";
        };
        AWS::Amplify::Platform?: {
            payload: {
                deploymentType: string;
                region: string;
            };
            version: "1";
        };
        AWS::Amplify::Storage?: {
            payload: {
                bucketName: string;
                buckets?: string;
                storageRegion: string;
            };
            version: "1";
        };
    }, {
        AWS::Amplify::AI::Conversation?: {
            payload: {
                definedConversationHandlers: string;
            };
            version: "1";
        };
        AWS::Amplify::Auth?: {
            payload: {
                allowUnauthenticatedIdentities?: string;
                authRegion: string;
                groups?: string;
                identityPoolId: string;
                mfaConfiguration?: string;
                mfaTypes?: string;
                oauthClientId?: string;
                oauthCognitoDomain?: string;
                oauthRedirectSignIn?: string;
                oauthRedirectSignOut?: string;
                oauthResponseType?: string;
                oauthScope?: string;
                passwordPolicyMinLength?: string;
                passwordPolicyRequirements?: string;
                signupAttributes?: string;
                socialProviders?: string;
                userPoolId: string;
                usernameAttributes?: string;
                verificationMechanisms?: string;
                webClientId: string;
            };
            version: "1";
        };
        AWS::Amplify::Custom?: {
            payload: {
                customOutputs: string;
            };
            version: "1";
        };
        AWS::Amplify::Function?: {
            payload: {
                definedFunctions: string;
            };
            version: "1";
        };
        AWS::Amplify::GraphQL?: {
            payload: {
                amplifyApiModelSchemaS3Uri: string;
                awsAppsyncAdditionalAuthenticationTypes?: string;
                awsAppsyncApiEndpoint: string;
                awsAppsyncApiId: string;
                awsAppsyncApiKey?: string;
                awsAppsyncAuthenticationType: "API_KEY" | "AWS_LAMBDA" | "AWS_IAM" | "OPENID_CONNECT" | "AMAZON_COGNITO_USER_POOLS";
                awsAppsyncConflictResolutionMode?: string;
                awsAppsyncRegion: string;
            };
            version: "1";
        };
        AWS::Amplify::Platform?: {
            payload: {
                deploymentType: string;
                region: string;
            };
            version: "1";
        };
        AWS::Amplify::Storage?: {
            payload: {
                bucketName: string;
                buckets?: string;
                storageRegion: string;
            };
            version: "1";
        };
    }> = ...

    Defines the unified expected shape of Amplify backend output. As new constructs are added that need to contribute backend output, entries should be added here so that client config generation is aware of these outputs

    -

    Type declaration

    • AWS::Amplify::AI::Conversation: ZodOptional<ZodDiscriminatedUnion<"version", [ZodObject<{
          payload: ZodObject<{
              definedConversationHandlers: ZodString;
          }, "strip", ZodTypeAny, {
              definedConversationHandlers: string;
          }, {
              definedConversationHandlers: string;
          }>;
          version: ZodLiteral<"1">;
      }, "strip", ZodTypeAny, {
          payload: {
              definedConversationHandlers: string;
          };
          version: "1";
      }, {
          payload: {
              definedConversationHandlers: string;
          };
          version: "1";
      }>]>>
    • AWS::Amplify::Auth: ZodOptional<ZodDiscriminatedUnion<"version", [ZodObject<{
          payload: ZodObject<{
              allowUnauthenticatedIdentities: ZodOptional<ZodString>;
              authRegion: ZodString;
              groups: ZodOptional<ZodString>;
              identityPoolId: ZodString;
              mfaConfiguration: ZodOptional<ZodString>;
              mfaTypes: ZodOptional<ZodString>;
              oauthClientId: ZodOptional<ZodString>;
              oauthCognitoDomain: ZodOptional<ZodString>;
              oauthRedirectSignIn: ZodOptional<ZodString>;
              oauthRedirectSignOut: ZodOptional<ZodString>;
              oauthResponseType: ZodOptional<ZodString>;
              oauthScope: ZodOptional<ZodString>;
              passwordPolicyMinLength: ZodOptional<ZodString>;
              passwordPolicyRequirements: ZodOptional<ZodString>;
              signupAttributes: ZodOptional<ZodString>;
              socialProviders: ZodOptional<ZodString>;
              userPoolId: ZodString;
              usernameAttributes: ZodOptional<ZodString>;
              verificationMechanisms: ZodOptional<ZodString>;
              webClientId: ZodString;
          }, "strip", ZodTypeAny, {
              allowUnauthenticatedIdentities?: string;
              authRegion: string;
              groups?: string;
              identityPoolId: string;
              mfaConfiguration?: string;
              mfaTypes?: string;
              oauthClientId?: string;
              oauthCognitoDomain?: string;
              oauthRedirectSignIn?: string;
              oauthRedirectSignOut?: string;
              oauthResponseType?: string;
              oauthScope?: string;
              passwordPolicyMinLength?: string;
              passwordPolicyRequirements?: string;
              signupAttributes?: string;
              socialProviders?: string;
              userPoolId: string;
              usernameAttributes?: string;
              verificationMechanisms?: string;
              webClientId: string;
          }, {
              allowUnauthenticatedIdentities?: string;
              authRegion: string;
              groups?: string;
              identityPoolId: string;
              mfaConfiguration?: string;
              mfaTypes?: string;
              oauthClientId?: string;
              oauthCognitoDomain?: string;
              oauthRedirectSignIn?: string;
              oauthRedirectSignOut?: string;
              oauthResponseType?: string;
              oauthScope?: string;
              passwordPolicyMinLength?: string;
              passwordPolicyRequirements?: string;
              signupAttributes?: string;
              socialProviders?: string;
              userPoolId: string;
              usernameAttributes?: string;
              verificationMechanisms?: string;
              webClientId: string;
          }>;
          version: ZodLiteral<"1">;
      }, "strip", ZodTypeAny, {
          payload: {
              allowUnauthenticatedIdentities?: string;
              authRegion: string;
              groups?: string;
              identityPoolId: string;
              mfaConfiguration?: string;
              mfaTypes?: string;
              oauthClientId?: string;
              oauthCognitoDomain?: string;
              oauthRedirectSignIn?: string;
              oauthRedirectSignOut?: string;
              oauthResponseType?: string;
              oauthScope?: string;
              passwordPolicyMinLength?: string;
              passwordPolicyRequirements?: string;
              signupAttributes?: string;
              socialProviders?: string;
              userPoolId: string;
              usernameAttributes?: string;
              verificationMechanisms?: string;
              webClientId: string;
          };
          version: "1";
      }, {
          payload: {
              allowUnauthenticatedIdentities?: string;
              authRegion: string;
              groups?: string;
              identityPoolId: string;
              mfaConfiguration?: string;
              mfaTypes?: string;
              oauthClientId?: string;
              oauthCognitoDomain?: string;
              oauthRedirectSignIn?: string;
              oauthRedirectSignOut?: string;
              oauthResponseType?: string;
              oauthScope?: string;
              passwordPolicyMinLength?: string;
              passwordPolicyRequirements?: string;
              signupAttributes?: string;
              socialProviders?: string;
              userPoolId: string;
              usernameAttributes?: string;
              verificationMechanisms?: string;
              webClientId: string;
          };
          version: "1";
      }>]>>
    • AWS::Amplify::Custom: ZodOptional<ZodDiscriminatedUnion<"version", [ZodObject<{
          payload: ZodObject<{
              customOutputs: ZodString;
          }, "strip", ZodTypeAny, {
              customOutputs: string;
          }, {
              customOutputs: string;
          }>;
          version: ZodLiteral<"1">;
      }, "strip", ZodTypeAny, {
          payload: {
              customOutputs: string;
          };
          version: "1";
      }, {
          payload: {
              customOutputs: string;
          };
          version: "1";
      }>]>>
    • AWS::Amplify::Function: ZodOptional<ZodDiscriminatedUnion<"version", [ZodObject<{
          payload: ZodObject<{
              definedFunctions: ZodString;
          }, "strip", ZodTypeAny, {
              definedFunctions: string;
          }, {
              definedFunctions: string;
          }>;
          version: ZodLiteral<"1">;
      }, "strip", ZodTypeAny, {
          payload: {
              definedFunctions: string;
          };
          version: "1";
      }, {
          payload: {
              definedFunctions: string;
          };
          version: "1";
      }>]>>
    • AWS::Amplify::GraphQL: ZodOptional<ZodDiscriminatedUnion<"version", [ZodObject<{
          payload: ZodObject<{
              amplifyApiModelSchemaS3Uri: ZodString;
              awsAppsyncAdditionalAuthenticationTypes: ZodOptional<ZodString>;
              awsAppsyncApiEndpoint: ZodString;
              awsAppsyncApiId: ZodString;
              awsAppsyncApiKey: ZodOptional<ZodString>;
              awsAppsyncAuthenticationType: ZodEnum<[(...), (...), (...), (...), (...)]>;
              awsAppsyncConflictResolutionMode: ZodOptional<ZodString>;
              awsAppsyncRegion: ZodString;
          }, "strip", ZodTypeAny, {
              amplifyApiModelSchemaS3Uri: string;
              awsAppsyncAdditionalAuthenticationTypes?: string;
              awsAppsyncApiEndpoint: string;
              awsAppsyncApiId: string;
              awsAppsyncApiKey?: string;
              awsAppsyncAuthenticationType: "API_KEY" | "AWS_LAMBDA" | "AWS_IAM" | "OPENID_CONNECT" | "AMAZON_COGNITO_USER_POOLS";
              awsAppsyncConflictResolutionMode?: string;
              awsAppsyncRegion: string;
          }, {
              amplifyApiModelSchemaS3Uri: string;
              awsAppsyncAdditionalAuthenticationTypes?: string;
              awsAppsyncApiEndpoint: string;
              awsAppsyncApiId: string;
              awsAppsyncApiKey?: string;
              awsAppsyncAuthenticationType: "API_KEY" | "AWS_LAMBDA" | "AWS_IAM" | "OPENID_CONNECT" | "AMAZON_COGNITO_USER_POOLS";
              awsAppsyncConflictResolutionMode?: string;
              awsAppsyncRegion: string;
          }>;
          version: ZodLiteral<"1">;
      }, "strip", ZodTypeAny, {
          payload: {
              amplifyApiModelSchemaS3Uri: string;
              awsAppsyncAdditionalAuthenticationTypes?: string;
              awsAppsyncApiEndpoint: string;
              awsAppsyncApiId: string;
              awsAppsyncApiKey?: string;
              awsAppsyncAuthenticationType: "API_KEY" | "AWS_LAMBDA" | "AWS_IAM" | "OPENID_CONNECT" | "AMAZON_COGNITO_USER_POOLS";
              awsAppsyncConflictResolutionMode?: string;
              awsAppsyncRegion: string;
          };
          version: "1";
      }, {
          payload: {
              amplifyApiModelSchemaS3Uri: string;
              awsAppsyncAdditionalAuthenticationTypes?: string;
              awsAppsyncApiEndpoint: string;
              awsAppsyncApiId: string;
              awsAppsyncApiKey?: string;
              awsAppsyncAuthenticationType: "API_KEY" | "AWS_LAMBDA" | "AWS_IAM" | "OPENID_CONNECT" | "AMAZON_COGNITO_USER_POOLS";
              awsAppsyncConflictResolutionMode?: string;
              awsAppsyncRegion: string;
          };
          version: "1";
      }>]>>
    • AWS::Amplify::Platform: ZodOptional<ZodDiscriminatedUnion<"version", [ZodObject<{
          payload: ZodObject<{
              deploymentType: ZodString;
              region: ZodString;
          }, "strip", ZodTypeAny, {
              deploymentType: string;
              region: string;
          }, {
              deploymentType: string;
              region: string;
          }>;
          version: ZodLiteral<"1">;
      }, "strip", ZodTypeAny, {
          payload: {
              deploymentType: string;
              region: string;
          };
          version: "1";
      }, {
          payload: {
              deploymentType: string;
              region: string;
          };
          version: "1";
      }>]>>
    • AWS::Amplify::Storage: ZodOptional<ZodDiscriminatedUnion<"version", [ZodObject<{
          payload: ZodObject<{
              bucketName: ZodString;
              buckets: ZodOptional<ZodString>;
              storageRegion: ZodString;
          }, "strip", ZodTypeAny, {
              bucketName: string;
              buckets?: string;
              storageRegion: string;
          }, {
              bucketName: string;
              buckets?: string;
              storageRegion: string;
          }>;
          version: ZodLiteral<"1">;
      }, "strip", ZodTypeAny, {
          payload: {
              bucketName: string;
              buckets?: string;
              storageRegion: string;
          };
          version: "1";
      }, {
          payload: {
              bucketName: string;
              buckets?: string;
              storageRegion: string;
          };
          version: "1";
      }>]>>

    Type declaration

    • Optional AWS::Amplify::AI::Conversation?: {
          payload: {
              definedConversationHandlers: string;
          };
          version: "1";
      }
      • payload: {
            definedConversationHandlers: string;
        }
        • definedConversationHandlers: string
      • version: "1"
    • Optional AWS::Amplify::Auth?: {
          payload: {
              allowUnauthenticatedIdentities?: string;
              authRegion: string;
              groups?: string;
              identityPoolId: string;
              mfaConfiguration?: string;
              mfaTypes?: string;
              oauthClientId?: string;
              oauthCognitoDomain?: string;
              oauthRedirectSignIn?: string;
              oauthRedirectSignOut?: string;
              oauthResponseType?: string;
              oauthScope?: string;
              passwordPolicyMinLength?: string;
              passwordPolicyRequirements?: string;
              signupAttributes?: string;
              socialProviders?: string;
              userPoolId: string;
              usernameAttributes?: string;
              verificationMechanisms?: string;
              webClientId: string;
          };
          version: "1";
      }
      • payload: {
            allowUnauthenticatedIdentities?: string;
            authRegion: string;
            groups?: string;
            identityPoolId: string;
            mfaConfiguration?: string;
            mfaTypes?: string;
            oauthClientId?: string;
            oauthCognitoDomain?: string;
            oauthRedirectSignIn?: string;
            oauthRedirectSignOut?: string;
            oauthResponseType?: string;
            oauthScope?: string;
            passwordPolicyMinLength?: string;
            passwordPolicyRequirements?: string;
            signupAttributes?: string;
            socialProviders?: string;
            userPoolId: string;
            usernameAttributes?: string;
            verificationMechanisms?: string;
            webClientId: string;
        }
        • Optional allowUnauthenticatedIdentities?: string
        • authRegion: string
        • Optional groups?: string
        • identityPoolId: string
        • Optional mfaConfiguration?: string
        • Optional mfaTypes?: string
        • Optional oauthClientId?: string
        • Optional oauthCognitoDomain?: string
        • Optional oauthRedirectSignIn?: string
        • Optional oauthRedirectSignOut?: string
        • Optional oauthResponseType?: string
        • Optional oauthScope?: string
        • Optional passwordPolicyMinLength?: string
        • Optional passwordPolicyRequirements?: string
        • Optional signupAttributes?: string
        • Optional socialProviders?: string
        • userPoolId: string
        • Optional usernameAttributes?: string
        • Optional verificationMechanisms?: string
        • webClientId: string
      • version: "1"
    • Optional AWS::Amplify::Custom?: {
          payload: {
              customOutputs: string;
          };
          version: "1";
      }
      • payload: {
            customOutputs: string;
        }
        • customOutputs: string
      • version: "1"
    • Optional AWS::Amplify::Function?: {
          payload: {
              definedFunctions: string;
          };
          version: "1";
      }
      • payload: {
            definedFunctions: string;
        }
        • definedFunctions: string
      • version: "1"
    • Optional AWS::Amplify::GraphQL?: {
          payload: {
              amplifyApiModelSchemaS3Uri: string;
              awsAppsyncAdditionalAuthenticationTypes?: string;
              awsAppsyncApiEndpoint: string;
              awsAppsyncApiId: string;
              awsAppsyncApiKey?: string;
              awsAppsyncAuthenticationType: "API_KEY" | "AWS_LAMBDA" | "AWS_IAM" | "OPENID_CONNECT" | "AMAZON_COGNITO_USER_POOLS";
              awsAppsyncConflictResolutionMode?: string;
              awsAppsyncRegion: string;
          };
          version: "1";
      }
      • payload: {
            amplifyApiModelSchemaS3Uri: string;
            awsAppsyncAdditionalAuthenticationTypes?: string;
            awsAppsyncApiEndpoint: string;
            awsAppsyncApiId: string;
            awsAppsyncApiKey?: string;
            awsAppsyncAuthenticationType: "API_KEY" | "AWS_LAMBDA" | "AWS_IAM" | "OPENID_CONNECT" | "AMAZON_COGNITO_USER_POOLS";
            awsAppsyncConflictResolutionMode?: string;
            awsAppsyncRegion: string;
        }
        • amplifyApiModelSchemaS3Uri: string
        • Optional awsAppsyncAdditionalAuthenticationTypes?: string
        • awsAppsyncApiEndpoint: string
        • awsAppsyncApiId: string
        • Optional awsAppsyncApiKey?: string
        • awsAppsyncAuthenticationType: "API_KEY" | "AWS_LAMBDA" | "AWS_IAM" | "OPENID_CONNECT" | "AMAZON_COGNITO_USER_POOLS"
        • Optional awsAppsyncConflictResolutionMode?: string
        • awsAppsyncRegion: string
      • version: "1"
    • Optional AWS::Amplify::Platform?: {
          payload: {
              deploymentType: string;
              region: string;
          };
          version: "1";
      }
      • payload: {
            deploymentType: string;
            region: string;
        }
        • deploymentType: string
        • region: string
      • version: "1"
    • Optional AWS::Amplify::Storage?: {
          payload: {
              bucketName: string;
              buckets?: string;
              storageRegion: string;
          };
          version: "1";
      }
      • payload: {
            bucketName: string;
            buckets?: string;
            storageRegion: string;
        }
        • bucketName: string
        • Optional buckets?: string
        • storageRegion: string
      • version: "1"

    Type declaration

    • Optional AWS::Amplify::AI::Conversation?: {
          payload: {
              definedConversationHandlers: string;
          };
          version: "1";
      }
      • payload: {
            definedConversationHandlers: string;
        }
        • definedConversationHandlers: string
      • version: "1"
    • Optional AWS::Amplify::Auth?: {
          payload: {
              allowUnauthenticatedIdentities?: string;
              authRegion: string;
              groups?: string;
              identityPoolId: string;
              mfaConfiguration?: string;
              mfaTypes?: string;
              oauthClientId?: string;
              oauthCognitoDomain?: string;
              oauthRedirectSignIn?: string;
              oauthRedirectSignOut?: string;
              oauthResponseType?: string;
              oauthScope?: string;
              passwordPolicyMinLength?: string;
              passwordPolicyRequirements?: string;
              signupAttributes?: string;
              socialProviders?: string;
              userPoolId: string;
              usernameAttributes?: string;
              verificationMechanisms?: string;
              webClientId: string;
          };
          version: "1";
      }
      • payload: {
            allowUnauthenticatedIdentities?: string;
            authRegion: string;
            groups?: string;
            identityPoolId: string;
            mfaConfiguration?: string;
            mfaTypes?: string;
            oauthClientId?: string;
            oauthCognitoDomain?: string;
            oauthRedirectSignIn?: string;
            oauthRedirectSignOut?: string;
            oauthResponseType?: string;
            oauthScope?: string;
            passwordPolicyMinLength?: string;
            passwordPolicyRequirements?: string;
            signupAttributes?: string;
            socialProviders?: string;
            userPoolId: string;
            usernameAttributes?: string;
            verificationMechanisms?: string;
            webClientId: string;
        }
        • Optional allowUnauthenticatedIdentities?: string
        • authRegion: string
        • Optional groups?: string
        • identityPoolId: string
        • Optional mfaConfiguration?: string
        • Optional mfaTypes?: string
        • Optional oauthClientId?: string
        • Optional oauthCognitoDomain?: string
        • Optional oauthRedirectSignIn?: string
        • Optional oauthRedirectSignOut?: string
        • Optional oauthResponseType?: string
        • Optional oauthScope?: string
        • Optional passwordPolicyMinLength?: string
        • Optional passwordPolicyRequirements?: string
        • Optional signupAttributes?: string
        • Optional socialProviders?: string
        • userPoolId: string
        • Optional usernameAttributes?: string
        • Optional verificationMechanisms?: string
        • webClientId: string
      • version: "1"
    • Optional AWS::Amplify::Custom?: {
          payload: {
              customOutputs: string;
          };
          version: "1";
      }
      • payload: {
            customOutputs: string;
        }
        • customOutputs: string
      • version: "1"
    • Optional AWS::Amplify::Function?: {
          payload: {
              definedFunctions: string;
          };
          version: "1";
      }
      • payload: {
            definedFunctions: string;
        }
        • definedFunctions: string
      • version: "1"
    • Optional AWS::Amplify::GraphQL?: {
          payload: {
              amplifyApiModelSchemaS3Uri: string;
              awsAppsyncAdditionalAuthenticationTypes?: string;
              awsAppsyncApiEndpoint: string;
              awsAppsyncApiId: string;
              awsAppsyncApiKey?: string;
              awsAppsyncAuthenticationType: "API_KEY" | "AWS_LAMBDA" | "AWS_IAM" | "OPENID_CONNECT" | "AMAZON_COGNITO_USER_POOLS";
              awsAppsyncConflictResolutionMode?: string;
              awsAppsyncRegion: string;
          };
          version: "1";
      }
      • payload: {
            amplifyApiModelSchemaS3Uri: string;
            awsAppsyncAdditionalAuthenticationTypes?: string;
            awsAppsyncApiEndpoint: string;
            awsAppsyncApiId: string;
            awsAppsyncApiKey?: string;
            awsAppsyncAuthenticationType: "API_KEY" | "AWS_LAMBDA" | "AWS_IAM" | "OPENID_CONNECT" | "AMAZON_COGNITO_USER_POOLS";
            awsAppsyncConflictResolutionMode?: string;
            awsAppsyncRegion: string;
        }
        • amplifyApiModelSchemaS3Uri: string
        • Optional awsAppsyncAdditionalAuthenticationTypes?: string
        • awsAppsyncApiEndpoint: string
        • awsAppsyncApiId: string
        • Optional awsAppsyncApiKey?: string
        • awsAppsyncAuthenticationType: "API_KEY" | "AWS_LAMBDA" | "AWS_IAM" | "OPENID_CONNECT" | "AMAZON_COGNITO_USER_POOLS"
        • Optional awsAppsyncConflictResolutionMode?: string
        • awsAppsyncRegion: string
      • version: "1"
    • Optional AWS::Amplify::Platform?: {
          payload: {
              deploymentType: string;
              region: string;
          };
          version: "1";
      }
      • payload: {
            deploymentType: string;
            region: string;
        }
        • deploymentType: string
        • region: string
      • version: "1"
    • Optional AWS::Amplify::Storage?: {
          payload: {
              bucketName: string;
              buckets?: string;
              storageRegion: string;
          };
          version: "1";
      }
      • payload: {
            bucketName: string;
            buckets?: string;
            storageRegion: string;
        }
        • bucketName: string
        • Optional buckets?: string
        • storageRegion: string
      • version: "1"
    \ No newline at end of file +

    Type declaration

    • AWS::Amplify::AI::Conversation: ZodOptional<ZodDiscriminatedUnion<"version", [ZodObject<{
          payload: ZodObject<{
              definedConversationHandlers: ZodString;
          }, "strip", ZodTypeAny, {
              definedConversationHandlers: string;
          }, {
              definedConversationHandlers: string;
          }>;
          version: ZodLiteral<"1">;
      }, "strip", ZodTypeAny, {
          payload: {
              definedConversationHandlers: string;
          };
          version: "1";
      }, {
          payload: {
              definedConversationHandlers: string;
          };
          version: "1";
      }>]>>
    • AWS::Amplify::Auth: ZodOptional<ZodDiscriminatedUnion<"version", [ZodObject<{
          payload: ZodObject<{
              allowUnauthenticatedIdentities: ZodOptional<ZodString>;
              authRegion: ZodString;
              groups: ZodOptional<ZodString>;
              identityPoolId: ZodString;
              mfaConfiguration: ZodOptional<ZodString>;
              mfaTypes: ZodOptional<ZodString>;
              oauthClientId: ZodOptional<ZodString>;
              oauthCognitoDomain: ZodOptional<ZodString>;
              oauthRedirectSignIn: ZodOptional<ZodString>;
              oauthRedirectSignOut: ZodOptional<ZodString>;
              oauthResponseType: ZodOptional<ZodString>;
              oauthScope: ZodOptional<ZodString>;
              passwordPolicyMinLength: ZodOptional<ZodString>;
              passwordPolicyRequirements: ZodOptional<ZodString>;
              signupAttributes: ZodOptional<ZodString>;
              socialProviders: ZodOptional<ZodString>;
              userPoolId: ZodString;
              usernameAttributes: ZodOptional<ZodString>;
              verificationMechanisms: ZodOptional<ZodString>;
              webClientId: ZodString;
          }, "strip", ZodTypeAny, {
              allowUnauthenticatedIdentities?: string;
              authRegion: string;
              groups?: string;
              identityPoolId: string;
              mfaConfiguration?: string;
              mfaTypes?: string;
              oauthClientId?: string;
              oauthCognitoDomain?: string;
              oauthRedirectSignIn?: string;
              oauthRedirectSignOut?: string;
              oauthResponseType?: string;
              oauthScope?: string;
              passwordPolicyMinLength?: string;
              passwordPolicyRequirements?: string;
              signupAttributes?: string;
              socialProviders?: string;
              userPoolId: string;
              usernameAttributes?: string;
              verificationMechanisms?: string;
              webClientId: string;
          }, {
              allowUnauthenticatedIdentities?: string;
              authRegion: string;
              groups?: string;
              identityPoolId: string;
              mfaConfiguration?: string;
              mfaTypes?: string;
              oauthClientId?: string;
              oauthCognitoDomain?: string;
              oauthRedirectSignIn?: string;
              oauthRedirectSignOut?: string;
              oauthResponseType?: string;
              oauthScope?: string;
              passwordPolicyMinLength?: string;
              passwordPolicyRequirements?: string;
              signupAttributes?: string;
              socialProviders?: string;
              userPoolId: string;
              usernameAttributes?: string;
              verificationMechanisms?: string;
              webClientId: string;
          }>;
          version: ZodLiteral<"1">;
      }, "strip", ZodTypeAny, {
          payload: {
              allowUnauthenticatedIdentities?: string;
              authRegion: string;
              groups?: string;
              identityPoolId: string;
              mfaConfiguration?: string;
              mfaTypes?: string;
              oauthClientId?: string;
              oauthCognitoDomain?: string;
              oauthRedirectSignIn?: string;
              oauthRedirectSignOut?: string;
              oauthResponseType?: string;
              oauthScope?: string;
              passwordPolicyMinLength?: string;
              passwordPolicyRequirements?: string;
              signupAttributes?: string;
              socialProviders?: string;
              userPoolId: string;
              usernameAttributes?: string;
              verificationMechanisms?: string;
              webClientId: string;
          };
          version: "1";
      }, {
          payload: {
              allowUnauthenticatedIdentities?: string;
              authRegion: string;
              groups?: string;
              identityPoolId: string;
              mfaConfiguration?: string;
              mfaTypes?: string;
              oauthClientId?: string;
              oauthCognitoDomain?: string;
              oauthRedirectSignIn?: string;
              oauthRedirectSignOut?: string;
              oauthResponseType?: string;
              oauthScope?: string;
              passwordPolicyMinLength?: string;
              passwordPolicyRequirements?: string;
              signupAttributes?: string;
              socialProviders?: string;
              userPoolId: string;
              usernameAttributes?: string;
              verificationMechanisms?: string;
              webClientId: string;
          };
          version: "1";
      }>]>>
    • AWS::Amplify::Custom: ZodOptional<ZodDiscriminatedUnion<"version", [ZodObject<{
          payload: ZodObject<{
              customOutputs: ZodString;
          }, "strip", ZodTypeAny, {
              customOutputs: string;
          }, {
              customOutputs: string;
          }>;
          version: ZodLiteral<"1">;
      }, "strip", ZodTypeAny, {
          payload: {
              customOutputs: string;
          };
          version: "1";
      }, {
          payload: {
              customOutputs: string;
          };
          version: "1";
      }>]>>
    • AWS::Amplify::Function: ZodOptional<ZodDiscriminatedUnion<"version", [ZodObject<{
          payload: ZodObject<{
              definedFunctions: ZodString;
          }, "strip", ZodTypeAny, {
              definedFunctions: string;
          }, {
              definedFunctions: string;
          }>;
          version: ZodLiteral<"1">;
      }, "strip", ZodTypeAny, {
          payload: {
              definedFunctions: string;
          };
          version: "1";
      }, {
          payload: {
              definedFunctions: string;
          };
          version: "1";
      }>]>>
    • AWS::Amplify::GraphQL: ZodOptional<ZodDiscriminatedUnion<"version", [ZodObject<{
          payload: ZodObject<{
              amplifyApiModelSchemaS3Uri: ZodString;
              awsAppsyncAdditionalAuthenticationTypes: ZodOptional<ZodString>;
              awsAppsyncApiEndpoint: ZodString;
              awsAppsyncApiId: ZodString;
              awsAppsyncApiKey: ZodOptional<ZodString>;
              awsAppsyncAuthenticationType: ZodEnum<[(...), (...), (...), (...), (...)]>;
              awsAppsyncConflictResolutionMode: ZodOptional<ZodString>;
              awsAppsyncRegion: ZodString;
          }, "strip", ZodTypeAny, {
              amplifyApiModelSchemaS3Uri: string;
              awsAppsyncAdditionalAuthenticationTypes?: string;
              awsAppsyncApiEndpoint: string;
              awsAppsyncApiId: string;
              awsAppsyncApiKey?: string;
              awsAppsyncAuthenticationType: "API_KEY" | "AWS_LAMBDA" | "AWS_IAM" | "OPENID_CONNECT" | "AMAZON_COGNITO_USER_POOLS";
              awsAppsyncConflictResolutionMode?: string;
              awsAppsyncRegion: string;
          }, {
              amplifyApiModelSchemaS3Uri: string;
              awsAppsyncAdditionalAuthenticationTypes?: string;
              awsAppsyncApiEndpoint: string;
              awsAppsyncApiId: string;
              awsAppsyncApiKey?: string;
              awsAppsyncAuthenticationType: "API_KEY" | "AWS_LAMBDA" | "AWS_IAM" | "OPENID_CONNECT" | "AMAZON_COGNITO_USER_POOLS";
              awsAppsyncConflictResolutionMode?: string;
              awsAppsyncRegion: string;
          }>;
          version: ZodLiteral<"1">;
      }, "strip", ZodTypeAny, {
          payload: {
              amplifyApiModelSchemaS3Uri: string;
              awsAppsyncAdditionalAuthenticationTypes?: string;
              awsAppsyncApiEndpoint: string;
              awsAppsyncApiId: string;
              awsAppsyncApiKey?: string;
              awsAppsyncAuthenticationType: "API_KEY" | "AWS_LAMBDA" | "AWS_IAM" | "OPENID_CONNECT" | "AMAZON_COGNITO_USER_POOLS";
              awsAppsyncConflictResolutionMode?: string;
              awsAppsyncRegion: string;
          };
          version: "1";
      }, {
          payload: {
              amplifyApiModelSchemaS3Uri: string;
              awsAppsyncAdditionalAuthenticationTypes?: string;
              awsAppsyncApiEndpoint: string;
              awsAppsyncApiId: string;
              awsAppsyncApiKey?: string;
              awsAppsyncAuthenticationType: "API_KEY" | "AWS_LAMBDA" | "AWS_IAM" | "OPENID_CONNECT" | "AMAZON_COGNITO_USER_POOLS";
              awsAppsyncConflictResolutionMode?: string;
              awsAppsyncRegion: string;
          };
          version: "1";
      }>]>>
    • AWS::Amplify::Platform: ZodOptional<ZodDiscriminatedUnion<"version", [ZodObject<{
          payload: ZodObject<{
              deploymentType: ZodString;
              region: ZodString;
          }, "strip", ZodTypeAny, {
              deploymentType: string;
              region: string;
          }, {
              deploymentType: string;
              region: string;
          }>;
          version: ZodLiteral<"1">;
      }, "strip", ZodTypeAny, {
          payload: {
              deploymentType: string;
              region: string;
          };
          version: "1";
      }, {
          payload: {
              deploymentType: string;
              region: string;
          };
          version: "1";
      }>]>>
    • AWS::Amplify::Storage: ZodOptional<ZodDiscriminatedUnion<"version", [ZodObject<{
          payload: ZodObject<{
              bucketName: ZodString;
              buckets: ZodOptional<ZodString>;
              storageRegion: ZodString;
          }, "strip", ZodTypeAny, {
              bucketName: string;
              buckets?: string;
              storageRegion: string;
          }, {
              bucketName: string;
              buckets?: string;
              storageRegion: string;
          }>;
          version: ZodLiteral<"1">;
      }, "strip", ZodTypeAny, {
          payload: {
              bucketName: string;
              buckets?: string;
              storageRegion: string;
          };
          version: "1";
      }, {
          payload: {
              bucketName: string;
              buckets?: string;
              storageRegion: string;
          };
          version: "1";
      }>]>>

    Type declaration

    • Optional AWS::Amplify::AI::Conversation?: {
          payload: {
              definedConversationHandlers: string;
          };
          version: "1";
      }
      • payload: {
            definedConversationHandlers: string;
        }
        • definedConversationHandlers: string
      • version: "1"
    • Optional AWS::Amplify::Auth?: {
          payload: {
              allowUnauthenticatedIdentities?: string;
              authRegion: string;
              groups?: string;
              identityPoolId: string;
              mfaConfiguration?: string;
              mfaTypes?: string;
              oauthClientId?: string;
              oauthCognitoDomain?: string;
              oauthRedirectSignIn?: string;
              oauthRedirectSignOut?: string;
              oauthResponseType?: string;
              oauthScope?: string;
              passwordPolicyMinLength?: string;
              passwordPolicyRequirements?: string;
              signupAttributes?: string;
              socialProviders?: string;
              userPoolId: string;
              usernameAttributes?: string;
              verificationMechanisms?: string;
              webClientId: string;
          };
          version: "1";
      }
      • payload: {
            allowUnauthenticatedIdentities?: string;
            authRegion: string;
            groups?: string;
            identityPoolId: string;
            mfaConfiguration?: string;
            mfaTypes?: string;
            oauthClientId?: string;
            oauthCognitoDomain?: string;
            oauthRedirectSignIn?: string;
            oauthRedirectSignOut?: string;
            oauthResponseType?: string;
            oauthScope?: string;
            passwordPolicyMinLength?: string;
            passwordPolicyRequirements?: string;
            signupAttributes?: string;
            socialProviders?: string;
            userPoolId: string;
            usernameAttributes?: string;
            verificationMechanisms?: string;
            webClientId: string;
        }
        • Optional allowUnauthenticatedIdentities?: string
        • authRegion: string
        • Optional groups?: string
        • identityPoolId: string
        • Optional mfaConfiguration?: string
        • Optional mfaTypes?: string
        • Optional oauthClientId?: string
        • Optional oauthCognitoDomain?: string
        • Optional oauthRedirectSignIn?: string
        • Optional oauthRedirectSignOut?: string
        • Optional oauthResponseType?: string
        • Optional oauthScope?: string
        • Optional passwordPolicyMinLength?: string
        • Optional passwordPolicyRequirements?: string
        • Optional signupAttributes?: string
        • Optional socialProviders?: string
        • userPoolId: string
        • Optional usernameAttributes?: string
        • Optional verificationMechanisms?: string
        • webClientId: string
      • version: "1"
    • Optional AWS::Amplify::Custom?: {
          payload: {
              customOutputs: string;
          };
          version: "1";
      }
      • payload: {
            customOutputs: string;
        }
        • customOutputs: string
      • version: "1"
    • Optional AWS::Amplify::Function?: {
          payload: {
              definedFunctions: string;
          };
          version: "1";
      }
      • payload: {
            definedFunctions: string;
        }
        • definedFunctions: string
      • version: "1"
    • Optional AWS::Amplify::GraphQL?: {
          payload: {
              amplifyApiModelSchemaS3Uri: string;
              awsAppsyncAdditionalAuthenticationTypes?: string;
              awsAppsyncApiEndpoint: string;
              awsAppsyncApiId: string;
              awsAppsyncApiKey?: string;
              awsAppsyncAuthenticationType: "API_KEY" | "AWS_LAMBDA" | "AWS_IAM" | "OPENID_CONNECT" | "AMAZON_COGNITO_USER_POOLS";
              awsAppsyncConflictResolutionMode?: string;
              awsAppsyncRegion: string;
          };
          version: "1";
      }
      • payload: {
            amplifyApiModelSchemaS3Uri: string;
            awsAppsyncAdditionalAuthenticationTypes?: string;
            awsAppsyncApiEndpoint: string;
            awsAppsyncApiId: string;
            awsAppsyncApiKey?: string;
            awsAppsyncAuthenticationType: "API_KEY" | "AWS_LAMBDA" | "AWS_IAM" | "OPENID_CONNECT" | "AMAZON_COGNITO_USER_POOLS";
            awsAppsyncConflictResolutionMode?: string;
            awsAppsyncRegion: string;
        }
        • amplifyApiModelSchemaS3Uri: string
        • Optional awsAppsyncAdditionalAuthenticationTypes?: string
        • awsAppsyncApiEndpoint: string
        • awsAppsyncApiId: string
        • Optional awsAppsyncApiKey?: string
        • awsAppsyncAuthenticationType: "API_KEY" | "AWS_LAMBDA" | "AWS_IAM" | "OPENID_CONNECT" | "AMAZON_COGNITO_USER_POOLS"
        • Optional awsAppsyncConflictResolutionMode?: string
        • awsAppsyncRegion: string
      • version: "1"
    • Optional AWS::Amplify::Platform?: {
          payload: {
              deploymentType: string;
              region: string;
          };
          version: "1";
      }
      • payload: {
            deploymentType: string;
            region: string;
        }
        • deploymentType: string
        • region: string
      • version: "1"
    • Optional AWS::Amplify::Storage?: {
          payload: {
              bucketName: string;
              buckets?: string;
              storageRegion: string;
          };
          version: "1";
      }
      • payload: {
            bucketName: string;
            buckets?: string;
            storageRegion: string;
        }
        • bucketName: string
        • Optional buckets?: string
        • storageRegion: string
      • version: "1"

    Type declaration

    • Optional AWS::Amplify::AI::Conversation?: {
          payload: {
              definedConversationHandlers: string;
          };
          version: "1";
      }
      • payload: {
            definedConversationHandlers: string;
        }
        • definedConversationHandlers: string
      • version: "1"
    • Optional AWS::Amplify::Auth?: {
          payload: {
              allowUnauthenticatedIdentities?: string;
              authRegion: string;
              groups?: string;
              identityPoolId: string;
              mfaConfiguration?: string;
              mfaTypes?: string;
              oauthClientId?: string;
              oauthCognitoDomain?: string;
              oauthRedirectSignIn?: string;
              oauthRedirectSignOut?: string;
              oauthResponseType?: string;
              oauthScope?: string;
              passwordPolicyMinLength?: string;
              passwordPolicyRequirements?: string;
              signupAttributes?: string;
              socialProviders?: string;
              userPoolId: string;
              usernameAttributes?: string;
              verificationMechanisms?: string;
              webClientId: string;
          };
          version: "1";
      }
      • payload: {
            allowUnauthenticatedIdentities?: string;
            authRegion: string;
            groups?: string;
            identityPoolId: string;
            mfaConfiguration?: string;
            mfaTypes?: string;
            oauthClientId?: string;
            oauthCognitoDomain?: string;
            oauthRedirectSignIn?: string;
            oauthRedirectSignOut?: string;
            oauthResponseType?: string;
            oauthScope?: string;
            passwordPolicyMinLength?: string;
            passwordPolicyRequirements?: string;
            signupAttributes?: string;
            socialProviders?: string;
            userPoolId: string;
            usernameAttributes?: string;
            verificationMechanisms?: string;
            webClientId: string;
        }
        • Optional allowUnauthenticatedIdentities?: string
        • authRegion: string
        • Optional groups?: string
        • identityPoolId: string
        • Optional mfaConfiguration?: string
        • Optional mfaTypes?: string
        • Optional oauthClientId?: string
        • Optional oauthCognitoDomain?: string
        • Optional oauthRedirectSignIn?: string
        • Optional oauthRedirectSignOut?: string
        • Optional oauthResponseType?: string
        • Optional oauthScope?: string
        • Optional passwordPolicyMinLength?: string
        • Optional passwordPolicyRequirements?: string
        • Optional signupAttributes?: string
        • Optional socialProviders?: string
        • userPoolId: string
        • Optional usernameAttributes?: string
        • Optional verificationMechanisms?: string
        • webClientId: string
      • version: "1"
    • Optional AWS::Amplify::Custom?: {
          payload: {
              customOutputs: string;
          };
          version: "1";
      }
      • payload: {
            customOutputs: string;
        }
        • customOutputs: string
      • version: "1"
    • Optional AWS::Amplify::Function?: {
          payload: {
              definedFunctions: string;
          };
          version: "1";
      }
      • payload: {
            definedFunctions: string;
        }
        • definedFunctions: string
      • version: "1"
    • Optional AWS::Amplify::GraphQL?: {
          payload: {
              amplifyApiModelSchemaS3Uri: string;
              awsAppsyncAdditionalAuthenticationTypes?: string;
              awsAppsyncApiEndpoint: string;
              awsAppsyncApiId: string;
              awsAppsyncApiKey?: string;
              awsAppsyncAuthenticationType: "API_KEY" | "AWS_LAMBDA" | "AWS_IAM" | "OPENID_CONNECT" | "AMAZON_COGNITO_USER_POOLS";
              awsAppsyncConflictResolutionMode?: string;
              awsAppsyncRegion: string;
          };
          version: "1";
      }
      • payload: {
            amplifyApiModelSchemaS3Uri: string;
            awsAppsyncAdditionalAuthenticationTypes?: string;
            awsAppsyncApiEndpoint: string;
            awsAppsyncApiId: string;
            awsAppsyncApiKey?: string;
            awsAppsyncAuthenticationType: "API_KEY" | "AWS_LAMBDA" | "AWS_IAM" | "OPENID_CONNECT" | "AMAZON_COGNITO_USER_POOLS";
            awsAppsyncConflictResolutionMode?: string;
            awsAppsyncRegion: string;
        }
        • amplifyApiModelSchemaS3Uri: string
        • Optional awsAppsyncAdditionalAuthenticationTypes?: string
        • awsAppsyncApiEndpoint: string
        • awsAppsyncApiId: string
        • Optional awsAppsyncApiKey?: string
        • awsAppsyncAuthenticationType: "API_KEY" | "AWS_LAMBDA" | "AWS_IAM" | "OPENID_CONNECT" | "AMAZON_COGNITO_USER_POOLS"
        • Optional awsAppsyncConflictResolutionMode?: string
        • awsAppsyncRegion: string
      • version: "1"
    • Optional AWS::Amplify::Platform?: {
          payload: {
              deploymentType: string;
              region: string;
          };
          version: "1";
      }
      • payload: {
            deploymentType: string;
            region: string;
        }
        • deploymentType: string
        • region: string
      • version: "1"
    • Optional AWS::Amplify::Storage?: {
          payload: {
              bucketName: string;
              buckets?: string;
              storageRegion: string;
          };
          version: "1";
      }
      • payload: {
            bucketName: string;
            buckets?: string;
            storageRegion: string;
        }
        • bucketName: string
        • Optional buckets?: string
        • storageRegion: string
      • version: "1"
    \ No newline at end of file diff --git a/variables/_aws_amplify_backend_output_schemas.versionedAIConversationOutputSchema.html b/variables/_aws_amplify_backend_output_schemas.versionedAIConversationOutputSchema.html index 27604bd0b6..8d53914e69 100644 --- a/variables/_aws_amplify_backend_output_schemas.versionedAIConversationOutputSchema.html +++ b/variables/_aws_amplify_backend_output_schemas.versionedAIConversationOutputSchema.html @@ -1 +1 @@ -versionedAIConversationOutputSchema | Amplify Toolbox
    versionedAIConversationOutputSchema: ZodDiscriminatedUnion<"version", [ZodObject<{
        payload: ZodObject<{
            definedConversationHandlers: ZodString;
        }, "strip", ZodTypeAny, {
            definedConversationHandlers: string;
        }, {
            definedConversationHandlers: string;
        }>;
        version: ZodLiteral<"1">;
    }, "strip", ZodTypeAny, {
        payload: {
            definedConversationHandlers: string;
        };
        version: "1";
    }, {
        payload: {
            definedConversationHandlers: string;
        };
        version: "1";
    }>]> = ...
    \ No newline at end of file +versionedAIConversationOutputSchema | Amplify Toolbox
    versionedAIConversationOutputSchema: ZodDiscriminatedUnion<"version", [ZodObject<{
        payload: ZodObject<{
            definedConversationHandlers: ZodString;
        }, "strip", ZodTypeAny, {
            definedConversationHandlers: string;
        }, {
            definedConversationHandlers: string;
        }>;
        version: ZodLiteral<"1">;
    }, "strip", ZodTypeAny, {
        payload: {
            definedConversationHandlers: string;
        };
        version: "1";
    }, {
        payload: {
            definedConversationHandlers: string;
        };
        version: "1";
    }>]> = ...
    \ No newline at end of file diff --git a/variables/_aws_amplify_backend_output_schemas.versionedAuthOutputSchema.html b/variables/_aws_amplify_backend_output_schemas.versionedAuthOutputSchema.html index 2b8ad52c85..2399e442a1 100644 --- a/variables/_aws_amplify_backend_output_schemas.versionedAuthOutputSchema.html +++ b/variables/_aws_amplify_backend_output_schemas.versionedAuthOutputSchema.html @@ -1 +1 @@ -versionedAuthOutputSchema | Amplify Toolbox
    versionedAuthOutputSchema: ZodDiscriminatedUnion<"version", [ZodObject<{
        payload: ZodObject<{
            allowUnauthenticatedIdentities: ZodOptional<ZodString>;
            authRegion: ZodString;
            groups: ZodOptional<ZodString>;
            identityPoolId: ZodString;
            mfaConfiguration: ZodOptional<ZodString>;
            mfaTypes: ZodOptional<ZodString>;
            oauthClientId: ZodOptional<ZodString>;
            oauthCognitoDomain: ZodOptional<ZodString>;
            oauthRedirectSignIn: ZodOptional<ZodString>;
            oauthRedirectSignOut: ZodOptional<ZodString>;
            oauthResponseType: ZodOptional<ZodString>;
            oauthScope: ZodOptional<ZodString>;
            passwordPolicyMinLength: ZodOptional<ZodString>;
            passwordPolicyRequirements: ZodOptional<ZodString>;
            signupAttributes: ZodOptional<ZodString>;
            socialProviders: ZodOptional<ZodString>;
            userPoolId: ZodString;
            usernameAttributes: ZodOptional<ZodString>;
            verificationMechanisms: ZodOptional<ZodString>;
            webClientId: ZodString;
        }, "strip", ZodTypeAny, {
            allowUnauthenticatedIdentities?: string;
            authRegion: string;
            groups?: string;
            identityPoolId: string;
            mfaConfiguration?: string;
            mfaTypes?: string;
            oauthClientId?: string;
            oauthCognitoDomain?: string;
            oauthRedirectSignIn?: string;
            oauthRedirectSignOut?: string;
            oauthResponseType?: string;
            oauthScope?: string;
            passwordPolicyMinLength?: string;
            passwordPolicyRequirements?: string;
            signupAttributes?: string;
            socialProviders?: string;
            userPoolId: string;
            usernameAttributes?: string;
            verificationMechanisms?: string;
            webClientId: string;
        }, {
            allowUnauthenticatedIdentities?: string;
            authRegion: string;
            groups?: string;
            identityPoolId: string;
            mfaConfiguration?: string;
            mfaTypes?: string;
            oauthClientId?: string;
            oauthCognitoDomain?: string;
            oauthRedirectSignIn?: string;
            oauthRedirectSignOut?: string;
            oauthResponseType?: string;
            oauthScope?: string;
            passwordPolicyMinLength?: string;
            passwordPolicyRequirements?: string;
            signupAttributes?: string;
            socialProviders?: string;
            userPoolId: string;
            usernameAttributes?: string;
            verificationMechanisms?: string;
            webClientId: string;
        }>;
        version: ZodLiteral<"1">;
    }, "strip", ZodTypeAny, {
        payload: {
            allowUnauthenticatedIdentities?: string;
            authRegion: string;
            groups?: string;
            identityPoolId: string;
            mfaConfiguration?: string;
            mfaTypes?: string;
            oauthClientId?: string;
            oauthCognitoDomain?: string;
            oauthRedirectSignIn?: string;
            oauthRedirectSignOut?: string;
            oauthResponseType?: string;
            oauthScope?: string;
            passwordPolicyMinLength?: string;
            passwordPolicyRequirements?: string;
            signupAttributes?: string;
            socialProviders?: string;
            userPoolId: string;
            usernameAttributes?: string;
            verificationMechanisms?: string;
            webClientId: string;
        };
        version: "1";
    }, {
        payload: {
            allowUnauthenticatedIdentities?: string;
            authRegion: string;
            groups?: string;
            identityPoolId: string;
            mfaConfiguration?: string;
            mfaTypes?: string;
            oauthClientId?: string;
            oauthCognitoDomain?: string;
            oauthRedirectSignIn?: string;
            oauthRedirectSignOut?: string;
            oauthResponseType?: string;
            oauthScope?: string;
            passwordPolicyMinLength?: string;
            passwordPolicyRequirements?: string;
            signupAttributes?: string;
            socialProviders?: string;
            userPoolId: string;
            usernameAttributes?: string;
            verificationMechanisms?: string;
            webClientId: string;
        };
        version: "1";
    }>]> = ...
    \ No newline at end of file +versionedAuthOutputSchema | Amplify Toolbox
    versionedAuthOutputSchema: ZodDiscriminatedUnion<"version", [ZodObject<{
        payload: ZodObject<{
            allowUnauthenticatedIdentities: ZodOptional<ZodString>;
            authRegion: ZodString;
            groups: ZodOptional<ZodString>;
            identityPoolId: ZodString;
            mfaConfiguration: ZodOptional<ZodString>;
            mfaTypes: ZodOptional<ZodString>;
            oauthClientId: ZodOptional<ZodString>;
            oauthCognitoDomain: ZodOptional<ZodString>;
            oauthRedirectSignIn: ZodOptional<ZodString>;
            oauthRedirectSignOut: ZodOptional<ZodString>;
            oauthResponseType: ZodOptional<ZodString>;
            oauthScope: ZodOptional<ZodString>;
            passwordPolicyMinLength: ZodOptional<ZodString>;
            passwordPolicyRequirements: ZodOptional<ZodString>;
            signupAttributes: ZodOptional<ZodString>;
            socialProviders: ZodOptional<ZodString>;
            userPoolId: ZodString;
            usernameAttributes: ZodOptional<ZodString>;
            verificationMechanisms: ZodOptional<ZodString>;
            webClientId: ZodString;
        }, "strip", ZodTypeAny, {
            allowUnauthenticatedIdentities?: string;
            authRegion: string;
            groups?: string;
            identityPoolId: string;
            mfaConfiguration?: string;
            mfaTypes?: string;
            oauthClientId?: string;
            oauthCognitoDomain?: string;
            oauthRedirectSignIn?: string;
            oauthRedirectSignOut?: string;
            oauthResponseType?: string;
            oauthScope?: string;
            passwordPolicyMinLength?: string;
            passwordPolicyRequirements?: string;
            signupAttributes?: string;
            socialProviders?: string;
            userPoolId: string;
            usernameAttributes?: string;
            verificationMechanisms?: string;
            webClientId: string;
        }, {
            allowUnauthenticatedIdentities?: string;
            authRegion: string;
            groups?: string;
            identityPoolId: string;
            mfaConfiguration?: string;
            mfaTypes?: string;
            oauthClientId?: string;
            oauthCognitoDomain?: string;
            oauthRedirectSignIn?: string;
            oauthRedirectSignOut?: string;
            oauthResponseType?: string;
            oauthScope?: string;
            passwordPolicyMinLength?: string;
            passwordPolicyRequirements?: string;
            signupAttributes?: string;
            socialProviders?: string;
            userPoolId: string;
            usernameAttributes?: string;
            verificationMechanisms?: string;
            webClientId: string;
        }>;
        version: ZodLiteral<"1">;
    }, "strip", ZodTypeAny, {
        payload: {
            allowUnauthenticatedIdentities?: string;
            authRegion: string;
            groups?: string;
            identityPoolId: string;
            mfaConfiguration?: string;
            mfaTypes?: string;
            oauthClientId?: string;
            oauthCognitoDomain?: string;
            oauthRedirectSignIn?: string;
            oauthRedirectSignOut?: string;
            oauthResponseType?: string;
            oauthScope?: string;
            passwordPolicyMinLength?: string;
            passwordPolicyRequirements?: string;
            signupAttributes?: string;
            socialProviders?: string;
            userPoolId: string;
            usernameAttributes?: string;
            verificationMechanisms?: string;
            webClientId: string;
        };
        version: "1";
    }, {
        payload: {
            allowUnauthenticatedIdentities?: string;
            authRegion: string;
            groups?: string;
            identityPoolId: string;
            mfaConfiguration?: string;
            mfaTypes?: string;
            oauthClientId?: string;
            oauthCognitoDomain?: string;
            oauthRedirectSignIn?: string;
            oauthRedirectSignOut?: string;
            oauthResponseType?: string;
            oauthScope?: string;
            passwordPolicyMinLength?: string;
            passwordPolicyRequirements?: string;
            signupAttributes?: string;
            socialProviders?: string;
            userPoolId: string;
            usernameAttributes?: string;
            verificationMechanisms?: string;
            webClientId: string;
        };
        version: "1";
    }>]> = ...
    \ No newline at end of file diff --git a/variables/_aws_amplify_backend_output_schemas.versionedCustomOutputSchema.html b/variables/_aws_amplify_backend_output_schemas.versionedCustomOutputSchema.html index c31de57fcc..4eb1c288be 100644 --- a/variables/_aws_amplify_backend_output_schemas.versionedCustomOutputSchema.html +++ b/variables/_aws_amplify_backend_output_schemas.versionedCustomOutputSchema.html @@ -1 +1 @@ -versionedCustomOutputSchema | Amplify Toolbox
    versionedCustomOutputSchema: ZodDiscriminatedUnion<"version", [ZodObject<{
        payload: ZodObject<{
            customOutputs: ZodString;
        }, "strip", ZodTypeAny, {
            customOutputs: string;
        }, {
            customOutputs: string;
        }>;
        version: ZodLiteral<"1">;
    }, "strip", ZodTypeAny, {
        payload: {
            customOutputs: string;
        };
        version: "1";
    }, {
        payload: {
            customOutputs: string;
        };
        version: "1";
    }>]> = ...
    \ No newline at end of file +versionedCustomOutputSchema | Amplify Toolbox
    versionedCustomOutputSchema: ZodDiscriminatedUnion<"version", [ZodObject<{
        payload: ZodObject<{
            customOutputs: ZodString;
        }, "strip", ZodTypeAny, {
            customOutputs: string;
        }, {
            customOutputs: string;
        }>;
        version: ZodLiteral<"1">;
    }, "strip", ZodTypeAny, {
        payload: {
            customOutputs: string;
        };
        version: "1";
    }, {
        payload: {
            customOutputs: string;
        };
        version: "1";
    }>]> = ...
    \ No newline at end of file diff --git a/variables/_aws_amplify_backend_output_schemas.versionedFunctionOutputSchema.html b/variables/_aws_amplify_backend_output_schemas.versionedFunctionOutputSchema.html index fee0dce645..35f6dadb6a 100644 --- a/variables/_aws_amplify_backend_output_schemas.versionedFunctionOutputSchema.html +++ b/variables/_aws_amplify_backend_output_schemas.versionedFunctionOutputSchema.html @@ -1 +1 @@ -versionedFunctionOutputSchema | Amplify Toolbox
    versionedFunctionOutputSchema: ZodDiscriminatedUnion<"version", [ZodObject<{
        payload: ZodObject<{
            definedFunctions: ZodString;
        }, "strip", ZodTypeAny, {
            definedFunctions: string;
        }, {
            definedFunctions: string;
        }>;
        version: ZodLiteral<"1">;
    }, "strip", ZodTypeAny, {
        payload: {
            definedFunctions: string;
        };
        version: "1";
    }, {
        payload: {
            definedFunctions: string;
        };
        version: "1";
    }>]> = ...
    \ No newline at end of file +versionedFunctionOutputSchema | Amplify Toolbox
    versionedFunctionOutputSchema: ZodDiscriminatedUnion<"version", [ZodObject<{
        payload: ZodObject<{
            definedFunctions: ZodString;
        }, "strip", ZodTypeAny, {
            definedFunctions: string;
        }, {
            definedFunctions: string;
        }>;
        version: ZodLiteral<"1">;
    }, "strip", ZodTypeAny, {
        payload: {
            definedFunctions: string;
        };
        version: "1";
    }, {
        payload: {
            definedFunctions: string;
        };
        version: "1";
    }>]> = ...
    \ No newline at end of file diff --git a/variables/_aws_amplify_backend_output_schemas.versionedGraphqlOutputSchema.html b/variables/_aws_amplify_backend_output_schemas.versionedGraphqlOutputSchema.html index b8bae6e755..da4f7edfd6 100644 --- a/variables/_aws_amplify_backend_output_schemas.versionedGraphqlOutputSchema.html +++ b/variables/_aws_amplify_backend_output_schemas.versionedGraphqlOutputSchema.html @@ -1 +1 @@ -versionedGraphqlOutputSchema | Amplify Toolbox
    versionedGraphqlOutputSchema: ZodDiscriminatedUnion<"version", [ZodObject<{
        payload: ZodObject<{
            amplifyApiModelSchemaS3Uri: ZodString;
            awsAppsyncAdditionalAuthenticationTypes: ZodOptional<ZodString>;
            awsAppsyncApiEndpoint: ZodString;
            awsAppsyncApiId: ZodString;
            awsAppsyncApiKey: ZodOptional<ZodString>;
            awsAppsyncAuthenticationType: ZodEnum<["API_KEY", "AWS_LAMBDA", "AWS_IAM", "OPENID_CONNECT", "AMAZON_COGNITO_USER_POOLS"]>;
            awsAppsyncConflictResolutionMode: ZodOptional<ZodString>;
            awsAppsyncRegion: ZodString;
        }, "strip", ZodTypeAny, {
            amplifyApiModelSchemaS3Uri: string;
            awsAppsyncAdditionalAuthenticationTypes?: string;
            awsAppsyncApiEndpoint: string;
            awsAppsyncApiId: string;
            awsAppsyncApiKey?: string;
            awsAppsyncAuthenticationType: "API_KEY" | "AWS_LAMBDA" | "AWS_IAM" | "OPENID_CONNECT" | "AMAZON_COGNITO_USER_POOLS";
            awsAppsyncConflictResolutionMode?: string;
            awsAppsyncRegion: string;
        }, {
            amplifyApiModelSchemaS3Uri: string;
            awsAppsyncAdditionalAuthenticationTypes?: string;
            awsAppsyncApiEndpoint: string;
            awsAppsyncApiId: string;
            awsAppsyncApiKey?: string;
            awsAppsyncAuthenticationType: "API_KEY" | "AWS_LAMBDA" | "AWS_IAM" | "OPENID_CONNECT" | "AMAZON_COGNITO_USER_POOLS";
            awsAppsyncConflictResolutionMode?: string;
            awsAppsyncRegion: string;
        }>;
        version: ZodLiteral<"1">;
    }, "strip", ZodTypeAny, {
        payload: {
            amplifyApiModelSchemaS3Uri: string;
            awsAppsyncAdditionalAuthenticationTypes?: string;
            awsAppsyncApiEndpoint: string;
            awsAppsyncApiId: string;
            awsAppsyncApiKey?: string;
            awsAppsyncAuthenticationType: "API_KEY" | "AWS_LAMBDA" | "AWS_IAM" | "OPENID_CONNECT" | "AMAZON_COGNITO_USER_POOLS";
            awsAppsyncConflictResolutionMode?: string;
            awsAppsyncRegion: string;
        };
        version: "1";
    }, {
        payload: {
            amplifyApiModelSchemaS3Uri: string;
            awsAppsyncAdditionalAuthenticationTypes?: string;
            awsAppsyncApiEndpoint: string;
            awsAppsyncApiId: string;
            awsAppsyncApiKey?: string;
            awsAppsyncAuthenticationType: "API_KEY" | "AWS_LAMBDA" | "AWS_IAM" | "OPENID_CONNECT" | "AMAZON_COGNITO_USER_POOLS";
            awsAppsyncConflictResolutionMode?: string;
            awsAppsyncRegion: string;
        };
        version: "1";
    }>]> = ...
    \ No newline at end of file +versionedGraphqlOutputSchema | Amplify Toolbox
    versionedGraphqlOutputSchema: ZodDiscriminatedUnion<"version", [ZodObject<{
        payload: ZodObject<{
            amplifyApiModelSchemaS3Uri: ZodString;
            awsAppsyncAdditionalAuthenticationTypes: ZodOptional<ZodString>;
            awsAppsyncApiEndpoint: ZodString;
            awsAppsyncApiId: ZodString;
            awsAppsyncApiKey: ZodOptional<ZodString>;
            awsAppsyncAuthenticationType: ZodEnum<["API_KEY", "AWS_LAMBDA", "AWS_IAM", "OPENID_CONNECT", "AMAZON_COGNITO_USER_POOLS"]>;
            awsAppsyncConflictResolutionMode: ZodOptional<ZodString>;
            awsAppsyncRegion: ZodString;
        }, "strip", ZodTypeAny, {
            amplifyApiModelSchemaS3Uri: string;
            awsAppsyncAdditionalAuthenticationTypes?: string;
            awsAppsyncApiEndpoint: string;
            awsAppsyncApiId: string;
            awsAppsyncApiKey?: string;
            awsAppsyncAuthenticationType: "API_KEY" | "AWS_LAMBDA" | "AWS_IAM" | "OPENID_CONNECT" | "AMAZON_COGNITO_USER_POOLS";
            awsAppsyncConflictResolutionMode?: string;
            awsAppsyncRegion: string;
        }, {
            amplifyApiModelSchemaS3Uri: string;
            awsAppsyncAdditionalAuthenticationTypes?: string;
            awsAppsyncApiEndpoint: string;
            awsAppsyncApiId: string;
            awsAppsyncApiKey?: string;
            awsAppsyncAuthenticationType: "API_KEY" | "AWS_LAMBDA" | "AWS_IAM" | "OPENID_CONNECT" | "AMAZON_COGNITO_USER_POOLS";
            awsAppsyncConflictResolutionMode?: string;
            awsAppsyncRegion: string;
        }>;
        version: ZodLiteral<"1">;
    }, "strip", ZodTypeAny, {
        payload: {
            amplifyApiModelSchemaS3Uri: string;
            awsAppsyncAdditionalAuthenticationTypes?: string;
            awsAppsyncApiEndpoint: string;
            awsAppsyncApiId: string;
            awsAppsyncApiKey?: string;
            awsAppsyncAuthenticationType: "API_KEY" | "AWS_LAMBDA" | "AWS_IAM" | "OPENID_CONNECT" | "AMAZON_COGNITO_USER_POOLS";
            awsAppsyncConflictResolutionMode?: string;
            awsAppsyncRegion: string;
        };
        version: "1";
    }, {
        payload: {
            amplifyApiModelSchemaS3Uri: string;
            awsAppsyncAdditionalAuthenticationTypes?: string;
            awsAppsyncApiEndpoint: string;
            awsAppsyncApiId: string;
            awsAppsyncApiKey?: string;
            awsAppsyncAuthenticationType: "API_KEY" | "AWS_LAMBDA" | "AWS_IAM" | "OPENID_CONNECT" | "AMAZON_COGNITO_USER_POOLS";
            awsAppsyncConflictResolutionMode?: string;
            awsAppsyncRegion: string;
        };
        version: "1";
    }>]> = ...
    \ No newline at end of file diff --git a/variables/_aws_amplify_backend_output_schemas.versionedStorageOutputSchema.html b/variables/_aws_amplify_backend_output_schemas.versionedStorageOutputSchema.html index e2d776e3c0..cb913d0c88 100644 --- a/variables/_aws_amplify_backend_output_schemas.versionedStorageOutputSchema.html +++ b/variables/_aws_amplify_backend_output_schemas.versionedStorageOutputSchema.html @@ -1 +1 @@ -versionedStorageOutputSchema | Amplify Toolbox
    versionedStorageOutputSchema: ZodDiscriminatedUnion<"version", [ZodObject<{
        payload: ZodObject<{
            bucketName: ZodString;
            buckets: ZodOptional<ZodString>;
            storageRegion: ZodString;
        }, "strip", ZodTypeAny, {
            bucketName: string;
            buckets?: string;
            storageRegion: string;
        }, {
            bucketName: string;
            buckets?: string;
            storageRegion: string;
        }>;
        version: ZodLiteral<"1">;
    }, "strip", ZodTypeAny, {
        payload: {
            bucketName: string;
            buckets?: string;
            storageRegion: string;
        };
        version: "1";
    }, {
        payload: {
            bucketName: string;
            buckets?: string;
            storageRegion: string;
        };
        version: "1";
    }>]> = ...
    \ No newline at end of file +versionedStorageOutputSchema | Amplify Toolbox
    versionedStorageOutputSchema: ZodDiscriminatedUnion<"version", [ZodObject<{
        payload: ZodObject<{
            bucketName: ZodString;
            buckets: ZodOptional<ZodString>;
            storageRegion: ZodString;
        }, "strip", ZodTypeAny, {
            bucketName: string;
            buckets?: string;
            storageRegion: string;
        }, {
            bucketName: string;
            buckets?: string;
            storageRegion: string;
        }>;
        version: ZodLiteral<"1">;
    }, "strip", ZodTypeAny, {
        payload: {
            bucketName: string;
            buckets?: string;
            storageRegion: string;
        };
        version: "1";
    }, {
        payload: {
            bucketName: string;
            buckets?: string;
            storageRegion: string;
        };
        version: "1";
    }>]> = ...
    \ No newline at end of file diff --git a/variables/_aws_amplify_cli_core.colorNames.html b/variables/_aws_amplify_cli_core.colorNames.html index 9c1e22e9ba..f7e84baf51 100644 --- a/variables/_aws_amplify_cli_core.colorNames.html +++ b/variables/_aws_amplify_cli_core.colorNames.html @@ -1 +1 @@ -colorNames | Amplify Toolbox
    colorNames: readonly ["Green", "Yellow", "Blue", "Magenta", "Cyan"] = ...
    \ No newline at end of file +colorNames | Amplify Toolbox
    colorNames: readonly ["Green", "Yellow", "Blue", "Magenta", "Cyan"] = ...
    \ No newline at end of file diff --git a/variables/_aws_amplify_cli_core.format-1.html b/variables/_aws_amplify_cli_core.format-1.html index ebb617134a..83f0a25088 100644 --- a/variables/_aws_amplify_cli_core.format-1.html +++ b/variables/_aws_amplify_cli_core.format-1.html @@ -1 +1 @@ -format | Amplify Toolbox
    format: Format = ...
    \ No newline at end of file +format | Amplify Toolbox
    format: Format = ...
    \ No newline at end of file diff --git a/variables/_aws_amplify_cli_core.printer-1.html b/variables/_aws_amplify_cli_core.printer-1.html index 42db836eef..6f046d2132 100644 --- a/variables/_aws_amplify_cli_core.printer-1.html +++ b/variables/_aws_amplify_cli_core.printer-1.html @@ -1 +1 @@ -printer | Amplify Toolbox
    printer: Printer = ...
    \ No newline at end of file +printer | Amplify Toolbox
    printer: Printer = ...
    \ No newline at end of file diff --git a/variables/_aws_amplify_client_config.DEFAULT_CLIENT_CONFIG_VERSION.html b/variables/_aws_amplify_client_config.DEFAULT_CLIENT_CONFIG_VERSION.html index f76287c6ff..cce71a813f 100644 --- a/variables/_aws_amplify_client_config.DEFAULT_CLIENT_CONFIG_VERSION.html +++ b/variables/_aws_amplify_client_config.DEFAULT_CLIENT_CONFIG_VERSION.html @@ -1 +1 @@ -DEFAULT_CLIENT_CONFIG_VERSION | Amplify Toolbox
    DEFAULT_CLIENT_CONFIG_VERSION: ClientConfigVersion = ClientConfigVersionOption.V1_3
    \ No newline at end of file +DEFAULT_CLIENT_CONFIG_VERSION | Amplify Toolbox
    DEFAULT_CLIENT_CONFIG_VERSION: ClientConfigVersion = ClientConfigVersionOption.V1_3
    \ No newline at end of file diff --git a/variables/_aws_amplify_platform_core.USAGE_DATA_TRACKING_ENABLED.html b/variables/_aws_amplify_platform_core.USAGE_DATA_TRACKING_ENABLED.html index 716911190c..918e63dba5 100644 --- a/variables/_aws_amplify_platform_core.USAGE_DATA_TRACKING_ENABLED.html +++ b/variables/_aws_amplify_platform_core.USAGE_DATA_TRACKING_ENABLED.html @@ -1,2 +1,2 @@ USAGE_DATA_TRACKING_ENABLED | Amplify Toolbox
    USAGE_DATA_TRACKING_ENABLED: "telemetry.enabled" = 'telemetry.enabled'

    Key to access whether user opted-in status of usage data tracking preference.

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/variables/_aws_amplify_platform_core.configControllerFactory.html b/variables/_aws_amplify_platform_core.configControllerFactory.html index a434a9c877..dade8dfbd9 100644 --- a/variables/_aws_amplify_platform_core.configControllerFactory.html +++ b/variables/_aws_amplify_platform_core.configControllerFactory.html @@ -1 +1 @@ -configControllerFactory | Amplify Toolbox
    \ No newline at end of file +configControllerFactory | Amplify Toolbox
    \ No newline at end of file diff --git a/variables/_aws_amplify_platform_core.packageJsonSchema.html b/variables/_aws_amplify_platform_core.packageJsonSchema.html index 302e7883f4..f35c6b44bb 100644 --- a/variables/_aws_amplify_platform_core.packageJsonSchema.html +++ b/variables/_aws_amplify_platform_core.packageJsonSchema.html @@ -1,3 +1,3 @@ packageJsonSchema | Amplify Toolbox
    packageJsonSchema: ZodObject<{
        name: ZodOptional<ZodString>;
        type: ZodOptional<ZodUnion<[ZodLiteral<"module">, ZodLiteral<"commonjs">]>>;
        version: ZodOptional<ZodString>;
    }, "strip", ZodTypeAny, {
        name?: string;
        type?: "module" | "commonjs";
        version?: string;
    }, {
        name?: string;
        type?: "module" | "commonjs";
        version?: string;
    }> = ...

    Type for package.json content.

    Add additional validation if there are other fields we need to read

    -

    Type declaration

    • name: ZodOptional<ZodString>
    • type: ZodOptional<ZodUnion<[ZodLiteral<"module">, ZodLiteral<"commonjs">]>>
    • version: ZodOptional<ZodString>

    Type declaration

    • Optional name?: string
    • Optional type?: "module" | "commonjs"
    • Optional version?: string

    Type declaration

    • Optional name?: string
    • Optional type?: "module" | "commonjs"
    • Optional version?: string
    \ No newline at end of file +

    Type declaration

    • name: ZodOptional<ZodString>
    • type: ZodOptional<ZodUnion<[ZodLiteral<"module">, ZodLiteral<"commonjs">]>>
    • version: ZodOptional<ZodString>

    Type declaration

    • Optional name?: string
    • Optional type?: "module" | "commonjs"
    • Optional version?: string

    Type declaration

    • Optional name?: string
    • Optional type?: "module" | "commonjs"
    • Optional version?: string
    \ No newline at end of file