Struct rusoto_cloudhsmv2::InitializeClusterRequest[][src]

pub struct InitializeClusterRequest {
    pub cluster_id: String,
    pub signed_cert: String,
    pub trust_anchor: String,
}

Fields

The identifier (ID) of the cluster that you are claiming. To find the cluster ID, use DescribeClusters.

The cluster certificate issued (signed) by your issuing certificate authority (CA). The certificate must be in PEM format and can contain a maximum of 5000 characters.

The issuing certificate of the issuing certificate authority (CA) that issued (signed) the cluster certificate. This can be a root (self-signed) certificate or a certificate chain that begins with the certificate that issued the cluster certificate and ends with a root certificate. The certificate or certificate chain must be in PEM format and can contain a maximum of 5000 characters.

Trait Implementations

impl Default for InitializeClusterRequest
[src]

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

impl Debug for InitializeClusterRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for InitializeClusterRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for InitializeClusterRequest
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations