Class: Aws::DataZone::Types::MemberDetails

Inherits:
Struct
  • Object
show all
Includes:
Structure, Structure::Union
Defined in:
lib/aws-sdk-datazone/types.rb

Overview

Note:

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

The details about a project member.

Direct Known Subclasses

Group, Unknown, User

Defined Under Namespace

Classes: Group, Unknown, User

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#groupTypes::GroupDetails

The group details of a project member.

Returns:



14626
14627
14628
14629
14630
14631
14632
14633
14634
14635
14636
14637
# File 'lib/aws-sdk-datazone/types.rb', line 14626

class MemberDetails < Struct.new(
  :group,
  :user,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class Group < MemberDetails; end
  class User < MemberDetails; end
  class Unknown < MemberDetails; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



14626
14627
14628
# File 'lib/aws-sdk-datazone/types.rb', line 14626

def unknown
  @unknown
end

#userTypes::UserDetails

The user details of a project member.

Returns:



14626
14627
14628
14629
14630
14631
14632
14633
14634
14635
14636
14637
# File 'lib/aws-sdk-datazone/types.rb', line 14626

class MemberDetails < Struct.new(
  :group,
  :user,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class Group < MemberDetails; end
  class User < MemberDetails; end
  class Unknown < MemberDetails; end
end