[][src]Struct rusoto_cloudhsmv2::CreateHsmRequest

pub struct CreateHsmRequest {
    pub availability_zone: String,
    pub cluster_id: String,
    pub ip_address: Option<String>,
}

Fields

availability_zone: String

The Availability Zone where you are creating the HSM. To find the cluster's Availability Zones, use DescribeClusters.

cluster_id: String

The identifier (ID) of the HSM's cluster. To find the cluster ID, use DescribeClusters.

ip_address: Option<String>

The HSM's IP address. If you specify an IP address, use an available address from the subnet that maps to the Availability Zone where you are creating the HSM. If you don't specify an IP address, one is chosen for you from that subnet.

Trait Implementations

impl Clone for CreateHsmRequest[src]

impl Debug for CreateHsmRequest[src]

impl Default for CreateHsmRequest[src]

impl PartialEq<CreateHsmRequest> for CreateHsmRequest[src]

impl Serialize for CreateHsmRequest[src]

impl StructuralPartialEq for CreateHsmRequest[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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.