DigestArgs

data class DigestArgs(val algorithmType: Output<Int>? = null, val value: Output<String>? = null) : ConvertibleToJava<DigestArgs>

A digest.

Constructors

Link copied to clipboard
constructor(algorithmType: Output<Int>? = null, value: Output<String>? = null)

Properties

Link copied to clipboard
val algorithmType: Output<Int>? = null

The digest algorithm type represents the standard digest algorithm number used to construct the digest. See: https://www.iana.org/assignments/ds-rr-types/ds-rr-types.xhtml

Link copied to clipboard
val value: Output<String>? = null

The digest value is a cryptographic hash value of the referenced DNSKEY Resource Record.

Functions

Link copied to clipboard
open override fun toJava(): DigestArgs