Class: Aws::AccountAccess::Types::IdentitySourceDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::AccountAccess::Types::IdentitySourceDetails
- Defined in:
- gems/aws-sdk-accountaccess/lib/aws-sdk-accountaccess/types.rb
Overview
Note:
IdentitySourceDetails is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of IdentitySourceDetails corresponding to the set member.
Contains detailed information about the identity source for an application.
Defined Under Namespace
Classes: IdentityCenter, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#identity_center ⇒ Types::IdentityCenterDetails
The IAM Identity Center configuration details for the identity source.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#identity_center ⇒ Types::IdentityCenterDetails
The IAM Identity Center configuration details for the identity source.
535 536 537 538 539 540 541 542 543 544 |
# File 'gems/aws-sdk-accountaccess/lib/aws-sdk-accountaccess/types.rb', line 535 class IdentitySourceDetails < Struct.new( :identity_center, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class IdentityCenter < IdentitySourceDetails; end class Unknown < IdentitySourceDetails; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
535 536 537 |
# File 'gems/aws-sdk-accountaccess/lib/aws-sdk-accountaccess/types.rb', line 535 def unknown @unknown end |