Struct rusoto_storagegateway::UpdateChapCredentialsInput[][src]

pub struct UpdateChapCredentialsInput {
    pub initiator_name: String,
    pub secret_to_authenticate_initiator: String,
    pub secret_to_authenticate_target: Option<String>,
    pub target_arn: String,
}

Fields

The iSCSI initiator that connects to the target.

The secret key that the initiator (for example, the Windows client) must provide to participate in mutual CHAP with the target.

The secret key must be between 12 and 16 bytes when encoded in UTF-8.

The secret key that the target must provide to participate in mutual CHAP with the initiator (e.g. Windows client).

Byte constraints: Minimum bytes of 12. Maximum bytes of 16.

The secret key must be between 12 and 16 bytes when encoded in UTF-8.

The Amazon Resource Name (ARN) of the iSCSI volume target. Use the DescribeStorediSCSIVolumes operation to return the TargetARN for specified VolumeARN.

Trait Implementations

impl Default for UpdateChapCredentialsInput
[src]

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

impl Debug for UpdateChapCredentialsInput
[src]

Formats the value using the given formatter. Read more

impl Clone for UpdateChapCredentialsInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for UpdateChapCredentialsInput
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations