@finnairoyj/cdk-constructs-lib
    Preparing search index...
    interface StackOutputResolverProps {
        forceUpdate?: string | boolean;
        paramName: string;
        region?: "eu-central-1" | "eu-north-1" | "eu-west-1" | "us-east-1";
        stackOutputResolverLambda?: IFunction;
    }
    Index

    Properties

    forceUpdate?: string | boolean

    Force the update of the resolved stack output even if the value has not changed. If set to true, the custom resource will always trigger an update to the stack. This can be useful for ensuring that the output is always up-to-date, but it may lead to unnecessary stack updates and increased deployment times.

    A custom string token can also be passed. If the string value has changed, an update will be triggerred

    No update is performed on stack deploy
    
    paramName: string

    The name of the exported CloudFormation stack output to resolve outputs from.

    region?: "eu-central-1" | "eu-north-1" | "eu-west-1" | "us-east-1"

    Optional. The region where the stack is deployed. If not provided, the current region will be used.

    stackOutputResolverLambda?: IFunction

    Optional. The Lambda function to use for resolving the stack output. If not provided, a new Lambda function will be created.