[][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 PartialEq<DescribeHsmResponse> for DescribeHsmResponse[src]

impl Default for DescribeHsmResponse[src]

impl Clone for DescribeHsmResponse[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for DescribeHsmResponse[src]

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

Auto Trait Implementations

impl Send for DescribeHsmResponse

impl Sync for DescribeHsmResponse

Blanket Implementations

impl<T> From for T[src]

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

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

type Owned = T

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self