constructor()

in transcribe-ui-backend/provisioning/lib/stack/backend.ts [9:30]


  constructor(scope: cdk.Construct, id: string, props?: cdk.StackProps) {
    super(scope, id, props)

    const db = new Database(this, 'Transcribe-Database')
    const storage = new Storage(this, 'Transcribe-Storage')

    const api = new Api(this, 'Transcribe-APIs', {
      vocabTable: db.vocabTable,
      jobTable: db.jobTable,
      transBucket: storage.bucket
    })

    const batch = new Batch(this, 'Transcribe-Batch', {
      vocabTable: db.vocabTable,
      transBucket: storage.bucket
    })

    const events = new Event(this, 'Transcribe-Event', {
      jobTable: db.jobTable,
      transBucket: storage.bucket
    })
  }