public static getInstance()

in src/constructs/core/parameters/s3.ts [57:63]


  public static getInstance(stack: GuStack): GuAccessLoggingBucketParameter {
    if (!this.instance || !isSingletonPresentInStack(stack, this.instance)) {
      this.instance = new GuAccessLoggingBucketParameter(stack);
    }

    return this.instance;
  }