public getSink()

in src/environment/ECSEnvironment.ts [137:143]


  public getSink(): ISink {
    if (!this.sink) {
      const logGroupName = this.fluentBitEndpoint ? '' : this.getLogGroupName();
      this.sink = new AgentSink(logGroupName);
    }
    return this.sink;
  }