[][src]Struct rusoto_cloudhsm::DescribeHsmResponse

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

availability_zone: Option<String>

The Availability Zone that the HSM is in.

eni_id: Option<String>

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

eni_ip: Option<String>

The IP address assigned to the HSM's ENI.

hsm_arn: Option<String>

The ARN of the HSM.

hsm_type: Option<String>

The HSM model type.

iam_role_arn: Option<String>

The ARN of the IAM role assigned to the HSM.

partitions: Option<Vec<String>>

The list of partitions on the HSM.

serial_number: Option<String>

The serial number of the HSM.

server_cert_last_updated: Option<String>

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

server_cert_uri: Option<String>

The URI of the certificate server.

software_version: Option<String>

The HSM software version.

ssh_key_last_updated: Option<String>

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

ssh_public_key: Option<String>

The public SSH key.

status: Option<String>

The status of the HSM.

status_details: Option<String>

Contains additional information about the status of the HSM.

subnet_id: Option<String>

The identifier of the subnet that the HSM is in.

subscription_end_date: Option<String>

The subscription end date.

subscription_start_date: Option<String>

The subscription start date.

subscription_type: Option<String>vendor_name: Option<String>

The name of the HSM vendor.

vpc_id: Option<String>

The identifier of the VPC that the HSM is in.

Trait Implementations

impl Clone for DescribeHsmResponse[src]

impl Default for DescribeHsmResponse[src]

impl PartialEq<DescribeHsmResponse> for DescribeHsmResponse[src]

impl Debug for DescribeHsmResponse[src]

impl<'de> Deserialize<'de> for DescribeHsmResponse[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self