Class: Aws::StorageGateway::Types::ChapInfo

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-storagegateway/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

Instance Attribute Details

#initiator_nameString

The iSCSI initiator that connects to the target.

Returns:

  • (String)


902
903
904
905
906
907
908
909
# File 'gems/aws-sdk-storagegateway/lib/aws-sdk-storagegateway/types.rb', line 902

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_initiatorString

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

Returns:

  • (String)


902
903
904
905
906
907
908
909
# File 'gems/aws-sdk-storagegateway/lib/aws-sdk-storagegateway/types.rb', line 902

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_targetString

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

Returns:

  • (String)


902
903
904
905
906
907
908
909
# File 'gems/aws-sdk-storagegateway/lib/aws-sdk-storagegateway/types.rb', line 902

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_arnString

The Amazon Resource Name (ARN) of the volume.

Valid Values: 50 to 500 lowercase letters, numbers, periods (.), and hyphens (-).

Returns:

  • (String)


902
903
904
905
906
907
908
909
# File 'gems/aws-sdk-storagegateway/lib/aws-sdk-storagegateway/types.rb', line 902

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