Last active
September 29, 2020 18:37
-
-
Save dabit3/3f3868e3152f6bc583fa82ee75473526 to your computer and use it in GitHub Desktop.
CDK Imports
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import * as cdk from '@aws-cdk/core'; | |
import { UserPool, VerificationEmailStyle, UserPoolClient, AccountRecovery } from '@aws-cdk/aws-cognito'; | |
import { GraphqlApi, AuthorizationType, FieldLogLevel, MappingTemplate, Schema } from '@aws-cdk/aws-appsync'; | |
import { AttributeType, BillingMode, Table } from '@aws-cdk/aws-dynamodb'; | |
import { Role, ServicePrincipal, Effect, PolicyStatement } from '@aws-cdk/aws-iam'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment