Class: Aws::DataZone::Types::UserProfileDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataZone::Types::UserProfileDetails
- Defined in:
- gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb
Overview
Note:
UserProfileDetails is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of UserProfileDetails corresponding to the set member.
The details of the user profile in Amazon DataZone.
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#iam ⇒ Types::IamUserProfileDetails
The IAM details included in the user profile details.
-
#sso ⇒ Types::SsoUserProfileDetails
The single sign-on details included in the user profile details.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#iam ⇒ Types::IamUserProfileDetails
The IAM details included in the user profile details.
20441 20442 20443 20444 20445 20446 20447 20448 20449 20450 20451 20452 |
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 20441 class UserProfileDetails < Struct.new( :iam, :sso, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Iam < UserProfileDetails; end class Sso < UserProfileDetails; end class Unknown < UserProfileDetails; end end |
#sso ⇒ Types::SsoUserProfileDetails
The single sign-on details included in the user profile details.
20441 20442 20443 20444 20445 20446 20447 20448 20449 20450 20451 20452 |
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 20441 class UserProfileDetails < Struct.new( :iam, :sso, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Iam < UserProfileDetails; end class Sso < UserProfileDetails; end class Unknown < UserProfileDetails; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
20441 20442 20443 |
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 20441 def unknown @unknown end |