Skip to content

Commit

Permalink
static check doc fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ferruzzi committed Apr 25, 2024
1 parent 6216000 commit 293744a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion airflow/providers/amazon/provider.yaml
Expand Up @@ -237,7 +237,7 @@ integrations:
logo: /integration-logos/aws/Amazon-Kinesis-Data-Firehose_light-bg@4x.png
tags: [aws]
- integration-name: Amazon OpenSearch Serverless
external-doc-url: https://aws.amazon.com/opensearch-service/
external-doc-url: https://aws.amazon.com/opensearchserverless/
logo: /integration-logos/aws/Amazon-OpenSearch_light-bg@4x.png
tags: [aws]
- integration-name: Amazon RDS
Expand Down
Expand Up @@ -295,6 +295,8 @@ def delete_data_source(knowledge_base_id: str, data_source_id: str):
"""
log.info("Deleting data source %s from Knowledge Base %s.", data_source_id, knowledge_base_id)
bedrock_agent_client.delete_data_source(dataSourceId=data_source_id, knowledgeBaseId=knowledge_base_id)


# [END howto_operator_bedrock_delete_data_source]


Expand All @@ -312,6 +314,8 @@ def delete_knowledge_base(knowledge_base_id: str):
"""
log.info("Deleting Knowledge Base %s.", knowledge_base_id)
bedrock_agent_client.delete_knowledge_base(knowledgeBaseId=knowledge_base_id)


# [END howto_operator_bedrock_delete_knowledge_base]


Expand Down

0 comments on commit 293744a

Please sign in to comment.