[][src]Struct rusoto_redshift::CreateHsmConfigurationMessage

pub struct CreateHsmConfigurationMessage {
    pub description: String,
    pub hsm_configuration_identifier: String,
    pub hsm_ip_address: String,
    pub hsm_partition_name: String,
    pub hsm_partition_password: String,
    pub hsm_server_public_certificate: String,
    pub tags: Option<Vec<Tag>>,
}

Fields

description: String

A text description of the HSM configuration to be created.

hsm_configuration_identifier: String

The identifier to be assigned to the new Amazon Redshift HSM configuration.

hsm_ip_address: String

The IP address that the Amazon Redshift cluster must use to access the HSM.

hsm_partition_name: String

The name of the partition in the HSM where the Amazon Redshift clusters will store their database encryption keys.

hsm_partition_password: String

The password required to access the HSM partition.

hsm_server_public_certificate: String

The HSMs public certificate file. When using Cloud HSM, the file name is server.pem.

tags: Option<Vec<Tag>>

A list of tag instances.

Trait Implementations

impl Clone for CreateHsmConfigurationMessage[src]

impl Debug for CreateHsmConfigurationMessage[src]

impl Default for CreateHsmConfigurationMessage[src]

impl PartialEq<CreateHsmConfigurationMessage> for CreateHsmConfigurationMessage[src]

impl StructuralPartialEq for CreateHsmConfigurationMessage[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, 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.