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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-datazone/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:



8178
8179
8180
8181
8182
8183
8184
8185
8186
8187
8188
8189
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 8178

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



8178
8179
8180
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 8178

def unknown
  @unknown
end

#userTypes::UserDetails

The user details of a project member.

Returns:



8178
8179
8180
8181
8182
8183
8184
8185
8186
8187
8188
8189
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 8178

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