Class: Aws::Transfer::Types::TestConnectionResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Transfer::Types::TestConnectionResponse
- Defined in:
- gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#connector_id ⇒ String
Returns the identifier of the connector object that you are testing.
-
#sftp_connection_details ⇒ Types::SftpConnectorConnectionDetails
Structure that contains the SFTP connector host key.
-
#status ⇒ String
Returns
OKfor successful test, orERRORif the test fails. -
#status_message ⇒ String
Returns
Connection succeededif the test is successful.
Instance Attribute Details
#connector_id ⇒ String
Returns the identifier of the connector object that you are testing.
6504 6505 6506 6507 6508 6509 6510 6511 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 6504 class TestConnectionResponse < Struct.new( :connector_id, :status, :status_message, :sftp_connection_details) SENSITIVE = [] include Aws::Structure end |
#sftp_connection_details ⇒ Types::SftpConnectorConnectionDetails
Structure that contains the SFTP connector host key.
6504 6505 6506 6507 6508 6509 6510 6511 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 6504 class TestConnectionResponse < Struct.new( :connector_id, :status, :status_message, :sftp_connection_details) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
Returns OK for successful test, or ERROR if the test fails.
6504 6505 6506 6507 6508 6509 6510 6511 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 6504 class TestConnectionResponse < Struct.new( :connector_id, :status, :status_message, :sftp_connection_details) SENSITIVE = [] include Aws::Structure end |
#status_message ⇒ String
Returns Connection succeeded if the test is successful. Or,
returns a descriptive error message if the test fails. The following
list provides troubleshooting details, depending on the error
message that you receive.
Verify that your secret name aligns with the one in Transfer Role permissions.
Verify the server URL in the connector configuration , and verify that the login credentials work successfully outside of the connector.
Verify that the secret exists and is formatted correctly.
Verify that the trusted host key in the connector configuration matches the
ssh-keyscanoutput.
6504 6505 6506 6507 6508 6509 6510 6511 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 6504 class TestConnectionResponse < Struct.new( :connector_id, :status, :status_message, :sftp_connection_details) SENSITIVE = [] include Aws::Structure end |