Class: Aws::StorageGateway::Types::ChapInfo
- Inherits:
-
Struct
- Object
- Struct
- Aws::StorageGateway::Types::ChapInfo
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-storagegateway/types.rb
Overview
Describes Challenge-Handshake Authentication Protocol (CHAP) information that supports authentication between your gateway and iSCSI initiators.
Constant Summary collapse
- SENSITIVE =
[:secret_to_authenticate_initiator, :secret_to_authenticate_target]
Instance Attribute Summary collapse
-
#initiator_name ⇒ String
The iSCSI initiator that connects to the target.
-
#secret_to_authenticate_initiator ⇒ String
The secret key that the initiator (for example, the Windows client) must provide to participate in mutual CHAP with the target.
-
#secret_to_authenticate_target ⇒ String
The secret key that the target must provide to participate in mutual CHAP with the initiator (e.g., Windows client).
-
#target_arn ⇒ String
The Amazon Resource Name (ARN) of the volume.
Instance Attribute Details
#initiator_name ⇒ String
The iSCSI initiator that connects to the target.
921 922 923 924 925 926 927 928 |
# File 'lib/aws-sdk-storagegateway/types.rb', line 921 class ChapInfo < Struct.new( :target_arn, :secret_to_authenticate_initiator, :initiator_name, :secret_to_authenticate_target) SENSITIVE = [:secret_to_authenticate_initiator, :secret_to_authenticate_target] include Aws::Structure end |
#secret_to_authenticate_initiator ⇒ String
The secret key that the initiator (for example, the Windows client) must provide to participate in mutual CHAP with the target.
921 922 923 924 925 926 927 928 |
# File 'lib/aws-sdk-storagegateway/types.rb', line 921 class ChapInfo < Struct.new( :target_arn, :secret_to_authenticate_initiator, :initiator_name, :secret_to_authenticate_target) SENSITIVE = [:secret_to_authenticate_initiator, :secret_to_authenticate_target] include Aws::Structure end |
#secret_to_authenticate_target ⇒ String
The secret key that the target must provide to participate in mutual CHAP with the initiator (e.g., Windows client).
921 922 923 924 925 926 927 928 |
# File 'lib/aws-sdk-storagegateway/types.rb', line 921 class ChapInfo < Struct.new( :target_arn, :secret_to_authenticate_initiator, :initiator_name, :secret_to_authenticate_target) SENSITIVE = [:secret_to_authenticate_initiator, :secret_to_authenticate_target] include Aws::Structure end |
#target_arn ⇒ String
The Amazon Resource Name (ARN) of the volume.
Valid Values: 50 to 500 lowercase letters, numbers, periods (.), and hyphens (-).
921 922 923 924 925 926 927 928 |
# File 'lib/aws-sdk-storagegateway/types.rb', line 921 class ChapInfo < Struct.new( :target_arn, :secret_to_authenticate_initiator, :initiator_name, :secret_to_authenticate_target) SENSITIVE = [:secret_to_authenticate_initiator, :secret_to_authenticate_target] include Aws::Structure end |