Class: Aws::BedrockAgent::Types::KnowledgeBaseDocumentDetail
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgent::Types::KnowledgeBaseDocumentDetail
- Defined in:
- gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb
Overview
Contains the details for a document that was ingested or deleted.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#data_source_id ⇒ String
The identifier of the data source connected to the knowledge base that the document was ingested into or deleted from.
-
#identifier ⇒ Types::DocumentIdentifier
Contains information that identifies the document.
-
#knowledge_base_id ⇒ String
The identifier of the knowledge base that the document was ingested into or deleted from.
-
#status ⇒ String
The ingestion status of the document.
-
#status_reason ⇒ String
The reason for the status.
-
#updated_at ⇒ Time
The date and time at which the document was last updated.
Instance Attribute Details
#data_source_id ⇒ String
The identifier of the data source connected to the knowledge base that the document was ingested into or deleted from.
6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 |
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb', line 6471 class KnowledgeBaseDocumentDetail < Struct.new( :knowledge_base_id, :data_source_id, :status, :identifier, :status_reason, :updated_at) SENSITIVE = [] include Aws::Structure end |
#identifier ⇒ Types::DocumentIdentifier
Contains information that identifies the document.
6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 |
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb', line 6471 class KnowledgeBaseDocumentDetail < Struct.new( :knowledge_base_id, :data_source_id, :status, :identifier, :status_reason, :updated_at) SENSITIVE = [] include Aws::Structure end |
#knowledge_base_id ⇒ String
The identifier of the knowledge base that the document was ingested into or deleted from.
6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 |
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb', line 6471 class KnowledgeBaseDocumentDetail < Struct.new( :knowledge_base_id, :data_source_id, :status, :identifier, :status_reason, :updated_at) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
The ingestion status of the document. The following statuses are possible:
STARTING – You submitted the ingestion job containing the document.
PENDING – The document is waiting to be ingested.
IN_PROGRESS – The document is being ingested.
INDEXED – The document was successfully indexed.
PARTIALLY_INDEXED – The document was partially indexed.
METADATA_PARTIALLY_INDEXED – You submitted metadata for an existing document and it was partially indexed.
METADATA_UPDATE_FAILED – You submitted a metadata update for an existing document but it failed.
FAILED – The document failed to be ingested.
NOT_FOUND – The document wasn't found.
IGNORED – The document was ignored during ingestion.
DELETING – You submitted the delete job containing the document.
DELETE_IN_PROGRESS – The document is being deleted.
6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 |
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb', line 6471 class KnowledgeBaseDocumentDetail < Struct.new( :knowledge_base_id, :data_source_id, :status, :identifier, :status_reason, :updated_at) SENSITIVE = [] include Aws::Structure end |
#status_reason ⇒ String
The reason for the status. Appears alongside the status IGNORED.
6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 |
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb', line 6471 class KnowledgeBaseDocumentDetail < Struct.new( :knowledge_base_id, :data_source_id, :status, :identifier, :status_reason, :updated_at) SENSITIVE = [] include Aws::Structure end |
#updated_at ⇒ Time
The date and time at which the document was last updated.
6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 |
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb', line 6471 class KnowledgeBaseDocumentDetail < Struct.new( :knowledge_base_id, :data_source_id, :status, :identifier, :status_reason, :updated_at) SENSITIVE = [] include Aws::Structure end |