public getName()

in src/environment/ECSEnvironment.ts [96:102]


  public getName(): string {
    if (config.serviceName) {
      return config.serviceName;
    }

    return this.metadata?.FormattedImageName ? this.metadata.FormattedImageName : 'Unknown';
  }