Class: Aws::Transfer::Types::UserDetails

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

Overview

Specifies the user name, server ID, and session ID for a workflow.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#server_idString

The system-assigned unique identifier for a Transfer server instance.

Returns:

  • (String)


6330
6331
6332
6333
6334
6335
6336
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 6330

class UserDetails < Struct.new(
  :user_name,
  :server_id,
  :session_id)
  SENSITIVE = []
  include Aws::Structure
end

#session_idString

The system-assigned unique identifier for a session that corresponds to the workflow.

Returns:

  • (String)


6330
6331
6332
6333
6334
6335
6336
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 6330

class UserDetails < Struct.new(
  :user_name,
  :server_id,
  :session_id)
  SENSITIVE = []
  include Aws::Structure
end

#user_nameString

A unique string that identifies a Transfer Family user associated with a server.

Returns:

  • (String)


6330
6331
6332
6333
6334
6335
6336
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 6330

class UserDetails < Struct.new(
  :user_name,
  :server_id,
  :session_id)
  SENSITIVE = []
  include Aws::Structure
end