Interface for the ManagedServiceData

interface ManagedServiceData {
    defaultAction: {
        type:
            | "COUNT"
            | "NONE"
            | "ALLOW"
            | "DENY";
    };
    loggingConfiguration: {
        logDestinationConfigs: string[];
    };
    overrideCustomerWebACLAssociation: boolean;
    postProcessRuleGroups: any;
    preProcessRuleGroups: any;
    type: string;
}

Properties

defaultAction: {
    type:
        | "COUNT"
        | "NONE"
        | "ALLOW"
        | "DENY";
}
loggingConfiguration: {
    logDestinationConfigs: string[];
}
overrideCustomerWebACLAssociation: boolean
postProcessRuleGroups: any
preProcessRuleGroups: any
type: string