January 2019
Intermediate to advanced
490 pages
15h 37m
English
Various sections of the CloudFormation template correspond to the CLI commands that we saw in the previous section. The complete template YAML file is available in the code files:
---AWSTemplateFormatVersion: '2010-09-09'Description: 'My First Cognito User Pool'
Resources: MyFirstUserPool: Type: AWS::Cognito::UserPool
Properties: Policies: PasswordPolicy: MinimumLength: 8 RequireLowercase: true RequireNumbers: true RequireSymbols: true ...
Read now
Unlock full access