Takomo v9.0.1
    Preparing search index...

    Type Alias CustomStackState

    Represents the state of a custom stack. All but the status property are optional to allow flexibility for different custom stack implementations.

    type CustomStackState = {
        creationTime?: Date;
        lastUpdatedTime?: Date;
        outputs?: Outputs;
        parameters?: Parameters;
        status: CustomStackStatus;
        tags?: Tags;
    }
    Index

    Properties

    creationTime?: Date

    Optional property representing the creation time of the custom stack.

    lastUpdatedTime?: Date

    Optional property representing the last updated time of the custom stack.

    outputs?: Outputs

    Optional property representing the outputs of the custom stack.

    parameters?: Parameters

    Optional property representing the parameters of the custom stack.

    status: CustomStackStatus

    The status of the custom stack. This property is mandatory and is used to represent the current status of the custom stack.

    tags?: Tags

    Optional property representing the tags of the custom stack.