Takomo v9.0.1
    Preparing search index...

    Type Alias FailedDeleteCustomStackResult

    Represents a failed result of deleting a custom stack.

    Provides information about why the deletion operation failed, which can help with troubleshooting and retry strategies.

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

    Properties

    error?: Error

    An optional error object containing detailed information about the deletion failure.

    message?: string

    An optional human-readable message describing why the deletion failed. This can provide context about partial deletions, dependency issues, or other problems.

    success: false