Class: Aws::ConnectCases::Types::UserUnion

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-connectcases/lib/aws-sdk-connectcases/types.rb

Overview

Note:

UserUnion is a union - when making an API calls you must set exactly one of the members.

Note:

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

Represents the identity of the person who performed the action.

Direct Known Subclasses

Unknown, UserArn

Defined Under Namespace

Classes: Unknown, UserArn

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



2613
2614
2615
# File 'gems/aws-sdk-connectcases/lib/aws-sdk-connectcases/types.rb', line 2613

def unknown
  @unknown
end

#user_arnString

Represents the Amazon Connect ARN of the user.

Returns:

  • (String)


2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
# File 'gems/aws-sdk-connectcases/lib/aws-sdk-connectcases/types.rb', line 2613

class UserUnion < Struct.new(
  :user_arn,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class UserArn < UserUnion; end
  class Unknown < UserUnion; end
end