Class ConstructLibraryAwsOptions.Jsii$Proxy

    • Constructor Detail

      • Jsii$Proxy

        protected Jsii$Proxy​(software.amazon.jsii.JsiiObjectRef objRef)
        Deprecated.
        Constructor that initializes the object based on values retrieved from the JsiiObject.
        Parameters:
        objRef - Reference to the JSII managed object.
    • Method Detail

      • getEdgeLambdaAutoDiscover

        public final Boolean getEdgeLambdaAutoDiscover()
        Deprecated.
        Description copied from interface: AwsCdkConstructLibraryOptions
        (experimental) Automatically adds an cloudfront.experimental.EdgeFunction for each .edge-lambda.ts handler in your source tree. If this is disabled, you can manually add an awscdk.AutoDiscover component to your project.

        Default: true

        Specified by:
        getEdgeLambdaAutoDiscover in interface AwsCdkConstructLibraryOptions
      • getLambdaAutoDiscover

        public final Boolean getLambdaAutoDiscover()
        Deprecated.
        Description copied from interface: AwsCdkConstructLibraryOptions
        (experimental) Automatically adds an aws_lambda.Function for each .lambda.ts handler in your source tree. If this is disabled, you either need to explicitly call aws_lambda.Function.autoDiscover() or define a new aws_lambda.Function() for each handler.

        Default: true

        Specified by:
        getLambdaAutoDiscover in interface AwsCdkConstructLibraryOptions
      • getLambdaExtensionAutoDiscover

        public final Boolean getLambdaExtensionAutoDiscover()
        Deprecated.
        Description copied from interface: AwsCdkConstructLibraryOptions
        (experimental) Automatically adds an awscdk.LambdaExtension for each .lambda-extension.ts entrypoint in your source tree. If this is disabled, you can manually add an awscdk.AutoDiscover component to your project.

        Default: true

        Specified by:
        getLambdaExtensionAutoDiscover in interface AwsCdkConstructLibraryOptions
      • getCatalog

        public final Catalog getCatalog()
        Deprecated.
        Description copied from interface: ConstructLibraryOptions
        (experimental) Libraries will be picked up by the construct catalog when they are published to npm as jsii modules and will be published under:.

        https://awscdk.io/packages/[@SCOPE/]PACKAGE@VERSION

        The catalog will also post a tweet to https://twitter.com/awscdkio with the package name, description and the above link. You can disable these tweets through { announce: false }.

        You can also add a Twitter handle through { twitter: 'xx' } which will be mentioned in the tweet.

        Default: - new version will be announced

        Specified by:
        getCatalog in interface ConstructLibraryOptions
        See Also:
        https://github.com/construct-catalog/catalog
      • getCompat

        public final Boolean getCompat()
        Deprecated.
        Description copied from interface: JsiiProjectOptions
        (experimental) Automatically run API compatibility test against the latest version published to npm after compilation.

        • You can manually run compatibility tests using yarn compat if this feature is disabled.
        • You can ignore compatibility failures by adding lines to a ".compatignore" file.

        Default: false

        Specified by:
        getCompat in interface JsiiProjectOptions
      • getExcludeTypescript

        public final List<String> getExcludeTypescript()
        Deprecated.
        Description copied from interface: JsiiProjectOptions
        (experimental) Accepts a list of glob patterns.

        Files matching any of those patterns will be excluded from the TypeScript compiler input.

        By default, jsii will include all *.ts files (except .d.ts files) in the TypeScript compiler input. This can be problematic for example when the package's build or test procedure generates .ts files that cannot be compiled with jsii's compiler settings.

        Specified by:
        getExcludeTypescript in interface JsiiProjectOptions
      • getJsiiVersion

        public final String getJsiiVersion()
        Deprecated.
        Description copied from interface: JsiiProjectOptions
        (experimental) Version of the jsii compiler to use.

        Set to "*" if you want to manually manage the version of jsii in your project by managing updates to package.json on your own.

        NOTE: The jsii compiler releases since 5.0.0 are not semantically versioned and should remain on the same minor, so we recommend using a ~ dependency (e.g. ~5.0.0).

        Default: "1.x"

        Specified by:
        getJsiiVersion in interface JsiiProjectOptions
      • getEntrypointTypes

        public final String getEntrypointTypes()
        Deprecated.
        Description copied from interface: TypeScriptProjectOptions
        (experimental) The .d.ts file that includes the type declarations for this module.

        Default: - .d.ts file derived from the project's entrypoint (usually lib/index.d.ts)

        Specified by:
        getEntrypointTypes in interface TypeScriptProjectOptions
      • getTestdir

        public final String getTestdir()
        Deprecated.
        Description copied from interface: TypeScriptProjectOptions
        (experimental) Jest tests directory. Tests files should be named xxx.test.ts.

        If this directory is under srcdir (e.g. src/test, src/__tests__), then tests are going to be compiled into lib/ and executed as javascript. If the test directory is outside of src, then we configure jest to compile the code in-memory.

        Default: "test"

        Specified by:
        getTestdir in interface TypeScriptProjectOptions
      • getTypescriptVersion

        public final String getTypescriptVersion()
        Deprecated.
        Description copied from interface: TypeScriptProjectOptions
        (experimental) TypeScript version to use.

        NOTE: Typescript is not semantically versioned and should remain on the same minor, so we recommend using a ~ dependency (e.g. ~1.2.3).

        Default: "latest"

        Specified by:
        getTypescriptVersion in interface TypeScriptProjectOptions
      • getAutoApproveUpgrades

        public final Boolean getAutoApproveUpgrades()
        Deprecated.
        Description copied from interface: NodeProjectOptions
        (experimental) Automatically approve deps upgrade PRs, allowing them to be merged by mergify (if configued).

        Throw if set to true but autoApproveOptions are not defined.

        Default: - true

        Specified by:
        getAutoApproveUpgrades in interface NodeProjectOptions
      • getCheckLicenses

        public final LicenseCheckerOptions getCheckLicenses()
        Deprecated.
        Description copied from interface: NodeProjectOptions
        (experimental) Configure which licenses should be deemed acceptable for use by dependencies.

        This setting will cause the build to fail, if any prohibited or not allowed licenses ares encountered.

        Default: - no license checks are run during the build and all licenses will be accepted

        Specified by:
        getCheckLicenses in interface NodeProjectOptions
      • getCodeCov

        public final Boolean getCodeCov()
        Deprecated.
        Description copied from interface: NodeProjectOptions
        (experimental) Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v3 A secret is required for private repos. Configured with @codeCovTokenSecret.

        Default: false

        Specified by:
        getCodeCov in interface NodeProjectOptions
      • getCodeCovTokenSecret

        public final String getCodeCovTokenSecret()
        Deprecated.
        Description copied from interface: NodeProjectOptions
        (experimental) Define the secret name for a specified https://codecov.io/ token A secret is required to send coverage for private repositories.

        Default: - if this option is not specified, only public repositories are supported

        Specified by:
        getCodeCovTokenSecret in interface NodeProjectOptions
      • getCopyrightOwner

        public final String getCopyrightOwner()
        Deprecated.
        Description copied from interface: NodeProjectOptions
        (experimental) License copyright owner.

        Default: - defaults to the value of authorName or "" if `authorName` is undefined.

        Specified by:
        getCopyrightOwner in interface NodeProjectOptions
      • getDependabot

        public final Boolean getDependabot()
        Deprecated.
        Description copied from interface: NodeProjectOptions
        (experimental) Use dependabot to handle dependency upgrades.

        Cannot be used in conjunction with depsUpgrade.

        Default: false

        Specified by:
        getDependabot in interface NodeProjectOptions
      • getDepsUpgrade

        public final Boolean getDepsUpgrade()
        Deprecated.
        Description copied from interface: NodeProjectOptions
        (experimental) Use tasks and github workflows to handle dependency upgrades.

        Cannot be used in conjunction with dependabot.

        Default: true

        Specified by:
        getDepsUpgrade in interface NodeProjectOptions
      • getMutableBuild

        public final Boolean getMutableBuild()
        Deprecated.
        Description copied from interface: NodeProjectOptions
        (experimental) Automatically update files modified during builds to pull-request branches.

        This means that any files synthesized by projen or e.g. test snapshots will always be up-to-date before a PR is merged.

        Implies that PR builds do not have anti-tamper checks.

        Default: true

        Specified by:
        getMutableBuild in interface NodeProjectOptions
      • getNpmignoreEnabled

        public final Boolean getNpmignoreEnabled()
        Deprecated.
        Description copied from interface: NodeProjectOptions
        (experimental) Defines an .npmignore file. Normally this is only needed for libraries that are packaged as tarballs.

        Default: true

        Specified by:
        getNpmignoreEnabled in interface NodeProjectOptions
      • getPackageValue

        public final Boolean getPackageValue()
        Deprecated.
        Description copied from interface: NodeProjectOptions
        (experimental) Defines a package task that will produce an npm tarball under the artifacts directory (e.g. dist).

        Default: true

        Specified by:
        getPackageValue in interface NodeProjectOptions
      • getProjenrcJs

        public final Boolean getProjenrcJs()
        Deprecated.
        Description copied from interface: NodeProjectOptions
        (experimental) Generate (once) .projenrc.js (in JavaScript). Set to false in order to disable .projenrc.js generation.

        Default: - true if projenrcJson is false

        Specified by:
        getProjenrcJs in interface NodeProjectOptions
      • getRelease

        public final Boolean getRelease()
        Deprecated.
        Description copied from interface: NodeProjectOptions
        (experimental) Add release management to this project.

        Default: - true (false for subprojects)

        Specified by:
        getRelease in interface NodeProjectOptions
      • getAutoMerge

        public final Boolean getAutoMerge()
        Deprecated.
        Description copied from interface: GitHubProjectOptions
        (experimental) Enable automatic merging on GitHub.

        Has no effect if github.mergify is set to false.

        Default: true

        Specified by:
        getAutoMerge in interface GitHubProjectOptions
      • getAutoMergeOptions

        public final AutoMergeOptions getAutoMergeOptions()
        Deprecated.
        Description copied from interface: GitHubProjectOptions
        (experimental) Configure options for automatic merging on GitHub.

        Has no effect if github.mergify or autoMerge is set to false.

        Default: - see defaults in `AutoMergeOptions`

        Specified by:
        getAutoMergeOptions in interface GitHubProjectOptions
      • getClobber

        public final Boolean getClobber()
        Deprecated.
        Description copied from interface: GitHubProjectOptions
        (experimental) Add a clobber task which resets the repo to origin.

        Default: - true, but false for subprojects

        Specified by:
        getClobber in interface GitHubProjectOptions
      • getGithub

        public final Boolean getGithub()
        Deprecated.
        Description copied from interface: GitHubProjectOptions
        (experimental) Enable GitHub integration.

        Enabled by default for root projects. Disabled for non-root projects.

        Default: true

        Specified by:
        getGithub in interface GitHubProjectOptions
      • getProjenTokenSecret

        public final String getProjenTokenSecret()
        Deprecated.
        Description copied from interface: GitHubProjectOptions
        (deprecated) The name of a secret which includes a GitHub Personal Access Token to be used by projen workflows.

        This token needs to have the repo, workflows and packages scope.

        Default: "PROJEN_GITHUB_TOKEN"

        Specified by:
        getProjenTokenSecret in interface GitHubProjectOptions
      • getReadme

        public final SampleReadmeProps getReadme()
        Deprecated.
        Description copied from interface: GitHubProjectOptions
        (experimental) The README setup.

        Default: - { filename: 'README.md', contents: '# replace this' }

        Example:

         "{ filename: 'readme.md', contents: '# title' }"
         
        Specified by:
        getReadme in interface GitHubProjectOptions
      • getStale

        public final Boolean getStale()
        Deprecated.
        Description copied from interface: GitHubProjectOptions
        (experimental) Auto-close of stale issues and pull request.

        See staleOptions for options.

        Default: false

        Specified by:
        getStale in interface GitHubProjectOptions
      • getVscode

        public final Boolean getVscode()
        Deprecated.
        Description copied from interface: GitHubProjectOptions
        (experimental) Enable VSCode integration.

        Enabled by default for root projects. Disabled for non-root projects.

        Default: true

        Specified by:
        getVscode in interface GitHubProjectOptions
      • getName

        public final String getName()
        Deprecated.
        Description copied from interface: ProjectOptions
        (experimental) This is the name of your project.

        Default: $BASEDIR

        Specified by:
        getName in interface ProjectOptions
      • getCommitGenerated

        public final Boolean getCommitGenerated()
        Deprecated.
        Description copied from interface: ProjectOptions
        (experimental) Whether to commit the managed files by default.

        Default: true

        Specified by:
        getCommitGenerated in interface ProjectOptions
      • getOutdir

        public final String getOutdir()
        Deprecated.
        Description copied from interface: ProjectOptions
        (experimental) The root directory of the project.

        Relative to this directory, all files are synthesized.

        If this project has a parent, this directory is relative to the parent directory and it cannot be the same as the parent or any of it's other subprojects.

        Default: "."

        Specified by:
        getOutdir in interface ProjectOptions
      • getParent

        public final Project getParent()
        Deprecated.
        Description copied from interface: ProjectOptions
        (experimental) The parent project, if this project is part of a bigger project.
        Specified by:
        getParent in interface ProjectOptions
      • getProjenCommand

        public final String getProjenCommand()
        Deprecated.
        Description copied from interface: ProjectOptions
        (experimental) The shell command to use in order to run the projen CLI.

        Can be used to customize in special environments.

        Default: "npx projen"

        Specified by:
        getProjenCommand in interface ProjectOptions
      • getProjenrcJson

        public final Boolean getProjenrcJson()
        Deprecated.
        Description copied from interface: ProjectOptions
        (experimental) Generate (once) .projenrc.json (in JSON). Set to false in order to disable .projenrc.json generation.

        Default: false

        Specified by:
        getProjenrcJson in interface ProjectOptions
      • getRenovatebot

        public final Boolean getRenovatebot()
        Deprecated.
        Description copied from interface: ProjectOptions
        (experimental) Use renovatebot to handle dependency upgrades.

        Default: false

        Specified by:
        getRenovatebot in interface ProjectOptions
      • getAllowLibraryDependencies

        public final Boolean getAllowLibraryDependencies()
        Deprecated.
        Description copied from interface: NodePackageOptions
        (experimental) Allow the project to include peerDependencies and bundledDependencies.

        This is normally only allowed for libraries. For apps, there's no meaning for specifying these.

        Default: true

        Specified by:
        getAllowLibraryDependencies in interface NodePackageOptions
      • getAutoDetectBin

        public final Boolean getAutoDetectBin()
        Deprecated.
        Description copied from interface: NodePackageOptions
        (experimental) Automatically add all executables under the bin directory to your package.json file under the bin section.

        Default: true

        Specified by:
        getAutoDetectBin in interface NodePackageOptions
      • getBin

        public final Map<String,​String> getBin()
        Deprecated.
        Description copied from interface: NodePackageOptions
        (experimental) Binary programs vended with your module.

        You can use this option to add/customize how binaries are represented in your package.json, but unless autoDetectBin is false, every executable file under bin will automatically be added to this section.

        Specified by:
        getBin in interface NodePackageOptions
      • getBundledDeps

        public final List<String> getBundledDeps()
        Deprecated.
        Description copied from interface: NodePackageOptions
        (experimental) List of dependencies to bundle into this module.

        These modules will be added both to the dependencies section and bundledDependencies section of your package.json.

        The recommendation is to only specify the module name here (e.g. express). This will behave similar to yarn add or npm install in the sense that it will add the module as a dependency to your package.json file with the latest version (^). You can specify semver requirements in the same syntax passed to npm i or yarn add (e.g. express@^2) and this will be what you package.json will eventually include.

        Specified by:
        getBundledDeps in interface NodePackageOptions
      • getCodeArtifactOptions

        public final CodeArtifactOptions getCodeArtifactOptions()
        Deprecated.
        Description copied from interface: NodePackageOptions
        (experimental) Options for npm packages using AWS CodeArtifact.

        This is required if publishing packages to, or installing scoped packages from AWS CodeArtifact

        Default: - undefined

        Specified by:
        getCodeArtifactOptions in interface NodePackageOptions
      • getDeps

        public final List<String> getDeps()
        Deprecated.
        Description copied from interface: NodePackageOptions
        (experimental) Runtime dependencies of this module.

        The recommendation is to only specify the module name here (e.g. express). This will behave similar to yarn add or npm install in the sense that it will add the module as a dependency to your package.json file with the latest version (^). You can specify semver requirements in the same syntax passed to npm i or yarn add (e.g. express@^2) and this will be what you package.json will eventually include.

        Default: []

        Example:

         [ 'express', 'lodash', 'foo@^2' ]
         
        Specified by:
        getDeps in interface NodePackageOptions
      • getDescription

        public final String getDescription()
        Deprecated.
        Description copied from interface: NodePackageOptions
        (experimental) The description is just a string that helps people understand the purpose of the package.

        It can be used when searching for packages in a package manager as well. See https://classic.yarnpkg.com/en/docs/package-json/#toc-description

        Specified by:
        getDescription in interface NodePackageOptions
      • getDevDeps

        public final List<String> getDevDeps()
        Deprecated.
        Description copied from interface: NodePackageOptions
        (experimental) Build dependencies for this module.

        These dependencies will only be available in your build environment but will not be fetched when this module is consumed.

        The recommendation is to only specify the module name here (e.g. express). This will behave similar to yarn add or npm install in the sense that it will add the module as a dependency to your package.json file with the latest version (^). You can specify semver requirements in the same syntax passed to npm i or yarn add (e.g. express@^2) and this will be what you package.json will eventually include.

        Default: []

        Example:

         [ 'typescript', '@types/express' ]
         
        Specified by:
        getDevDeps in interface NodePackageOptions
      • getEntrypoint

        public final String getEntrypoint()
        Deprecated.
        Description copied from interface: NodePackageOptions
        (experimental) Module entrypoint (main in package.json).

        Set to an empty string to not include main in your package.json

        Default: "lib/index.js"

        Specified by:
        getEntrypoint in interface NodePackageOptions
      • getLicense

        public final String getLicense()
        Deprecated.
        Description copied from interface: NodePackageOptions
        (experimental) License's SPDX identifier.

        See https://github.com/projen/projen/tree/main/license-text for a list of supported licenses. Use the licensed option if you want to no license to be specified.

        Default: "Apache-2.0"

        Specified by:
        getLicense in interface NodePackageOptions
      • getMinNodeVersion

        public final String getMinNodeVersion()
        Deprecated.
        Description copied from interface: NodePackageOptions
        (experimental) Minimum Node.js version to require via package.json engines (inclusive).

        Default: - no "engines" specified

        Specified by:
        getMinNodeVersion in interface NodePackageOptions
      • getNpmAccess

        public final NpmAccess getNpmAccess()
        Deprecated.
        Description copied from interface: NodePackageOptions
        (experimental) Access level of the npm package.

        Default: - for scoped packages (e.g. `foo@bar`), the default is `NpmAccess.RESTRICTED`, for non-scoped packages, the default is `NpmAccess.PUBLIC`.

        Specified by:
        getNpmAccess in interface NodePackageOptions
      • getNpmProvenance

        public final Boolean getNpmProvenance()
        Deprecated.
        Description copied from interface: NodePackageOptions
        (experimental) Should provenance statements be generated when the package is published.

        A supported package manager is required to publish a package with npm provenance statements and you will need to use a supported CI/CD provider.

        Note that the projen Release and Publisher components are using publib to publish packages, which is using npm internally and supports provenance statements independently of the package manager used.

        Default: - true for public packages, false otherwise

        Specified by:
        getNpmProvenance in interface NodePackageOptions
        See Also:
        https://docs.npmjs.com/generating-provenance-statements
      • getNpmRegistry

        public final String getNpmRegistry()
        Deprecated.
        Description copied from interface: NodePackageOptions
        (deprecated) The host name of the npm registry to publish to.

        Cannot be set together with npmRegistryUrl.

        Specified by:
        getNpmRegistry in interface NodePackageOptions
      • getNpmRegistryUrl

        public final String getNpmRegistryUrl()
        Deprecated.
        Description copied from interface: NodePackageOptions
        (experimental) The base URL of the npm package registry.

        Must be a URL (e.g. start with "https://" or "http://")

        Default: "https://registry.npmjs.org"

        Specified by:
        getNpmRegistryUrl in interface NodePackageOptions
      • getNpmTokenSecret

        public final String getNpmTokenSecret()
        Deprecated.
        Description copied from interface: NodePackageOptions
        (experimental) GitHub secret which contains the NPM token to use when publishing packages.

        Default: "NPM_TOKEN"

        Specified by:
        getNpmTokenSecret in interface NodePackageOptions
      • getPeerDeps

        public final List<String> getPeerDeps()
        Deprecated.
        Description copied from interface: NodePackageOptions
        (experimental) Peer dependencies for this module.

        Dependencies listed here are required to be installed (and satisfied) by the consumer of this library. Using peer dependencies allows you to ensure that only a single module of a certain library exists in the node_modules tree of your consumers.

        Note that prior to npm@7, peer dependencies are not automatically installed, which means that adding peer dependencies to a library will be a breaking change for your customers.

        Unless peerDependencyOptions.pinnedDevDependency is disabled (it is enabled by default), projen will automatically add a dev dependency with a pinned version for each peer dependency. This will ensure that you build & test your module against the lowest peer version required.

        Default: []

        Specified by:
        getPeerDeps in interface NodePackageOptions
      • getRepository

        public final String getRepository()
        Deprecated.
        Description copied from interface: NodePackageOptions
        (experimental) The repository is the location where the actual code for your package lives.

        See https://classic.yarnpkg.com/en/docs/package-json/#toc-repository

        Specified by:
        getRepository in interface NodePackageOptions
      • getRepositoryDirectory

        public final String getRepositoryDirectory()
        Deprecated.
        Description copied from interface: NodePackageOptions
        (experimental) If the package.json for your package is not in the root directory (for example if it is part of a monorepo), you can specify the directory in which it lives.
        Specified by:
        getRepositoryDirectory in interface NodePackageOptions
      • getScripts

        public final Map<String,​String> getScripts()
        Deprecated.
        Description copied from interface: NodePackageOptions
        (deprecated) npm scripts to include.

        If a script has the same name as a standard script, the standard script will be overwritten. Also adds the script as a task.

        Default: {}

        Specified by:
        getScripts in interface NodePackageOptions
      • getMajorVersion

        public final Number getMajorVersion()
        Deprecated.
        Description copied from interface: ReleaseProjectOptions
        (experimental) Major version to release from the default branch.

        If this is specified, we bump the latest version of this major version line. If not specified, we bump the global latest version.

        Default: - Major version is not enforced.

        Specified by:
        getMajorVersion in interface ReleaseProjectOptions
      • getMinMajorVersion

        public final Number getMinMajorVersion()
        Deprecated.
        Description copied from interface: ReleaseProjectOptions
        (experimental) Minimal Major version to release.

        This can be useful to set to 1, as breaking changes before the 1.x major release are not incrementing the major version number.

        Can not be set together with majorVersion.

        Default: - No minimum version is being enforced

        Specified by:
        getMinMajorVersion in interface ReleaseProjectOptions
      • getNpmDistTag

        public final String getNpmDistTag()
        Deprecated.
        Description copied from interface: ReleaseProjectOptions
        (experimental) The npmDistTag to use when publishing from the default branch.

        To set the npm dist-tag for release branches, set the npmDistTag property for each branch.

        Default: "latest"

        Specified by:
        getNpmDistTag in interface ReleaseProjectOptions
      • getPrerelease

        public final String getPrerelease()
        Deprecated.
        Description copied from interface: ReleaseProjectOptions
        (experimental) Bump versions from the default branch as pre-releases (e.g. "beta", "alpha", "pre").

        Default: - normal semantic versions

        Specified by:
        getPrerelease in interface ReleaseProjectOptions
      • getPublishTasks

        public final Boolean getPublishTasks()
        Deprecated.
        Description copied from interface: ReleaseProjectOptions
        (experimental) Define publishing tasks that can be executed manually as well as workflows.

        Normally, publishing only happens within automated workflows. Enable this in order to create a publishing task for each publishing activity.

        Default: false

        Specified by:
        getPublishTasks in interface ReleaseProjectOptions
      • getReleaseBranches

        public final Map<String,​BranchOptions> getReleaseBranches()
        Deprecated.
        Description copied from interface: ReleaseProjectOptions
        (experimental) Defines additional release branches.

        A workflow will be created for each release branch which will publish releases from commits in this branch. Each release branch must be assigned a major version number which is used to enforce that versions published from that branch always use that major version. If multiple branches are used, the majorVersion field must also be provided for the default branch.

        Default: - no additional branches are used for release. you can use `addBranch()` to add additional branches.

        Specified by:
        getReleaseBranches in interface ReleaseProjectOptions
      • getReleaseTagPrefix

        public final String getReleaseTagPrefix()
        Deprecated.
        Description copied from interface: ReleaseProjectOptions
        (experimental) Automatically add the given prefix to release tags. Useful if you are releasing on multiple branches with overlapping version numbers.

        Note: this prefix is used to detect the latest tagged version when bumping, so if you change this on a project with an existing version history, you may need to manually tag your latest release with the new prefix.

        Default: "v"

        Specified by:
        getReleaseTagPrefix in interface ReleaseProjectOptions
      • getVersionrcOptions

        public final Map<String,​Object> getVersionrcOptions()
        Deprecated.
        Description copied from interface: ReleaseProjectOptions
        (experimental) Custom configuration used when creating changelog with standard-version package.

        Given values either append to default configuration or overwrite values in it.

        Default: - standard configuration applicable for GitHub repositories

        Specified by:
        getVersionrcOptions in interface ReleaseProjectOptions
      • getCdkAssertions

        public final Boolean getCdkAssertions()
        Deprecated.
        Description copied from interface: AwsCdkDepsCommonOptions
        (experimental) Install the assertions library?

        Only needed for CDK 1.x. If using CDK 2.x then assertions is already included in 'aws-cdk-lib'

        Default: - will be included by default for AWS CDK >= 1.111.0 < 2.0.0

        Specified by:
        getCdkAssertions in interface AwsCdkDepsCommonOptions
      • getCdkDependenciesAsDeps

        public final Boolean getCdkDependenciesAsDeps()
        Deprecated.
        Description copied from interface: AwsCdkDepsCommonOptions
        (deprecated) If this is enabled (default), all modules declared in cdkDependencies will be also added as normal dependencies (as well as peerDependencies).

        This is to ensure that downstream consumers actually have your CDK dependencies installed when using npm < 7 or yarn, where peer dependencies are not automatically installed. If this is disabled, cdkDependencies will be added to devDependencies to ensure they are present during development.

        Note: this setting only applies to construct library projects

        Default: true

        Specified by:
        getCdkDependenciesAsDeps in interface AwsCdkDepsCommonOptions
      • getCdkVersionPinning

        public final Boolean getCdkVersionPinning()
        Deprecated.
        Description copied from interface: AwsCdkDepsCommonOptions
        (experimental) Use pinned version instead of caret version for CDK.

        You can use this to prevent mixed versions for your CDK dependencies and to prevent auto-updates. If you use experimental features this will let you define the moment you include breaking changes.

        Specified by:
        getCdkVersionPinning in interface AwsCdkDepsCommonOptions
      • getConstructsVersion

        public final String getConstructsVersion()
        Deprecated.
        Description copied from interface: AwsCdkDepsCommonOptions
        (experimental) Minimum version of the constructs library to depend on.

        Default: - for CDK 1.x the default is "3.2.27", for CDK 2.x the default is "10.0.5".

        Specified by:
        getConstructsVersion in interface AwsCdkDepsCommonOptions
      • $jsii$toJson

        @Internal
        public com.fasterxml.jackson.databind.JsonNode $jsii$toJson()
        Deprecated.
        Specified by:
        $jsii$toJson in interface software.amazon.jsii.JsiiSerializable
      • equals

        public final boolean equals​(Object o)
        Deprecated.
        Overrides:
        equals in class Object
      • hashCode

        public final int hashCode()
        Deprecated.
        Overrides:
        hashCode in class Object