Class BundlingOptions.Builder
- All Implemented Interfaces:
software.amazon.jsii.Builder<BundlingOptions>
- Enclosing interface:
BundlingOptions
BundlingOptions
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionassetExcludes
(List<String> assetExcludes) Sets the value ofBundlingOptions.getAssetExcludes()
Sets the value ofBundlingOptions.getAssetHash()
assetHashType
(AssetHashType assetHashType) Sets the value ofBundlingOptions.getAssetHashType()
build()
Builds the configured instance.Sets the value ofBundlingOptions.getBuildArgs()
bundlingFileAccess
(BundlingFileAccess bundlingFileAccess) Sets the value ofBundlingOptions.getBundlingFileAccess()
Sets the value ofDockerRunOptions.getCommand()
commandHooks
(ICommandHooks commandHooks) Sets the value ofBundlingOptions.getCommandHooks()
entrypoint
(List<String> entrypoint) Sets the value ofDockerRunOptions.getEntrypoint()
environment
(Map<String, String> environment) Sets the value ofDockerRunOptions.getEnvironment()
image
(DockerImage image) Sets the value ofBundlingOptions.getImage()
Sets the value ofDockerRunOptions.getNetwork()
outputPathSuffix
(String outputPathSuffix) Sets the value ofBundlingOptions.getOutputPathSuffix()
Sets the value ofDockerRunOptions.getPlatform()
poetryIncludeHashes
(Boolean poetryIncludeHashes) Sets the value ofBundlingOptions.getPoetryIncludeHashes()
poetryWithoutUrls
(Boolean poetryWithoutUrls) Sets the value ofBundlingOptions.getPoetryWithoutUrls()
securityOpt
(String securityOpt) Sets the value ofDockerRunOptions.getSecurityOpt()
Sets the value ofDockerRunOptions.getUser()
volumes
(List<? extends DockerVolume> volumes) Sets the value ofDockerRunOptions.getVolumes()
volumesFrom
(List<String> volumesFrom) Sets the value ofDockerRunOptions.getVolumesFrom()
workingDirectory
(String workingDirectory) Sets the value ofDockerRunOptions.getWorkingDirectory()
-
Constructor Details
-
Builder
public Builder()
-
-
Method Details
-
assetExcludes
Sets the value ofBundlingOptions.getAssetExcludes()
- Parameters:
assetExcludes
- List of file patterns to exclude when copying assets from source for bundling.- Returns:
this
-
assetHash
Sets the value ofBundlingOptions.getAssetHash()
- Parameters:
assetHash
- Specify a custom hash for this asset. IfassetHashType
is set it must be set toAssetHashType.CUSTOM
. For consistency, this custom hash will be SHA256 hashed and encoded as hex. The resulting hash will be the asset hash.NOTE: the hash is used in order to identify a specific revision of the asset, and used for optimizing and caching deployment activities related to this asset such as packaging, uploading to Amazon S3, etc. If you chose to customize the hash, you will need to make sure it is updated every time the asset changes, or otherwise it is possible that some deployments will not be invalidated.
- Returns:
this
-
assetHashType
Sets the value ofBundlingOptions.getAssetHashType()
- Parameters:
assetHashType
- Determines how asset hash is calculated. Assets will get rebuild and uploaded only if their hash has changed. If asset hash is set toSOURCE
(default), then only changes to the source directory will cause the asset to rebuild. This means, for example, that in order to pick up a new dependency version, a change must be made to the source tree. Ideally, this can be implemented by including a dependency lockfile in your source tree or using fixed dependencies.If the asset hash is set to
OUTPUT
, the hash is calculated after bundling. This means that any change in the output will cause the asset to be invalidated and uploaded. Bear in mind thatpip
adds timestamps to dependencies it installs, which implies that in this mode Python bundles will always get rebuild and uploaded. Normally this is an anti-pattern since build- Returns:
this
-
buildArgs
Sets the value ofBundlingOptions.getBuildArgs()
- Parameters:
buildArgs
- Optional build arguments to pass to the default container. This can be used to customize the index URLs used for installing dependencies. This is not used if a custom image is provided.- Returns:
this
-
bundlingFileAccess
@Stability(Experimental) public BundlingOptions.Builder bundlingFileAccess(BundlingFileAccess bundlingFileAccess) Sets the value ofBundlingOptions.getBundlingFileAccess()
- Parameters:
bundlingFileAccess
- Which option to use to copy the source files to the docker container and output files back.- Returns:
this
-
commandHooks
Sets the value ofBundlingOptions.getCommandHooks()
- Parameters:
commandHooks
- Command hooks.- Returns:
this
-
image
Sets the value ofBundlingOptions.getImage()
- Parameters:
image
- Docker image to use for bundling. If no options are provided, the default bundling image will be used. Dependencies will be installed using the default packaging commands and copied over from into the Lambda asset.- Returns:
this
-
outputPathSuffix
Sets the value ofBundlingOptions.getOutputPathSuffix()
- Parameters:
outputPathSuffix
- Output path suffix: the suffix for the directory into which the bundled output is written.- Returns:
this
-
poetryIncludeHashes
@Stability(Experimental) public BundlingOptions.Builder poetryIncludeHashes(Boolean poetryIncludeHashes) Sets the value ofBundlingOptions.getPoetryIncludeHashes()
- Parameters:
poetryIncludeHashes
- Whether to export Poetry dependencies with hashes. Note that this can cause builds to fail if not all dependencies export with a hash.- Returns:
this
-
poetryWithoutUrls
@Stability(Experimental) public BundlingOptions.Builder poetryWithoutUrls(Boolean poetryWithoutUrls) Sets the value ofBundlingOptions.getPoetryWithoutUrls()
- Parameters:
poetryWithoutUrls
- Whether to export Poetry dependencies with source repository urls.- Returns:
this
-
command
Sets the value ofDockerRunOptions.getCommand()
- Parameters:
command
- The command to run in the container.- Returns:
this
-
entrypoint
Sets the value ofDockerRunOptions.getEntrypoint()
- Parameters:
entrypoint
- The entrypoint to run in the container.- Returns:
this
-
environment
Sets the value ofDockerRunOptions.getEnvironment()
- Parameters:
environment
- The environment variables to pass to the container.- Returns:
this
-
network
Sets the value ofDockerRunOptions.getNetwork()
- Parameters:
network
- Docker Networking options.- Returns:
this
-
platform
Sets the value ofDockerRunOptions.getPlatform()
- Parameters:
platform
- Set platform if server is multi-platform capable. Requires Docker Engine API v1.38+. Example value:linux/amd64
- Returns:
this
-
securityOpt
Sets the value ofDockerRunOptions.getSecurityOpt()
- Parameters:
securityOpt
- Security configuration when running the docker container.- Returns:
this
-
user
Sets the value ofDockerRunOptions.getUser()
- Parameters:
user
- The user to use when running the container.- Returns:
this
-
volumes
Sets the value ofDockerRunOptions.getVolumes()
- Parameters:
volumes
- Docker volumes to mount.- Returns:
this
-
volumesFrom
Sets the value ofDockerRunOptions.getVolumesFrom()
- Parameters:
volumesFrom
- Where to mount the specified volumes from.- Returns:
this
-
workingDirectory
Sets the value ofDockerRunOptions.getWorkingDirectory()
- Parameters:
workingDirectory
- Working directory inside the container.- Returns:
this
-
build
Builds the configured instance.- Specified by:
build
in interfacesoftware.amazon.jsii.Builder<BundlingOptions>
- Returns:
- a new instance of
BundlingOptions
- Throws:
NullPointerException
- if any required attribute was not provided
-