@Generated(value="jsii-pacmak/1.73.0 (build 6faeda3)", date="2023-01-31T18:36:52.269Z") public interface AssetOptions extends CopyOptions, FileCopyOptions, AssetOptions
Function.Builder.create(this, "Function") .code(Code.fromAsset(join(__dirname, "my-python-handler"), AssetOptions.builder() .bundling(BundlingOptions.builder() .image(Runtime.PYTHON_3_9.getBundlingImage()) .command(List.of("bash", "-c", "pip install -r requirements.txt -t /asset-output && cp -au . /asset-output")) .build()) .build())) .runtime(Runtime.PYTHON_3_9) .handler("index.handler") .build();
Modifier and Type | Interface and Description |
---|---|
static class |
AssetOptions.Builder
A builder for
AssetOptions |
static class |
AssetOptions.Jsii$Proxy
An implementation for
AssetOptions |
Modifier and Type | Method and Description |
---|---|
static AssetOptions.Builder |
builder() |
default java.util.List<java.lang.String> |
getExclude()
Deprecated.
|
default IgnoreMode |
getIgnoreMode()
Deprecated.
|
default java.util.List<IGrantable> |
getReaders()
A list of principals that should be able to read this asset from S3.
|
default java.lang.String |
getSourceHash()
Deprecated.
see `assetHash` and `assetHashType`
|
getFollow
getFollowSymlinks
getAssetHash, getAssetHashType, getBundling
default java.util.List<IGrantable> getReaders()
You can use asset.grantRead(principal)
to grant read permissions later.
Default: - No principals that can read file asset.
@Deprecated default java.lang.String getSourceHash()
For consistency, this custom hash will be SHA256 hashed and encoded as hex. The resulting hash will be the asset hash.
NOTE: the source 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 source hash, you will need to make sure it is updated every time the source changes, or otherwise it is possible that some deployments will not be invalidated.
Default: - automatically calculate source hash based on the contents of the source file or directory.
@Deprecated default java.util.List<java.lang.String> getExclude()
Default: nothing is excluded
getExclude
in interface CopyOptions
getExclude
in interface FileCopyOptions
@Deprecated default IgnoreMode getIgnoreMode()
Default: - GLOB for file assets, DOCKER or GLOB for docker assets depending on whether the '
getIgnoreMode
in interface CopyOptions
getIgnoreMode
in interface FileCopyOptions
static AssetOptions.Builder builder()
builder
in interface AssetOptions
builder
in interface CopyOptions
builder
in interface FileCopyOptions
AssetOptions.Builder
of AssetOptions