From 1d16304a8d9487890b5424821dd06c052d1408ea Mon Sep 17 00:00:00 2001 From: Kendra Neil <53584728+TheRealAmazonKendra@users.noreply.github.com> Date: Fri, 19 Apr 2024 18:02:48 -0700 Subject: [PATCH] chore: add l1s into bedrock library (#29911) Because we already had a library under this namespace, our automation didn't do all the setup steps when the schema was updated. This adds the bedrock L1s. ### Checklist - [ ] My code adheres to the [CONTRIBUTING GUIDE](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) and [DESIGN GUIDELINES](https://github.com/aws/aws-cdk/blob/main/docs/DESIGN_GUIDELINES.md) ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license* --- packages/aws-cdk-lib/aws-bedrock/.jsiirc.json | 2 +- packages/aws-cdk-lib/aws-bedrock/lib/index.ts | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/packages/aws-cdk-lib/aws-bedrock/.jsiirc.json b/packages/aws-cdk-lib/aws-bedrock/.jsiirc.json index 5d9d8fdd12efe..b615d5b2e797c 100644 --- a/packages/aws-cdk-lib/aws-bedrock/.jsiirc.json +++ b/packages/aws-cdk-lib/aws-bedrock/.jsiirc.json @@ -4,7 +4,7 @@ "package": "software.amazon.awscdk.services.bedrock" }, "dotnet": { - "namespace": "Amazon.CDK.AWS.Bedrock" + "package": "Amazon.CDK.AWS.Bedrock" }, "python": { "module": "aws_cdk.aws_bedrock" diff --git a/packages/aws-cdk-lib/aws-bedrock/lib/index.ts b/packages/aws-cdk-lib/aws-bedrock/lib/index.ts index 4249e058d34c5..324e9b33a0ed3 100644 --- a/packages/aws-cdk-lib/aws-bedrock/lib/index.ts +++ b/packages/aws-cdk-lib/aws-bedrock/lib/index.ts @@ -1,3 +1,5 @@ +// AWS::Bedrock Cloudformation Resources +export * from './bedrock.generated'; export * from './foundation-model'; export * from './model-base'; -export * from './provisioned-model'; +export * from './provisioned-model'; \ No newline at end of file