bucketName: cfnify()

in src/index.ts [248:263]


      bucketName: cfnify(bucketName),
      objectKey,
      httpUrl,
      s3ObjectUrl,
    };
  }

  public addDockerImageAsset(asset: DockerImageAssetSource): DockerImageAssetLocation {
    assertNotNull(this.stack, ERR_MSG_CALL_BIND_FIRST);
    assertNotNull(this.repositoryName, 'The repositoryName is null');
    validateDockerImageAssetSource(asset);

    const imageTag = this.imageAssetTagPrefix + asset.sourceHash;
    const destinations: { [id: string]: cxschema.DockerImageDestination } = {};

    if (this.imageAssetRegionSet?.length) {