diff --git a/generatePathMap.cjs.js b/generatePathMap.cjs.js index 6bd8dab43b6..35ba8105fba 100644 --- a/generatePathMap.cjs.js +++ b/generatePathMap.cjs.js @@ -67,6 +67,9 @@ function generatePathMap( '/lib-v1/q/platform/js': { page: '/lib-v1/q/platform/[platform]' }, + '/lib-v1/q/platform/react-native': { + page: '/lib-v1/q/platform/[platform]' + }, '/sdk/q/platform/js': { page: '/sdk/q/platform/[platform]' }, diff --git a/src/directory/directory.mjs b/src/directory/directory.mjs index 9a5b3a5751a..573fc4bf90f 100644 --- a/src/directory/directory.mjs +++ b/src/directory/directory.mjs @@ -207,6 +207,11 @@ export const directory = { route: '/lib/auth/advanced', filters: ['android', 'ios', 'flutter'] }, + { + title: 'Use existing Amazon Cognito resources', + route: '/lib/auth/existing-resources', + filters: ['ios', 'flutter'] + }, { title: 'Under the hood', route: '/lib/auth/overview', @@ -1267,6 +1272,11 @@ export const directory = { route: '/lib-v1/auth/escapehatch', filters: ['android', 'ios'] }, + { + title: 'Use existing Amazon Cognito resources', + route: '/lib-v1/auth/existing-resources', + filters: ['ios', 'flutter'] + }, { title: 'Under the hood', route: '/lib-v1/auth/overview', diff --git a/src/fragments/lib-v1/graphqlapi/flutter/getting-started/40_codegen.mdx b/src/fragments/lib-v1/graphqlapi/flutter/getting-started/40_codegen.mdx index d95d06aaa34..22c757c43d8 100644 --- a/src/fragments/lib-v1/graphqlapi/flutter/getting-started/40_codegen.mdx +++ b/src/fragments/lib-v1/graphqlapi/flutter/getting-started/40_codegen.mdx @@ -10,6 +10,6 @@ The generated files will be under the `lib/models` directory by default. They ge -Codegen generates models using Dart null safety by default for a new Flutter project. It also provides a configurable feature flag to generate null safe models for existing Flutter projects. Check [here](https://docs.amplify.aws/lib-v1/project-setup/null-safety/q/platform/flutter) for more details. +Codegen generates models using Dart null safety by default for a new Flutter project. It also provides a configurable feature flag to generate null safe models for existing Flutter projects. diff --git a/src/fragments/start/getting-started/reactnative/nextsteps.mdx b/src/fragments/start/getting-started/reactnative/nextsteps.mdx index 6cae9a2a818..ddc6e18b42e 100644 --- a/src/fragments/start/getting-started/reactnative/nextsteps.mdx +++ b/src/fragments/start/getting-started/reactnative/nextsteps.mdx @@ -7,4 +7,3 @@ - [In-App Messaging](/lib/in-app-messaging/overview) - [Push Notifications](/lib/push-notifications/getting-started) - [PubSub](/lib/pubsub/getting-started) -- [AR/VR](/lib/xr/getting-started) diff --git a/src/fragments/start/getting-started/vue/nextsteps.mdx b/src/fragments/start/getting-started/vue/nextsteps.mdx index a26fdfb2c68..ec1d6575b36 100644 --- a/src/fragments/start/getting-started/vue/nextsteps.mdx +++ b/src/fragments/start/getting-started/vue/nextsteps.mdx @@ -4,5 +4,4 @@ - [Serverless APIs](/lib/graphqlapi/getting-started) - [Analytics](/lib/analytics/getting-started) - [AI/ML](/lib/predictions/getting-started) -- [PubSub](/lib/pubsub/getting-started) -- [AR/VR](/lib/xr/getting-started) \ No newline at end of file +- [PubSub](/lib/pubsub/getting-started) \ No newline at end of file diff --git a/src/pages/cli/usage/containers.mdx b/src/pages/cli/usage/containers.mdx index 4ec3892e220..807784f8d04 100644 --- a/src/pages/cli/usage/containers.mdx +++ b/src/pages/cli/usage/containers.mdx @@ -5,7 +5,7 @@ export const meta = { Serverless containers provide the ability for you to deploy APIs and host websites using AWS Fargate. Customers with existing applications or those who require a lower level of control can bring Docker containers and deploy them into an Amplify project fully integrating with other resources. -Amplify [libraries](/lib) can be used with the [Auth category](/lib/auth/start) giving mobile and web applications secure connectivity and access controls to your Serverless containers. Additionally, existing GraphQL and REST services such as AWS AppSync and Amazon API Gateway can be used in the same project along with Fargate-backed APIs giving flexibility to mix and match for cost optimization and operational needs. +Amplify [libraries](/lib) can be used with the [Auth category](/lib/auth/getting-started) giving mobile and web applications secure connectivity and access controls to your Serverless containers. Additionally, existing GraphQL and REST services such as AWS AppSync and Amazon API Gateway can be used in the same project along with Fargate-backed APIs giving flexibility to mix and match for cost optimization and operational needs. Note that serverless containers do incur additional costs and operational overhead, as such we recommend using AWS AppSync with the [GraphQL Transform](/cli/graphql/overview) as a starting point when building mobile and web apps with Amplify. diff --git a/src/pages/lib-v1/auth/advanced/q/platform/[platform].mdx b/src/pages/lib-v1/auth/advanced/q/platform/[platform].mdx index a99b0f98e92..1717247dd3c 100644 --- a/src/pages/lib-v1/auth/advanced/q/platform/[platform].mdx +++ b/src/pages/lib-v1/auth/advanced/q/platform/[platform].mdx @@ -15,7 +15,7 @@ You can take specific actions when users sign-in or sign-out by subscribing auth ## Lambda Triggers -The CLI allows you to configure [Lambda Triggers](https://docs.aws.amazon.com/cognito/latest/developerguide/cognito-user-identity-pools-working-with-aws-lambda-triggers.html) for your Cognito user pool. These enable you to add custom functionality to your registration and authentication flows. [Read more](/cli/function/function) +The CLI allows you to configure [Lambda Triggers](https://docs.aws.amazon.com/cognito/latest/developerguide/cognito-user-identity-pools-working-with-aws-lambda-triggers.html) for your Cognito user pool. These enable you to add custom functionality to your registration and authentication flows. [Read more](/cli/function) ### Pre Authentication and Pre Sign-up Lambda triggers