Class: Aws::AccountAccess::Types::IdentitySourceDetails

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#identity_centerTypes::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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



535
536
537
# File 'gems/aws-sdk-accountaccess/lib/aws-sdk-accountaccess/types.rb', line 535

def unknown
  @unknown
end