Class: Aws::MPA::Types::IdentitySourceParametersForList
- Inherits:
-
Struct
- Object
- Struct
- Aws::MPA::Types::IdentitySourceParametersForList
- 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
Defined Under Namespace
Classes: IamIdentityCenter, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#iam_identity_center ⇒ Types::IamIdentityCenterForList
IAM Identity Center credentials.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#iam_identity_center ⇒ Types::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 |
#unknown ⇒ Object
Returns the value of attribute unknown
1082 1083 1084 |
# File 'gems/aws-sdk-mpa/lib/aws-sdk-mpa/types.rb', line 1082 def unknown @unknown end |