-
Notifications
You must be signed in to change notification settings - Fork 4.1k
/
Copy patheventapi.ts
670 lines (588 loc) · 22.4 KB
/
eventapi.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
import { Construct } from 'constructs';
import { IApi, ApiBase } from './api-base';
import {
AppSyncLogConfig,
AppSyncFieldLogLevel,
AppSyncDomainOptions,
AppSyncEventResource,
} from './appsync-common';
import { CfnApi, CfnApiKey, CfnDomainName, CfnDomainNameApiAssociation } from './appsync.generated';
import {
IAppSyncAuthConfig,
createAPIKey,
AppSyncCognitoConfig,
AppSyncLambdaAuthorizerConfig,
AppSyncOpenIdConnectConfig,
AppSyncAuthorizationType,
AppSyncAuthProvider,
} from './auth-config';
import { ChannelNamespace, ChannelNamespaceOptions } from './channel-namespace';
import { Grant, IGrantable, ManagedPolicy, ServicePrincipal, Role } from '../../aws-iam';
import { ILogGroup, LogGroup, LogRetention, RetentionDays } from '../../aws-logs';
import { Lazy, Names, Stack, Token, ValidationError } from '../../core';
import { addConstructMetadata } from '../../core/lib/metadata-resource';
/**
* Authorization configuration for the Event API
*/
export interface EventApiAuthConfig {
/**
* Auth providers for use in connection,
* publish, and subscribe operations.
* @default - API Key authorization
*/
readonly authProviders?: AppSyncAuthProvider[];
/**
* Connection auth modes
* @default - API Key authorization
*/
readonly connectionAuthModeTypes?: AppSyncAuthorizationType[];
/**
* Default publish auth modes
* @default - API Key authorization
*/
readonly defaultPublishAuthModeTypes?: AppSyncAuthorizationType[];
/**
* Default subscribe auth modes
* @default - API Key authorization
*/
readonly defaultSubscribeAuthModeTypes?: AppSyncAuthorizationType[];
}
/**
* Authorization configuration helper methods
*/
class AppSyncEventApiAuthConfig implements IAppSyncAuthConfig {
/**
* Set up OIDC Authorization configuration for GraphQL APIs and Event APIs
* @param config - the configuration input for OpenID Connect auth mode
* @returns CfnApi.OpenIDConnectConfigProperty | undefined
*/
setupOpenIdConnectConfig(config?: AppSyncOpenIdConnectConfig) : CfnApi.OpenIDConnectConfigProperty | undefined {
if (!config) return undefined;
return {
authTtl: config.tokenExpiryFromAuth,
clientId: config.clientId,
iatTtl: config.tokenExpiryFromIssue,
issuer: config.oidcProvider,
};
}
/**
* Set up Cognito Authorization configuration for Event APIs
* @param config - the configuration input for Cognito auth mode
* @returns CfnApi.CognitoConfigProperty | undefined
*/
setupCognitoConfig(config?: AppSyncCognitoConfig) : CfnApi.CognitoConfigProperty | undefined {
if (!config) return undefined;
return {
userPoolId: config.userPool.userPoolId,
awsRegion: config.userPool.env.region,
appIdClientRegex: config.appIdClientRegex,
};
}
/**
* Set up Lambda Authorization configuration for GraphQL APIs and Event APIs
* @param config - the configuration input for Lambda auth mode
* @returns CfnApi.LambdaAuthorizerConfigProperty | undefined
*/
setupLambdaAuthorizerConfig(config?: AppSyncLambdaAuthorizerConfig) : CfnApi.LambdaAuthorizerConfigProperty | undefined {
if (!config) return undefined;
return {
authorizerResultTtlInSeconds: config.resultsCacheTtl?.toSeconds(),
authorizerUri: config.handler.functionArn,
identityValidationExpression: config.validationRegex,
};
}
}
/**
* Interface for Event API
*/
export interface IEventApi extends IApi {
/**
* The Authorization Types for this Event Api
*/
readonly authProviderTypes: AppSyncAuthorizationType[];
/**
* The domain name of the Api's HTTP endpoint.
*
* @attribute
*/
readonly httpDns: string;
/**
* The domain name of the Api's real-time endpoint.
*
* @attribute
*/
readonly realtimeDns: string;
/**
* add a new channel namespace.
* @param id the id of the channel namespace
* @param options the options for the channel namespace
* @returns the channel namespace
*/
addChannelNamespace(id: string, options?: ChannelNamespaceOptions): ChannelNamespace;
/**
* Adds an IAM policy statement associated with this Event API to an IAM
* principal's policy.
*
* @param grantee The principal
* @param resources The set of resources to allow (i.e. ...:[region]:[accountId]:apis/EventApiId/...)
* @param actions The actions that should be granted to the principal (i.e. appsync:EventPublish )
*/
grant(grantee: IGrantable, resources: AppSyncEventResource, ...actions: string[]): Grant;
/**
* Adds an IAM policy statement for EventPublish access to this EventApi to an IAM
* principal's policy.
*
* @param grantee The principal
*/
grantPublish(grantee: IGrantable): Grant;
/**
* Adds an IAM policy statement for EventSubscribe access to this EventApi to an IAM
* principal's policy.
*
* @param grantee The principal
*/
grantSubscribe(grantee: IGrantable): Grant;
/**
* Adds an IAM policy statement to publish and subscribe to this API for an IAM principal's policy.
*
* @param grantee The principal
*/
grantPublishAndSubscribe(grantee: IGrantable): Grant;
/**
* Adds an IAM policy statement for EventConnect access to this EventApi to an IAM principal's policy.
*
* @param grantee The principal
*/
grantConnect(grantee: IGrantable): Grant;
}
/**
* Base Class for Event API
*/
export abstract class EventApiBase extends ApiBase implements IEventApi {
/**
* The domain name of the Api's HTTP endpoint.
*/
public abstract readonly httpDns: string;
/**
* The domain name of the Api's real-time endpoint.
*/
public abstract readonly realtimeDns: string;
/**
* The Authorization Types for this Event Api
*/
public abstract readonly authProviderTypes: AppSyncAuthorizationType[];
/**
* add a new Channel Namespace to this API
*/
public addChannelNamespace(id: string, options?: ChannelNamespaceOptions): ChannelNamespace {
return new ChannelNamespace(this, id, {
api: this,
channelNamespaceName: options?.channelNamespaceName ?? id,
...options,
});
}
/**
* Adds an IAM policy statement associated with this Event API to an IAM
* principal's policy.
*
* @param grantee The principal
* @param resources The set of resources to allow (i.e. ...:[region]:[accountId]:apis/EventApiId/...)
* @param actions The actions that should be granted to the principal (i.e. appsync:EventPublish )
*/
public grant(grantee: IGrantable, resources: AppSyncEventResource, ...actions: string[]): Grant {
if (!this.authProviderTypes.includes(AppSyncAuthorizationType.IAM)) {
throw new ValidationError('IAM Authorization mode is not configured on this API.', this);
}
return Grant.addToPrincipal({
grantee,
actions,
resourceArns: resources.resourceArns(this),
scope: this,
});
}
/**
* Adds an IAM policy statement for EventPublish access to this EventApi to an IAM
* principal's policy. This grants publish permission for all channels within the API.
*
* @param grantee The principal
*/
public grantPublish(grantee: IGrantable): Grant {
return this.grant(grantee, AppSyncEventResource.allChannelNamespaces(), 'appsync:EventPublish');
}
/**
* Adds an IAM policy statement for EventSubscribe access to this EventApi to an IAM
* principal's policy. This grants subscribe permission for all channels within the API.
*
* @param grantee The principal
*/
public grantSubscribe(grantee: IGrantable): Grant {
return this.grant(grantee, AppSyncEventResource.allChannelNamespaces(), 'appsync:EventSubscribe');
}
/**
* Adds an IAM policy statement to publish and subscribe to this API for an IAM principal's policy.
* This grants publish & subscribe permission for all channels within the API.
*
* @param grantee The principal
*/
public grantPublishAndSubscribe(grantee: IGrantable): Grant {
return this.grant(grantee, AppSyncEventResource.allChannelNamespaces(), 'appsync:EventPublish', 'appsync:EventSubscribe');
}
/**
* Adds an IAM policy statement for EventConnect access to this EventApi to an IAM principal's policy.
*
* @param grantee The principal
*/
public grantConnect(grantee: IGrantable): Grant {
return this.grant(grantee, AppSyncEventResource.forAPI(), 'appsync:EventConnect');
}
}
/**
* Properties for an AppSync Event API
*/
export interface EventApiProps {
/**
* the name of the Event API
*/
readonly apiName: string;
/**
* Optional authorization configuration
*
* @default - API Key authorization
*/
readonly authorizationConfig?: EventApiAuthConfig;
/**
* Logging configuration for this api
*
* @default - None
*/
readonly logConfig?: AppSyncLogConfig;
/**
* The owner contact information for an API resource.
*
* This field accepts any string input with a length of 0 - 256 characters.
*
* @default - No owner contact.
*/
readonly ownerContact?: string;
/**
* The domain name configuration for the Event API
*
* The Route 53 hosted zone and CName DNS record must be configured in addition to this setting to
* enable custom domain URL
*
* @default - no domain name
*/
readonly domainName?: AppSyncDomainOptions;
}
/**
* Attributes for Event API imports
*/
export interface EventApiAttributes {
/**
* the name of the Event API
*/
readonly apiName: string;
/**
* an unique AWS AppSync Event API identifier
* i.e. 'lxz775lwdrgcndgz3nurvac7oa'
*/
readonly apiId: string;
/**
* the ARN of the Event API
*/
readonly apiArn: string;
/**
* the domain name of the Api's HTTP endpoint.
*/
readonly httpDns: string;
/**
* the domain name of the Api's real-time endpoint.
*/
readonly realtimeDns: string;
/**
* The Authorization Types for this Event Api
* @default - none, required to construct event rules from imported APIs
*/
readonly authProviderTypes?: AppSyncAuthorizationType[];
}
/**
* An AppSync Event API
*
* @resource AWS::AppSync::Api
*/
export class EventApi extends EventApiBase {
/**
* Import a Event API through this function
*
* @param scope scope
* @param id id
* @param attrs Event API Attributes of an API
*/
public static fromEventApiAttributes(scope: Construct, id: string, attrs: EventApiAttributes): IEventApi {
const arn =
attrs.apiArn ??
Stack.of(scope).formatArn({
service: 'appsync',
resource: 'apis',
resourceName: attrs.apiId,
});
class Import extends EventApiBase {
public readonly apiId = attrs.apiId;
public readonly apiArn = arn;
public readonly httpDns = attrs.httpDns;
public readonly realtimeDns = attrs.realtimeDns;
public readonly authProviderTypes = attrs.authProviderTypes ?? [];
}
return new Import(scope, id);
}
/**
* an unique AWS AppSync Event API identifier
* i.e. 'lxz775lwdrgcndgz3nurvac7oa'
*/
public readonly apiId: string;
/**
* the ARN of the API
*/
public readonly apiArn: string;
/**
* the domain name of the Api's HTTP endpoint.
*/
public readonly httpDns: string;
/**
* the domain name of the Api's real-time endpoint.
*/
public readonly realtimeDns: string;
/**
* The Authorization Types for this Event Api
*/
public readonly authProviderTypes: AppSyncAuthorizationType[];
/**
* The connection auth modes for this Event Api
*/
public readonly connectionModeTypes: AppSyncAuthorizationType[];
/**
* The default publish auth modes for this Event Api
*/
public readonly defaultPublishModeTypes: AppSyncAuthorizationType[];
/**
* The default subscribe auth modes for this Event Api
*/
public readonly defaultSubscribeModeTypes: AppSyncAuthorizationType[];
/**
* The configured API keys, if present.
* The key of this object is an apiKey name (apiKeyConfig.name) if specified, `Default` otherwise.
*
* @default - no api key
* @attribute ApiKeys
*/
public readonly apiKeys: { [key: string]: CfnApiKey } = {};
/**
* the CloudWatch Log Group for this API
*/
public readonly logGroup: ILogGroup;
private api: CfnApi;
private eventConfig: CfnApi.EventConfigProperty;
private domainNameResource?: CfnDomainName;
constructor(scope: Construct, id: string, props: EventApiProps) {
if (props.apiName !== undefined && !Token.isUnresolved(props.apiName)) {
if (props.apiName.length < 1 || props.apiName.length > 50) {
throw new ValidationError(`\`apiName\` must be between 1 and 50 characters, got: ${props.apiName.length} characters.`, scope);
}
}
super(scope, id, {
physicalName: props.apiName ?? Lazy.string({
produce: () =>
Names.uniqueResourceName(this, {
maxLength: 50,
separator: '-',
}),
}),
});
// Enhanced CDK Analytics Telemetry
addConstructMetadata(this, props);
const defaultAuthType: AppSyncAuthorizationType = AppSyncAuthorizationType.API_KEY;
const defaultAuthProviders: AppSyncAuthProvider[] = [{ authorizationType: defaultAuthType }];
const authProviders = props.authorizationConfig?.authProviders ?? defaultAuthProviders;
this.authProviderTypes = this.setupAuthProviderTypes(authProviders);
const connectionAuthModeTypes: AppSyncAuthorizationType[] =
props.authorizationConfig?.connectionAuthModeTypes ?? this.authProviderTypes;
const defaultPublishAuthModeTypes: AppSyncAuthorizationType[] =
props.authorizationConfig?.defaultPublishAuthModeTypes ?? this.authProviderTypes;
const defaultSubscribeAuthModeTypes: AppSyncAuthorizationType[] =
props.authorizationConfig?.defaultSubscribeAuthModeTypes ?? this.authProviderTypes;
this.connectionModeTypes = connectionAuthModeTypes;
this.defaultPublishModeTypes = defaultPublishAuthModeTypes;
this.defaultSubscribeModeTypes = defaultSubscribeAuthModeTypes;
this.validateEventApiConfiguration(props, authProviders);
this.eventConfig = {
authProviders: this.mapAuthorizationProviders(authProviders),
connectionAuthModes: this.mapAuthorizationConfig(connectionAuthModeTypes),
defaultPublishAuthModes: this.mapAuthorizationConfig(defaultPublishAuthModeTypes),
defaultSubscribeAuthModes: this.mapAuthorizationConfig(defaultSubscribeAuthModeTypes),
logConfig: this.setupLogConfig(props.logConfig),
};
this.api = new CfnApi(this, 'Resource', {
name: this.physicalName,
ownerContact: props.ownerContact,
eventConfig: this.eventConfig,
});
this.apiId = this.api.attrApiId;
this.apiArn = this.api.attrApiArn;
this.httpDns = this.api.attrDnsHttp;
this.realtimeDns = this.api.attrDnsRealtime;
const apiKeyConfigs = authProviders.filter((mode) => mode.authorizationType === AppSyncAuthorizationType.API_KEY);
for (const mode of apiKeyConfigs) {
this.apiKeys[mode.apiKeyConfig?.name ?? 'Default'] = createAPIKey(this, this.apiId, mode.apiKeyConfig);
}
if (authProviders.some((mode) => mode.authorizationType === AppSyncAuthorizationType.LAMBDA)) {
const config = authProviders.find((mode: AppSyncAuthProvider) => {
return mode.authorizationType === AppSyncAuthorizationType.LAMBDA && mode.lambdaAuthorizerConfig;
})?.lambdaAuthorizerConfig;
config?.handler.addPermission(`${id}-appsync`, {
principal: new ServicePrincipal('appsync.amazonaws.com'),
action: 'lambda:InvokeFunction',
sourceArn: this.apiArn,
});
}
if (props.domainName) {
this.domainNameResource = new CfnDomainName(this, 'DomainName', {
domainName: props.domainName.domainName,
certificateArn: props.domainName.certificate.certificateArn,
description: `domain for ${props.apiName} Event API`,
});
const domainNameAssociation = new CfnDomainNameApiAssociation(this, 'DomainAssociation', {
domainName: props.domainName.domainName,
apiId: this.apiId,
});
domainNameAssociation.addDependency(this.domainNameResource);
}
const logGroupName = `/aws/appsync/apis/${this.apiId}`;
if (props.logConfig) {
const logRetention = new LogRetention(this, 'LogRetention', {
logGroupName: logGroupName,
retention: props.logConfig?.retention ?? RetentionDays.INFINITE,
});
this.logGroup = LogGroup.fromLogGroupArn(this, 'LogGroup', logRetention.logGroupArn);
} else {
this.logGroup = LogGroup.fromLogGroupName(this, 'LogGroup', logGroupName);
}
}
/**
* Validate Event API configuration
*/
private validateEventApiConfiguration(props: EventApiProps, authProviders: AppSyncAuthProvider[]) {
this.validateOwnerContact(props.ownerContact);
this.validateAuthorizationProps(authProviders);
this.validateAuthorizationConfig(authProviders, this.connectionModeTypes);
this.validateAuthorizationConfig(authProviders, this.defaultPublishModeTypes);
this.validateAuthorizationConfig(authProviders, this.defaultSubscribeModeTypes);
}
/**
* Validate ownerContact property
*/
private validateOwnerContact(ownerContact?: string) {
if (ownerContact === undefined || Token.isUnresolved(ownerContact)) return;
if (ownerContact.length < 1 || ownerContact.length > 256) {
throw new ValidationError(`\`ownerContact\` must be between 1 and 256 characters, got: ${ownerContact.length} characters.`, this);
}
const ownerContactPattern = /^[A-Za-z0-9_\-\ \.]+$/;
if (!ownerContactPattern.test(ownerContact)) {
throw new ValidationError(`\`ownerContact\` must contain only alphanumeric characters, underscores, hyphens, spaces, and periods, got: ${ownerContact}`, this);
}
}
private setupLogConfig(config?: AppSyncLogConfig) {
if (!config) return;
const logsRoleArn: string =
config.role?.roleArn ??
new Role(this, 'ApiLogsRole', {
assumedBy: new ServicePrincipal('appsync.amazonaws.com'),
managedPolicies: [ManagedPolicy.fromAwsManagedPolicyName('service-role/AWSAppSyncPushToCloudWatchLogs')],
}).roleArn;
const fieldLogLevel: AppSyncFieldLogLevel = config.fieldLogLevel ?? AppSyncFieldLogLevel.NONE;
return {
cloudWatchLogsRoleArn: logsRoleArn,
logLevel: fieldLogLevel,
};
}
private setupAuthProviderTypes(authProviders?: AppSyncAuthProvider[]) {
if (!authProviders || authProviders.length === 0) return [AppSyncAuthorizationType.API_KEY];
const modes = authProviders.map((mode) => mode.authorizationType);
return modes;
}
private mapAuthorizationProviders(authProviders: AppSyncAuthProvider[]) {
const authConfig: IAppSyncAuthConfig = new AppSyncEventApiAuthConfig();
return authProviders.reduce<CfnApi.AuthProviderProperty[]>((acc, mode) => {
acc.push({
authType: mode.authorizationType,
cognitoConfig: authConfig.setupCognitoConfig(mode.cognitoConfig),
openIdConnectConfig: authConfig.setupOpenIdConnectConfig(mode.openIdConnectConfig),
lambdaAuthorizerConfig: authConfig.setupLambdaAuthorizerConfig(mode.lambdaAuthorizerConfig),
});
return acc;
}, []);
}
private mapAuthorizationConfig(authModes: AppSyncAuthorizationType[]) {
return authModes.map((mode) => ({ authType: mode }));
}
private validateAuthorizationProps(authProviders: AppSyncAuthProvider[]) {
const keyConfigs = authProviders.filter((mode) => mode.authorizationType === AppSyncAuthorizationType.API_KEY);
const someWithNoNames = keyConfigs.some((config) => !config.apiKeyConfig?.name);
if (keyConfigs.length > 1 && someWithNoNames) {
throw new ValidationError('You must specify key names when configuring more than 1 API key.', this);
}
if (authProviders.filter((authProvider) => authProvider.authorizationType === AppSyncAuthorizationType.LAMBDA).length > 1) {
throw new ValidationError(
'You can only have a single AWS Lambda function configured to authorize your API. See https://docs.aws.amazon.com/appsync/latest/devguide/security.html',
this,
);
}
if (authProviders.filter((authProvider) => authProvider.authorizationType === AppSyncAuthorizationType.IAM).length > 1) {
throw new ValidationError("You can't duplicate IAM configuration. See https://docs.aws.amazon.com/appsync/latest/devguide/security.html", this);
}
authProviders.map((authProvider) => {
if (authProvider.authorizationType === AppSyncAuthorizationType.OIDC && !authProvider.openIdConnectConfig) {
throw new ValidationError('OPENID_CONNECT authorization type is specified but OIDC Authorizer Configuration is missing in the AuthProvider', this);
}
if (authProvider.authorizationType === AppSyncAuthorizationType.USER_POOL && !authProvider.cognitoConfig) {
throw new ValidationError('AMAZON_COGNITO_USER_POOLS authorization type is specified but Cognito Authorizer Configuration is missing in the AuthProvider', this);
}
if (authProvider.authorizationType === AppSyncAuthorizationType.LAMBDA && !authProvider.lambdaAuthorizerConfig) {
throw new ValidationError('AWS_LAMBDA authorization type is specified but Lambda Authorizer Configuration is missing in the AuthProvider', this);
}
});
}
private validateAuthorizationConfig(authProviders: AppSyncAuthProvider[], authTypes: AppSyncAuthorizationType[]) {
for (const authType of authTypes) {
if (!authProviders.find((authProvider) => authProvider.authorizationType === authType)) {
throw new ValidationError(`Missing authorization configuration for ${authType}`, this);
}
}
}
/**
* The AppSyncDomainName of the associated custom domain
*/
public get appSyncDomainName(): string {
if (!this.domainNameResource) {
throw new ValidationError('Cannot retrieve the appSyncDomainName without a domainName configuration', this);
}
return this.domainNameResource.attrAppSyncDomainName;
}
/**
* The HTTP Endpoint of the associated custom domain
*/
public get customHttpEndpoint(): string {
if (!this.domainNameResource) {
throw new ValidationError('Cannot retrieve the appSyncDomainName without a domainName configuration', this);
}
return `https://${this.domainNameResource.attrDomainName}/event`;
}
/**
* The Realtime Endpoint of the associated custom domain
*/
public get customRealtimeEndpoint(): string {
if (!this.domainNameResource) {
throw new ValidationError('Cannot retrieve the appSyncDomainName without a domainName configuration', this);
}
return `wss://${this.domainNameResource.attrDomainName}/event/realtime`;
}
}