Class: Aws::AccountAccess::Types::IdentitySource
- Inherits:
-
Struct
- Object
- Struct
- Aws::AccountAccess::Types::IdentitySource
- Defined in:
- gems/aws-sdk-accountaccess/lib/aws-sdk-accountaccess/types.rb
Overview
Note:
IdentitySource is a union - when making an API calls you must set exactly one of the members.
Specifies the identity source for an account access manager application.
Defined Under Namespace
Classes: IdentityCenter, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#identity_center ⇒ Types::IdentityCenter
The IAM Identity Center instance to use as the identity source.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#identity_center ⇒ Types::IdentityCenter
The IAM Identity Center instance to use as the identity source.
512 513 514 515 516 517 518 519 520 521 |
# File 'gems/aws-sdk-accountaccess/lib/aws-sdk-accountaccess/types.rb', line 512 class IdentitySource < Struct.new( :identity_center, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class IdentityCenter < IdentitySource; end class Unknown < IdentitySource; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
512 513 514 |
# File 'gems/aws-sdk-accountaccess/lib/aws-sdk-accountaccess/types.rb', line 512 def unknown @unknown end |