Change triggered by the Change AttributeDefinition IsSearchable update action.

interface ChangeIsSearchableChange {
    attributeName: string;
    change: string;
    nextValue: boolean;
    previousValue: boolean;
    type: "ChangeIsSearchableChange";
}

Properties

attributeName: string

Name of the updated AttributeDefinition.

change: string
nextValue: boolean

Value after the change.

previousValue: boolean

Value before the change.

type: "ChangeIsSearchableChange"