diggy - v1.1.1
    Preparing search index...

    Type Alias CaaRecordData

    Represents the data for a DNS CAA (Certification Authority Authorization) record.

    type CaaRecordData = {
        flags: number;
        tag: string;
        value: string;
    }
    Index

    Properties

    Properties

    flags: number

    The flags for the CAA record, indicating whether the record is critical or not.

    tag: string

    The tag for the CAA record, indicating the type of authorization (e.g., "issue", "issuewild", "iodef").

    value: string

    The value for the CAA record, which specifies the authorized certificate authority or other information.