0.6.1 • Published 18 days ago

@aws-amplify/auth-construct-alpha v0.6.1

Weekly downloads
-
License
Apache-2.0
Repository
-
Last release
18 days ago

AmplifyAuth Construct

This package vends an L3 CDK Construct that enables faster, easier and secure app authentication and authorization powered by Amazon Cognito. Amplify Auth lets you quickly set up secure authentication flows with a fully-managed user directory. Control what users have access to in your mobile and web apps with Amplify Auth's built-in authorization capabilities.

The primary way to use this construct is to invoke it with a configuration object. You can declare the individual settings for your authentication by passing them as properties to the AmplifyAuth construct.

Note: only a single instance of the AmplifyAuth construct can be invoked within a CDK synthesis at this point in time.

Examples

Simple email login with default settings

In this example, you will create a simple stack with email login enabled (by default). Deploying this will create a UserPool, UserPoolClient, IdentityPool, and Authenticated/Unauthenticated IAM Roles.

import { App, Stack } from 'aws-cdk-lib';
import { AmplifyAuth } from '@aws-amplify/auth-construct-alpha';

const app = new App();
const stack = new Stack(app, 'AuthStack');

new AmplifyAuth(stack, 'Auth');

Email login with customized multifactor settings

In this example, you will create a simple stack with email login enabled and with customized multi factor authentication (MFA) settings.

import { App, Stack } from 'aws-cdk-lib';
import { AmplifyAuth } from '@aws-amplify/auth-construct-alpha';

const app = new App();
const stack = new Stack(app, 'AuthStack');

new AmplifyAuth(stack, 'Auth', {
  loginWith: {
    email: true,
  },
  multifactor: {
    mode: 'OPTIONAL',
    sms: {
      smsMessage: (code: string) => `Your verification code is ${code}`,
    },
    totp: false,
  },
});

Customized email and phone login with external login providers

In this example, you will create a stack with email, phone, and external login providers. Additionally, you can customize the email and phone verification messages.

import { App, Stack, SecretValue } from 'aws-cdk-lib';
import { AmplifyAuth } from '@aws-amplify/auth-construct-alpha';

const app = new App();
const stack = new Stack(app, 'AuthStack');

new AmplifyAuth(stack, 'Auth', {
  loginWith: {
    email: {
      verificationEmailStyle: 'CODE',
      verificationEmailBody: (code: string) =>
        `Your verification code is ${code}.`,
      verificationEmailSubject: 'My custom email subject',
    },
    phone: {
      verificationMessage: (code: string) =>
        `Your verification code is ${code}.`,
    },
    externalProviders: {
      google: {
        clientId: 'googleClientId',
        // see https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.SecretValue.html
        clientSecret: SecretValue.unsafePlainText('googleClientSecret'),
      },
      facebook: {
        clientId: 'facebookClientId',
        clientSecret: 'facebookClientSecret',
      },
      signInWithApple: {
        clientId: 'appleClientId',
        keyId: 'appleKeyId',
        privateKey: 'applePrivateKey',
        teamId: 'appleTeamId',
      },
      loginWithAmazon: {
        clientId: 'amazonClientId',
        clientSecret: 'amazonClientSecret',
      },
      oidc: {
        clientId: 'oidcClientId',
        clientSecret: 'oidcClientSecret',
        issuerUrl: 'oidcIssuerUrl',
        name: 'oidcProviderName',
      },
      saml: {
        name: 'samlProviderName',
        metadata: {
          metadataContent: 'samlMetadataContent',
          metadataType: 'FILE',
        },
      },
    },
  },
});

Custom user attributes

In this example, you will customize the set of attributes that are required for every user in the UserPool.

import { App, Stack } from 'aws-cdk-lib';
import { AmplifyAuth } from '@aws-amplify/auth-construct-alpha';

const app = new App();
const stack = new Stack(app, 'AuthStack');

new AmplifyAuth(stack, 'Auth', {
  loginWith: { email: true },
  userAttributes: {
    address: {
      mutable: false,
    },
    familyName: {
      required: true,
    },
  },
});
0.6.1

18 days ago

0.6.0

22 days ago

0.6.0-beta.13

23 days ago

0.6.0-beta.12

24 days ago

0.6.0-beta.11

25 days ago

0.6.0-beta.10

30 days ago

0.6.0-beta.9

1 month ago

0.6.0-beta.8

1 month ago

0.6.0-beta.7

1 month ago

0.6.0-beta.6

2 months ago

0.6.0-beta.5

2 months ago

0.6.0-beta.4

2 months ago

0.6.0-beta.3

2 months ago

0.6.0-beta.2

3 months ago

0.5.7-beta.1

3 months ago

0.5.7-beta.0

3 months ago

0.5.6

3 months ago

0.5.5

3 months ago

0.5.4

3 months ago

0.5.3

4 months ago

0.5.2

4 months ago

0.5.1

4 months ago

0.5.0

4 months ago

0.4.4

5 months ago

0.4.3

5 months ago

0.3.0

6 months ago

0.4.1

6 months ago

0.2.3

6 months ago

0.4.0

6 months ago

0.4.2

6 months ago

0.2.4

6 months ago

0.2.0-alpha.18

7 months ago

0.2.0-alpha.17

7 months ago

0.2.0-alpha.16

7 months ago

0.2.1

6 months ago

0.2.0

6 months ago

0.2.2

6 months ago

0.2.0-alpha.15

7 months ago

0.2.0-alpha.14

7 months ago

0.2.0-alpha.13

7 months ago

0.2.0-alpha.12

7 months ago

0.2.0-alpha.11

7 months ago

0.2.0-alpha.10

7 months ago

0.2.0-alpha.9

7 months ago

0.2.0-alpha.8

7 months ago

0.2.0-alpha.7

7 months ago

0.2.0-alpha.6

8 months ago

0.2.0-alpha.5

8 months ago

0.2.0-alpha.4

8 months ago

0.2.0-alpha.3

8 months ago

0.2.0-alpha.2

8 months ago

0.2.0-alpha.1

8 months ago

0.1.1-alpha.0

9 months ago