Class: Aws::QBusiness::Types::UserAlias
- Inherits:
-
Struct
- Object
- Struct
- Aws::QBusiness::Types::UserAlias
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-qbusiness/types.rb
Overview
Aliases attached to a user id within an Amazon Q Business application.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#data_source_id ⇒ String
The identifier of the data source that the user aliases are associated with.
-
#index_id ⇒ String
The identifier of the index that the user aliases are associated with.
-
#user_id ⇒ String
The identifier of the user id associated with the user aliases.
Instance Attribute Details
#data_source_id ⇒ String
The identifier of the data source that the user aliases are associated with.
7690 7691 7692 7693 7694 7695 7696 |
# File 'lib/aws-sdk-qbusiness/types.rb', line 7690 class UserAlias < Struct.new( :index_id, :data_source_id, :user_id) SENSITIVE = [] include Aws::Structure end |