Class: Aws::StorageGateway::Types::DescribeChapCredentialsOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::StorageGateway::Types::DescribeChapCredentialsOutput
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-storagegateway/types.rb
Overview
A JSON object containing the following fields:
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#chap_credentials ⇒ Array<Types::ChapInfo>
An array of ChapInfo objects that represent CHAP credentials.
Instance Attribute Details
#chap_credentials ⇒ Array<Types::ChapInfo>
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.
2830 2831 2832 2833 2834 |
# File 'lib/aws-sdk-storagegateway/types.rb', line 2830 class DescribeChapCredentialsOutput < Struct.new( :chap_credentials) SENSITIVE = [] include Aws::Structure end |