Skip to content

Commit 2ddbb87

Browse files
authored
fix: removed hyphen from the logGroupName (#7856)
* updated the logGroupName * added vendedlogs to cspell.json * updated the fieldname is index mapping
1 parent 40a61d1 commit 2ddbb87

File tree

2 files changed

+3
-2
lines changed
  • src/pages/[platform]/build-a-backend/data/custom-business-logic/search-and-aggregate-queries

2 files changed

+3
-2
lines changed

cspell.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1396,6 +1396,7 @@
13961396
"validationData",
13971397
"vanillajs",
13981398
"varchar",
1399+
"vendedlogs",
13991400
"verify.js",
14001401
"VerifyAuthChallengeResponse",
14011402
"VeriSign",

src/pages/[platform]/build-a-backend/data/custom-business-logic/search-and-aggregate-queries/index.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -446,7 +446,7 @@ const indexMapping = {
446446
id: {
447447
type: "keyword",
448448
},
449-
isDone: {
449+
done: {
450450
type: "boolean",
451451
},
452452
content: {
@@ -843,7 +843,7 @@ dynamodb-pipeline:
843843
// highlight-start
844844
// Create a CloudWatch log group
845845
const logGroup = new logs.LogGroup(dataStack, "LogGroup", {
846-
logGroupName: "/aws/vended-logs/OpenSearchService/pipelines/1",
846+
logGroupName: "/aws/vendedlogs/OpenSearchService/pipelines/1",
847847
removalPolicy: RemovalPolicy.DESTROY,
848848
});
849849

0 commit comments

Comments
 (0)