public static final class InitFileAssetOptions.Jsii$Proxy extends software.amazon.jsii.JsiiObject implements InitFileAssetOptions
InitFileAssetOptions
InitFileAssetOptions.Builder, InitFileAssetOptions.Jsii$Proxy
Modifier | Constructor and Description |
---|---|
protected |
Jsii$Proxy(software.amazon.jsii.JsiiObjectRef objRef)
Constructor that initializes the object based on values retrieved from the JsiiObject.
|
Modifier and Type | Method and Description |
---|---|
com.fasterxml.jackson.databind.JsonNode |
$jsii$toJson() |
boolean |
equals(java.lang.Object o) |
java.lang.String |
getAssetHash()
Specify a custom hash for this asset.
|
AssetHashType |
getAssetHashType()
Specifies the type of hash to calculate for this asset.
|
java.lang.Boolean |
getBase64Encoded()
True if the inlined content (from a string or file) should be treated as base64 encoded.
|
BundlingOptions |
getBundling()
Bundle the asset by executing a command in a Docker container or a custom bundling provider.
|
java.util.List<java.lang.String> |
getExclude()
(deprecated) Glob patterns to exclude from the copy.
|
FollowMode |
getFollow()
(deprecated) A strategy for how to handle symlinks.
|
SymlinkFollowMode |
getFollowSymlinks()
A strategy for how to handle symlinks.
|
java.lang.String |
getGroup()
The name of the owning group for this file.
|
IgnoreMode |
getIgnoreMode()
(deprecated) The ignore behavior to use for exclude patterns.
|
java.lang.String |
getMode()
A six-digit octal value representing the mode for this file.
|
java.lang.String |
getOwner()
The name of the owning user for this file.
|
java.util.List<IGrantable> |
getReaders()
A list of principals that should be able to read this asset from S3.
|
java.util.List<InitServiceRestartHandle> |
getServiceRestartHandles()
Restart the given service after this file has been written.
|
java.lang.String |
getSourceHash()
(deprecated) Custom hash to use when identifying the specific version of the asset.
|
int |
hashCode() |
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
builder
protected Jsii$Proxy(software.amazon.jsii.JsiiObjectRef objRef)
objRef
- Reference to the JSII managed object.public final java.lang.Boolean getBase64Encoded()
InitFileOptions
Only applicable for inlined string and file content.
Default: false
getBase64Encoded
in interface InitFileOptions
public final java.lang.String getGroup()
InitFileOptions
Not supported for Windows systems.
Default: 'root'
getGroup
in interface InitFileOptions
public final java.lang.String getMode()
InitFileOptions
Use the first three digits for symlinks and the last three digits for setting permissions. To create a symlink, specify 120xxx, where xxx defines the permissions of the target file. To specify permissions for a file, use the last three digits, such as 000644.
Not supported for Windows systems.
Default: '000644'
getMode
in interface InitFileOptions
public final java.lang.String getOwner()
InitFileOptions
Not supported for Windows systems.
Default: 'root'
getOwner
in interface InitFileOptions
public final java.util.List<InitServiceRestartHandle> getServiceRestartHandles()
InitFileOptions
Default: - Do not restart any service
getServiceRestartHandles
in interface InitFileOptions
public final java.util.List<IGrantable> getReaders()
AssetOptions
You can use asset.grantRead(principal)
to grant read permissions later.
Default: - No principals that can read file asset.
public final java.lang.String getSourceHash()
AssetOptions
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.
public final java.util.List<java.lang.String> getExclude()
AssetOptions
Default: nothing is excluded
getExclude
in interface CopyOptions
getExclude
in interface FileCopyOptions
public final FollowMode getFollow()
CopyOptions
Default: Never
getFollow
in interface CopyOptions
public final IgnoreMode getIgnoreMode()
AssetOptions
Default: - GLOB for file assets, DOCKER or GLOB for docker assets depending on whether the '
getIgnoreMode
in interface CopyOptions
getIgnoreMode
in interface FileCopyOptions
public final SymlinkFollowMode getFollowSymlinks()
FileCopyOptions
Default: SymlinkFollowMode.NEVER
getFollowSymlinks
in interface FileCopyOptions
public final java.lang.String getAssetHash()
AssetOptions
If assetHashType
is set it must
be set to AssetHashType.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.
Default: - based on `assetHashType`
getAssetHash
in interface AssetOptions
public final AssetHashType getAssetHashType()
AssetOptions
If assetHash
is configured, this option must be undefined
or
AssetHashType.CUSTOM
.
Default: - the default is `AssetHashType.SOURCE`, but if `assetHash` is explicitly specified this value defaults to `AssetHashType.CUSTOM`.
getAssetHashType
in interface AssetOptions
public final BundlingOptions getBundling()
AssetOptions
The asset path will be mounted at /asset-input
. The Docker
container is responsible for putting content at /asset-output
.
The content at /asset-output
will be zipped and used as the
final asset.
Default: - uploaded as-is to S3 if the asset is a regular file or a .zip file, archived into a .zip file and uploaded to S3 otherwise
getBundling
in interface AssetOptions
public com.fasterxml.jackson.databind.JsonNode $jsii$toJson()
public final boolean equals(java.lang.Object o)
public final int hashCode()