Class: Aws::SSOAdmin::Types::AuthenticationMethod

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

Overview

Note:

AuthenticationMethod is a union - when making an API calls you must set exactly one of the members.

Note:

AuthenticationMethod is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of AuthenticationMethod corresponding to the set member.

A structure that describes an authentication method that can be used by an application.

Direct Known Subclasses

Iam, Unknown

Defined Under Namespace

Classes: Iam, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#iamTypes::IamAuthenticationMethod

A structure that describes details for IAM authentication.



482
483
484
485
486
487
488
489
490
491
# File 'gems/aws-sdk-ssoadmin/lib/aws-sdk-ssoadmin/types.rb', line 482

class AuthenticationMethod < Struct.new(
  :iam,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class Iam < AuthenticationMethod; end
  class Unknown < AuthenticationMethod; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



482
483
484
# File 'gems/aws-sdk-ssoadmin/lib/aws-sdk-ssoadmin/types.rb', line 482

def unknown
  @unknown
end