Class: Aws::BedrockAgent::Types::DeleteKnowledgeBaseDocumentsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgent::Types::DeleteKnowledgeBaseDocumentsRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-bedrockagent/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#client_token ⇒ String
A unique, case-sensitive identifier to ensure that the API request completes no more than one time.
-
#data_source_id ⇒ String
The unique identifier of the data source that contains the documents.
-
#document_identifiers ⇒ Array<Types::DocumentIdentifier>
A list of objects, each of which contains information to identify a document to delete.
-
#knowledge_base_id ⇒ String
The unique identifier of the knowledge base that is connected to the data source.
Instance Attribute Details
#client_token ⇒ String
A unique, case-sensitive identifier to ensure that the API request completes no more than one time. If this token matches a previous request, Amazon Bedrock ignores the request, but does not return an error. For more information, see [Ensuring idempotency].
**A suitable default value is auto-generated.** You should normally not need to pass this option.
[1]: docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
3490 3491 3492 3493 3494 3495 3496 3497 |
# File 'lib/aws-sdk-bedrockagent/types.rb', line 3490 class DeleteKnowledgeBaseDocumentsRequest < Struct.new( :knowledge_base_id, :data_source_id, :client_token, :document_identifiers) SENSITIVE = [] include Aws::Structure end |
#data_source_id ⇒ String
The unique identifier of the data source that contains the documents.
3490 3491 3492 3493 3494 3495 3496 3497 |
# File 'lib/aws-sdk-bedrockagent/types.rb', line 3490 class DeleteKnowledgeBaseDocumentsRequest < Struct.new( :knowledge_base_id, :data_source_id, :client_token, :document_identifiers) SENSITIVE = [] include Aws::Structure end |
#document_identifiers ⇒ Array<Types::DocumentIdentifier>
A list of objects, each of which contains information to identify a document to delete.
3490 3491 3492 3493 3494 3495 3496 3497 |
# File 'lib/aws-sdk-bedrockagent/types.rb', line 3490 class DeleteKnowledgeBaseDocumentsRequest < Struct.new( :knowledge_base_id, :data_source_id, :client_token, :document_identifiers) SENSITIVE = [] include Aws::Structure end |
#knowledge_base_id ⇒ String
The unique identifier of the knowledge base that is connected to the data source.
3490 3491 3492 3493 3494 3495 3496 3497 |
# File 'lib/aws-sdk-bedrockagent/types.rb', line 3490 class DeleteKnowledgeBaseDocumentsRequest < Struct.new( :knowledge_base_id, :data_source_id, :client_token, :document_identifiers) SENSITIVE = [] include Aws::Structure end |