Skip to content

Commit d264761

Browse files
trying to pass tests
1 parent 2f49f2c commit d264761

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

src/pages/[platform]/build-a-backend/add-aws-services/geo/configure-geofencing/index.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ const backend = defineBackend({
6161

6262
<Callout warning="true">
6363

64-
AWS Location API keys currently do not support geofence collections or their associated APIs. Adding acesss definitions for any API keys using the `allow.apiKey.to()` definition will NOT result in the creation of an API key.
64+
AWS Location API keys currently do not support geofence collections or their associated APIs. Adding access definitions for any API keys using the `allow.apiKey.to()` definition will NOT result in the creation of an API key.
6565

6666
</Callout>
6767

@@ -92,7 +92,7 @@ export const secondCollection = defineCollection({
9292

9393
The pricing plan for the Geofence Collection will be set to `RequestBasedUsage`. We advice you to go through the [location service pricing](https://aws.amazon.com/location/pricing/) along with the [location service terms](https://aws.amazon.com/service-terms/) (_82.5 section_) to learn more about the pricing plan.
9494

95-
#### Group access
95+
### Group access
9696

9797
To scope access permissions based on [Cognito User Groups](https://docs.aws.amazon.com/cognito/latest/developerguide/cognito-user-pools-user-groups.html)
9898

src/pages/[platform]/build-a-backend/add-aws-services/geo/configure-location-search/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Amplify's `geo` category enables you to search by places, addresses, and coordin
3535
import { definePlace } from "@aws-amplify/backend-geo";
3636

3737
export const searchIndex = definePlace({
38-
name: 'amplfyPlace',
38+
name: 'amplifyPlace',
3939
description: 'This is an Amplify search index.',
4040
access: (allow) => [
4141
allow.authenticated.to(['autocomplete', 'geocode']),

src/pages/[platform]/build-a-backend/add-aws-services/geo/custom-authorization/index.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,15 @@ export function getStaticProps(context) {
2929

3030
<Callout warning="true">
3131

32-
AWS Location API keys currently do not support geofence collections or their associated APIs. Adding acesss definitions for any API keys using the `allow.apiKey.to()` definition will NOT result in the creation of an API key.
32+
AWS Location API keys currently do not support geofence collections or their associated APIs. Adding access definitions for any API keys using the `allow.apiKey.to()` definition will NOT result in the creation of an API key.
3333

3434
</Callout>
3535

3636
Customize authorization for your geo resources by defining access to resource APIs for authenticated users, guest (unauthenticated) users, user groups, and API keys (maps and places only).
3737

3838
## Access Acceptor Types
3939

40-
Authentication is required to define access permissions for authenticated users, guest users, and user groups, please set it up [here]([platform]/build-a-backend/auth/set-up-auth/) if not defined.
40+
Authentication is required to define access permissions for authenticated users, guest users, and user groups, please set it up [here](/[platform]/build-a-backend/auth/set-up-auth/) if not defined.
4141

4242
<BlockSwitcher>
4343
<Block name="Guest Users">

src/pages/[platform]/build-a-backend/add-aws-services/geo/location-search/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ initializeMap();
155155
<Block name="API Key">
156156
You can also use maplibre-gl-geocoder to display the location search UI component anywhere in your application, even outside the map.
157157

158-
Use `geocoder` from above to create a new `MaplibreGeocoder` and add it within your Amplify app.
158+
Use `geocoder` from above to create a new `MaplibreGeocoder` and add it within your Amplify project.
159159

160160
```javascript
161161
document.getElementById("search").appendChild(geocoder.onAdd());

src/pages/[platform]/build-a-backend/add-aws-services/geo/set-up-geo/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ export const collection = defineCollection({
139139

140140
<Callout warning="true">
141141

142-
AWS Location API keys currently do not support geofence collections or their associated APIs. Adding acesss definitions for any API keys using the `allow.apiKey.to()` definition will NOT result in the creation of an API key.
142+
AWS Location API keys currently do not support geofence collections or their associated APIs. Adding access definitions for any API keys using the `allow.apiKey.to()` definition will NOT result in the creation of an API key.
143143

144144
</Callout>
145145

0 commit comments

Comments
 (0)