CaCertificateSource

sealed class CaCertificateSource

The source of a trusted CA certificate. Exactly one member must be set.

Inheritors

Types

Link copied to clipboard
data class ArtifactId(val value: String) : CaCertificateSource

The artifact ID of an uploaded certificate file.

Link copied to clipboard
data class InlinePem(val value: String) : CaCertificateSource

A PEM-encoded X.509 certificate supplied inline.

Link copied to clipboard
data class S3Location(val value: String) : CaCertificateSource

The Amazon S3 location URI of a customer-staged certificate.

Link copied to clipboard

Functions

Link copied to clipboard

Casts this CaCertificateSource as a ArtifactId and retrieves its kotlin.String value. Throws an exception if the CaCertificateSource is not a ArtifactId.

Link copied to clipboard

Casts this CaCertificateSource as a ArtifactId and retrieves its kotlin.String value. Returns null if the CaCertificateSource is not a ArtifactId.

Link copied to clipboard

Casts this CaCertificateSource as a InlinePem and retrieves its kotlin.String value. Throws an exception if the CaCertificateSource is not a InlinePem.

Link copied to clipboard

Casts this CaCertificateSource as a InlinePem and retrieves its kotlin.String value. Returns null if the CaCertificateSource is not a InlinePem.

Link copied to clipboard

Casts this CaCertificateSource as a S3Location and retrieves its kotlin.String value. Throws an exception if the CaCertificateSource is not a S3Location.

Link copied to clipboard

Casts this CaCertificateSource as a S3Location and retrieves its kotlin.String value. Returns null if the CaCertificateSource is not a S3Location.