Struct rusoto_cloudhsm::DescribeHsmResponse [] [src]

pub struct DescribeHsmResponse {
    pub availability_zone: Option<String>,
    pub eni_id: Option<String>,
    pub eni_ip: Option<String>,
    pub hsm_arn: Option<String>,
    pub hsm_type: Option<String>,
    pub iam_role_arn: Option<String>,
    pub partitions: Option<Vec<String>>,
    pub serial_number: Option<String>,
    pub server_cert_last_updated: Option<String>,
    pub server_cert_uri: Option<String>,
    pub software_version: Option<String>,
    pub ssh_key_last_updated: Option<String>,
    pub ssh_public_key: Option<String>,
    pub status: Option<String>,
    pub status_details: Option<String>,
    pub subnet_id: Option<String>,
    pub subscription_end_date: Option<String>,
    pub subscription_start_date: Option<String>,
    pub subscription_type: Option<String>,
    pub vendor_name: Option<String>,
    pub vpc_id: Option<String>,
}

Contains the output of the DescribeHsm operation.

Fields

The Availability Zone that the HSM is in.

The identifier of the elastic network interface (ENI) attached to the HSM.

The IP address assigned to the HSM's ENI.

The ARN of the HSM.

The HSM model type.

The ARN of the IAM role assigned to the HSM.

The list of partitions on the HSM.

The serial number of the HSM.

The date and time that the server certificate was last updated.

The URI of the certificate server.

The HSM software version.

The date and time that the SSH key was last updated.

The public SSH key.

The status of the HSM.

Contains additional information about the status of the HSM.

The identifier of the subnet that the HSM is in.

The subscription end date.

The subscription start date.

The name of the HSM vendor.

The identifier of the VPC that the HSM is in.

Trait Implementations

impl Default for DescribeHsmResponse
[src]

[src]

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

impl Debug for DescribeHsmResponse
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeHsmResponse
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations