Takomo v9.0.1
    Preparing search index...

    Type Alias FailedUpdateCustomStackResult

    Represents a failed result of updating a custom stack.

    Provides information about why the update operation failed, including optional error details and descriptive messages for troubleshooting.

    type FailedUpdateCustomStackResult = {
        error?: Error;
        message?: string;
        success: false;
    }
    Index

    Properties

    error?: Error

    An optional error object containing detailed information about the failure.

    message?: string

    An optional human-readable message providing additional context about the failure.

    success: false