Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add lambda authorizer config to AppSync types #64

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions packages/cloudform-types/types/appSync/graphQlApi.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,12 @@ class LogConfig {
}
}
exports.LogConfig = LogConfig;
class LambdaAuthorizerConfig {
constructor(properties) {
Object.assign(this, properties);
}
}
exports.LambdaAuthorizerConfig = LambdaAuthorizerConfig;
class AdditionalAuthenticationProvider {
constructor(properties) {
Object.assign(this, properties);
Expand Down
13 changes: 13 additions & 0 deletions packages/cloudform-types/types/appSync/graphQlApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,20 @@ export class LogConfig {
}
}

export class LambdaAuthorizerConfig {
AuthorizerUri?: Value<string>
AuthorizerResultTtlInSeconds?: Value<number>
IdentityValidationExpression?: Value<string>

constructor(properties: LambdaAuthorizerConfig) {
Object.assign(this, properties)
}
}

export class AdditionalAuthenticationProvider {
OpenIDConnectConfig?: OpenIDConnectConfig
UserPoolConfig?: CognitoUserPoolConfig
LambdaAuthorizerConfig?: LambdaAuthorizerConfig
AuthenticationType!: Value<string>

constructor(properties: AdditionalAuthenticationProvider) {
Expand All @@ -75,6 +86,7 @@ export interface GraphQLApiProperties {
OpenIDConnectConfig?: OpenIDConnectConfig
XrayEnabled?: Value<boolean>
UserPoolConfig?: UserPoolConfig
LambdaAuthorizerConfig?: LambdaAuthorizerConfig
Tags?: Tags
Name: Value<string>
AuthenticationType: Value<string>
Expand All @@ -87,6 +99,7 @@ export default class GraphQLApi extends ResourceBase<GraphQLApiProperties> {
static CognitoUserPoolConfig = CognitoUserPoolConfig
static UserPoolConfig = UserPoolConfig
static LogConfig = LogConfig
static LambdaAuthorizerConfig = LambdaAuthorizerConfig
static AdditionalAuthenticationProvider = AdditionalAuthenticationProvider

constructor(properties: GraphQLApiProperties) {
Expand Down