Class: Aws::ConnectCases::Types::UserUnion
- Inherits:
-
Struct
- Object
- Struct
- Aws::ConnectCases::Types::UserUnion
- 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.
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#unknown ⇒ Object
Returns the value of attribute unknown.
-
#user_arn ⇒ String
Represents the Amazon Connect ARN of the user.
Instance Attribute Details
#unknown ⇒ Object
Returns the value of attribute unknown
2613 2614 2615 |
# File 'gems/aws-sdk-connectcases/lib/aws-sdk-connectcases/types.rb', line 2613 def unknown @unknown end |
#user_arn ⇒ String
Represents the Amazon Connect ARN of the user.
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 |