Struct google_cloudiot1::X509CertificateDetails[][src]

pub struct X509CertificateDetails {
    pub start_time: Option<String>,
    pub signature_algorithm: Option<String>,
    pub subject: Option<String>,
    pub expiry_time: Option<String>,
    pub public_key_type: Option<String>,
    pub issuer: Option<String>,
}

Details of an X.509 certificate. For informational purposes only.

This type is not used in any activity, and only used as part of another schema.

Fields

The time the certificate becomes valid.

The algorithm used to sign the certificate.

The entity the certificate and public key belong to.

The time the certificate becomes invalid.

The type of public key in the certificate.

The entity that signed the certificate.

Trait Implementations

impl Default for X509CertificateDetails
[src]

Returns the "default value" for a type. Read more

impl Clone for X509CertificateDetails
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for X509CertificateDetails
[src]

Formats the value using the given formatter. Read more

impl Part for X509CertificateDetails
[src]

Auto Trait Implementations