January 2019
Intermediate to advanced
490 pages
15h 37m
English
We will now create a user pool using CLI commands. In the next section, we will create the user pool using a CloudFormation template:
{ "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Action": [ "sns:publish" ], "Resource": [ "*" ] } ]}
Save this as sns-publish-policy.txt.
aws iam create-policy \ --policy-name cognito_sns_iam_policy \ --policy-document file://resources/sns-publish-policy.txt \ --profile admin
{ "Version": "2012-10-17", "Statement": ...Read now
Unlock full access