Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
vgkowski committed Sep 4, 2024
1 parent 670ad06 commit 488976a
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 13 deletions.
12 changes: 6 additions & 6 deletions framework/API.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,11 @@ export interface CustomAssetType {

/**
* Factory construct providing resources to create a DataZone custom asset type.
* @see https://awslabs.github.io/data-solutions-framework-on-aws/docs/constructs/library/Governance/datazone-msk-governance
*
* @example
* new dsf.governance.DataZoneCustomAssetTypeFactory(this, 'CustomAssetTypeFactory');
* new dsf.governance.DataZoneCustomAssetTypeFactory(this, 'CustomAssetTypeFactory', {
* domainId: 'aba_dc999t9ime9sss',
* });
*
*/
export class DataZoneCustomAssetTypeFactory extends TrackedConstruct {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import { Context, TrackedConstruct, TrackedConstructProps } from '../../../utils
* A DataZone custom asset type representing an MSK topic.
*
* @example
* new dsf.governance.DataZoneMskAssetType(stack, 'MskAssetType', {
* new dsf.governance.DataZoneMskAssetType(this, 'MskAssetType', {
* domainId: 'aba_dc999t9ime9sss',
* projectId: '999999b3m5cpz',
* });
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import { authorizerCentralWorkflowSetup, registerAccount } from '../custom-autho
* Finally acknowledge the subscription grant in DataZone.
*
* @example
* new DataZoneMskCentralAuthorizer(this, 'MskAuthorizer', {
* new dsf.governance.DataZoneMskCentralAuthorizer(this, 'MskAuthorizer', {
* domainId: 'aba_dc999t9ime9sss',
* });
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import { authorizerEnvironmentWorkflowSetup } from '../custom-authorizer-environ
* It supports MSK provisioned and serverless, in single and cross accounts, and grant/revoke requests.
*
* @example
* new DataZoneMskEnvironmentAuthorizer(this, 'MskAuthorizer', {
* new dsf.governance.DataZoneMskEnvironmentAuthorizer(this, 'MskAuthorizer', {
* domainId: 'aba_dc999t9ime9sss',
* });
*/
Expand Down
2 changes: 1 addition & 1 deletion framework/test/e2e/datazone-msk.e2e.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
*/

import * as cdk from 'aws-cdk-lib';
import { CfnDomain } from 'aws-cdk-lib/aws-datazone';
import { TestStack } from './test-stack';
import { DataZoneMskAssetType, DataZoneMskCentralAuthorizer, DataZoneMskEnvironmentAuthorizer } from '../../src/governance/index';
import { CfnDomain } from 'aws-cdk-lib/aws-datazone';

jest.setTimeout(10000000);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ describe ('Creating a DataZoneMskEnvironmentAuthorizer with default configuratio
});

const template = Template.fromStack(stack);
console.log(JSON.stringify(template.toJSON(), null, 2));
// console.log(JSON.stringify(template.toJSON(), null, 2));


test('should create an IAM role for the Lambda function creating the grants', () => {
Expand Down

0 comments on commit 488976a

Please sign in to comment.