Class: Aws::Transfer::Types::IdentityProviderDetails

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 IdentityProviderDetails data as a hash:

{
  url: "Url",
  invocation_role: "Role",
}

Returns information related to the type of user authentication that is in use for a server’s users. A server can have only one method of authentication.

Instance Attribute Summary collapse

Instance Attribute Details

#invocation_roleString

The ‘InvocationRole` parameter provides the type of `InvocationRole` used to authenticate the user account.

Returns:

  • (String)


727
728
729
730
731
# File 'lib/aws-sdk-transfer/types.rb', line 727

class IdentityProviderDetails < Struct.new(
  :url,
  :invocation_role)
  include Aws::Structure
end

#urlString

The ‘Url` parameter provides contains the location of the service endpoint used to authenticate users.

Returns:

  • (String)


727
728
729
730
731
# File 'lib/aws-sdk-transfer/types.rb', line 727

class IdentityProviderDetails < Struct.new(
  :url,
  :invocation_role)
  include Aws::Structure
end