Class: Aws::DataZone::Types::UserProfileDetails

Inherits:
Struct
  • Object
show all
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 user profile details.

Defined Under Namespace

Classes: Iam, Sso, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#iamTypes::IamUserProfileDetails

The IAM details of the user profile.



25524
25525
25526
25527
25528
25529
25530
25531
25532
25533
25534
25535
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 25524

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

#ssoTypes::SsoUserProfileDetails

The SSO details of the user profile.



25524
25525
25526
25527
25528
25529
25530
25531
25532
25533
25534
25535
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 25524

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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



25524
25525
25526
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 25524

def unknown
  @unknown
end