Class: Aws::SSOAdmin::Types::AuthenticationMethod
- Inherits:
-
Struct
- Object
- Struct
- Aws::SSOAdmin::Types::AuthenticationMethod
- Includes:
- Aws::Structure, Aws::Structure::Union
- Defined in:
- 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.
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#iam ⇒ Types::IamAuthenticationMethod
A structure that describes details for IAM authentication.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#iam ⇒ Types::IamAuthenticationMethod
A structure that describes details for IAM authentication.
482 483 484 485 486 487 488 489 490 491 |
# File '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 |
#unknown ⇒ Object
Returns the value of attribute unknown
482 483 484 |
# File 'lib/aws-sdk-ssoadmin/types.rb', line 482 def unknown @unknown end |