Struct rusoto_storagegateway::DescribeChapCredentialsOutput[][src]

pub struct DescribeChapCredentialsOutput {
    pub chap_credentials: Option<Vec<ChapInfo>>,
}

A JSON object containing a .

Fields

An array of ChapInfo objects that represent CHAP credentials. Each object in the array contains CHAP credential information for one target-initiator pair. If no CHAP credentials are set, an empty array is returned. CHAP credential information is provided in a JSON object with the following fields:

  • InitiatorName: The iSCSI initiator that connects to the target.

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

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

  • TargetARN: The Amazon Resource Name (ARN) of the storage volume.

Trait Implementations

impl Default for DescribeChapCredentialsOutput
[src]

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

impl Debug for DescribeChapCredentialsOutput
[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeChapCredentialsOutput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for DescribeChapCredentialsOutput
[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