public WorkshopPipelineStage(Construct scope, string id, StageProps props = null)
            : base(scope, id, props)
        {
            var service = new CdkWorkshopStack(this, "WebService");

            this.HCEndpoint  = service.HCEndpoint;
            this.HCViewerUrl = service.HCViewerUrl;
        }
Esempio n. 2
0
 public WorkshopPipelineStage(Construct scope, string id, StageProps props = null)
     : base(scope, id, props)
 {
     var service = new CdkStack(this, "WebService");
 }