Class: Aws::Artifact::Types::Citation
- Inherits:
-
Struct
- Object
- Struct
- Aws::Artifact::Types::Citation
- Defined in:
- gems/aws-sdk-artifact/lib/aws-sdk-artifact/types.rb
Overview
Citation information for AI-generated responses.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#source_content ⇒ String
Content text from the compliance source.
-
#source_label ⇒ String
Label identifying the compliance source.
-
#source_link ⇒ String
Link to the compliance source.
Instance Attribute Details
#source_content ⇒ String
Content text from the compliance source.
56 57 58 59 60 61 62 |
# File 'gems/aws-sdk-artifact/lib/aws-sdk-artifact/types.rb', line 56 class Citation < Struct.new( :source_label, :source_content, :source_link) SENSITIVE = [] include Aws::Structure end |