Class: Aws::Transfer::Types::TestIdentityProviderRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-transfer/types.rb

Overview

Note:

When making an API call, you may pass TestIdentityProviderRequest data as a hash:

{
  server_id: "ServerId", # required
  user_name: "UserName", # required
  user_password: "UserPassword",
}

Instance Attribute Summary collapse

Instance Attribute Details

#server_idString

A system assigned identifier for a specific server. That server’s user authentication method is tested with a user name and password.

Returns:

  • (String)


948
949
950
951
952
953
# File 'lib/aws-sdk-transfer/types.rb', line 948

class TestIdentityProviderRequest < Struct.new(
  :server_id,
  :user_name,
  :user_password)
  include Aws::Structure
end

#user_nameString

This request parameter is name of the user account to be tested.

Returns:

  • (String)


948
949
950
951
952
953
# File 'lib/aws-sdk-transfer/types.rb', line 948

class TestIdentityProviderRequest < Struct.new(
  :server_id,
  :user_name,
  :user_password)
  include Aws::Structure
end

#user_passwordString

The password of the user account to be tested.

Returns:

  • (String)


948
949
950
951
952
953
# File 'lib/aws-sdk-transfer/types.rb', line 948

class TestIdentityProviderRequest < Struct.new(
  :server_id,
  :user_name,
  :user_password)
  include Aws::Structure
end