Struct rusoto_cloudhsmv2::CreateClusterRequest [] [src]

pub struct CreateClusterRequest {
    pub hsm_type: String,
    pub source_backup_id: Option<String>,
    pub subnet_ids: Vec<String>,
}

Fields

The type of HSM to use in the cluster. Currently the only allowed value is hsm1.medium.

The identifier (ID) of the cluster backup to restore. Use this value to restore the cluster from a backup instead of creating a new cluster. To find the backup ID, use DescribeBackups.

The identifiers (IDs) of the subnets where you are creating the cluster. You must specify at least one subnet. If you specify multiple subnets, they must meet the following criteria:

  • All subnets must be in the same virtual private cloud (VPC).

  • You can specify only one subnet per Availability Zone.

Trait Implementations

impl Default for CreateClusterRequest
[src]

[src]

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

impl Debug for CreateClusterRequest
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for CreateClusterRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations