Amplify Toolbox
    Preparing search index...

    Type Alias HostingResult

    The return type of defineHosting().

    type HostingResult = {
        createStack: (name: string) => Stack;
        resources: HostingResources;
        stack: Stack;
    }
    Index

    Properties

    createStack: (name: string) => Stack

    Create an additional CDK stack for custom resources.

    resources: HostingResources

    The CDK resources created by hosting.

    stack: Stack

    The root hosting stack.