Class: Aws::MPA::Types::IdentitySourceParametersForList

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

Overview

Note:

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

Contains details for the resource that provides identities to the identity source. For example, an IAM Identity Center instance. For more information, see Identity source in the Multi-party approval User Guide.

Direct Known Subclasses

IamIdentityCenter, Unknown

Defined Under Namespace

Classes: IamIdentityCenter, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#iam_identity_centerTypes::IamIdentityCenterForList

IAM Identity Center credentials.



1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
# File 'gems/aws-sdk-mpa/lib/aws-sdk-mpa/types.rb', line 1082

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

  class IamIdentityCenter < IdentitySourceParametersForList; end
  class Unknown < IdentitySourceParametersForList; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



1082
1083
1084
# File 'gems/aws-sdk-mpa/lib/aws-sdk-mpa/types.rb', line 1082

def unknown
  @unknown
end