Class: Aws::QApps::Types::CardValue
- Inherits:
-
Struct
- Object
- Struct
- Aws::QApps::Types::CardValue
- Defined in:
- gems/aws-sdk-qapps/lib/aws-sdk-qapps/types.rb
Overview
The value or result associated with a card in a Amazon Q App session.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#card_id ⇒ String
The unique identifier of the card.
-
#submission_mutation ⇒ Types::SubmissionMutation
The structure that describes how the current form card value is mutated.
-
#value ⇒ String
The value or result associated with the card.
Instance Attribute Details
#card_id ⇒ String
The unique identifier of the card.
427 428 429 430 431 432 433 |
# File 'gems/aws-sdk-qapps/lib/aws-sdk-qapps/types.rb', line 427 class CardValue < Struct.new( :card_id, :value, :submission_mutation) SENSITIVE = [] include Aws::Structure end |
#submission_mutation ⇒ Types::SubmissionMutation
The structure that describes how the current form card value is mutated. Only applies for form cards when multiple responses are allowed.
427 428 429 430 431 432 433 |
# File 'gems/aws-sdk-qapps/lib/aws-sdk-qapps/types.rb', line 427 class CardValue < Struct.new( :card_id, :value, :submission_mutation) SENSITIVE = [] include Aws::Structure end |