SubjectArgs

data class SubjectArgs(val commonName: Output<String>? = null, val countryCode: Output<String>? = null, val locality: Output<String>? = null, val organization: Output<String>? = null, val organizationalUnit: Output<String>? = null, val postalCode: Output<String>? = null, val province: Output<String>? = null, val streetAddress: Output<String>? = null) : ConvertibleToJava<SubjectArgs>

Subject describes parts of a distinguished name that, in turn, describes the subject of the certificate.

Constructors

Link copied to clipboard
constructor(commonName: Output<String>? = null, countryCode: Output<String>? = null, locality: Output<String>? = null, organization: Output<String>? = null, organizationalUnit: Output<String>? = null, postalCode: Output<String>? = null, province: Output<String>? = null, streetAddress: Output<String>? = null)

Properties

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

The "common name" of the subject.

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

The country code of the subject.

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

The locality or city of the subject.

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

The organization of the subject.

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

The organizational_unit of the subject.

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

The postal code of the subject.

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

The province, territory, or regional state of the subject.

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

The street address of the subject.

Functions

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