Interface TagValidationOptions

interface TagValidationOptions {
    account_id?: string;
    description?: string;
    detect_duplicates?: boolean;
    do_validation?: boolean;
    enabled?: boolean;
    hostname_detection?: string;
    hostname_validation?: string;
    interception?: {
        intercept?: boolean;
        intercept_body?: string;
        intercept_headers?: string;
        intercept_status?: number;
    };
    pathname_detection?: string;
    pathname_validation?: string;
    position?: number;
    query_detection?: string;
    validate_absence?: boolean;
}

Hierarchy

  • ResourceOptions
    • TagValidationOptions

Properties

account_id?: string
description?: string
detect_duplicates?: boolean
do_validation?: boolean
enabled?: boolean
hostname_detection?: string
hostname_validation?: string
interception?: {
    intercept?: boolean;
    intercept_body?: string;
    intercept_headers?: string;
    intercept_status?: number;
}

Type declaration

  • Optional intercept?: boolean
  • Optional intercept_body?: string
  • Optional intercept_headers?: string
  • Optional intercept_status?: number
pathname_detection?: string
pathname_validation?: string
position?: number
query_detection?: string
validate_absence?: boolean