Interface InitFileAssetOptions
- All Superinterfaces:
AssetOptions,AssetOptions,FileCopyOptions,InitFileOptions,software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
InitFileAssetOptions.Jsii$Proxy
@Generated(value="jsii-pacmak/1.116.0 (build 0eddcff)",
date="2025-10-29T11:15:37.997Z")
@Stability(Stable)
public interface InitFileAssetOptions
extends software.amazon.jsii.JsiiSerializable, InitFileOptions, AssetOptions
Additional options for creating an InitFile from an asset.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.*;
import software.amazon.awscdk.services.ec2.*;
import software.amazon.awscdk.services.iam.*;
import software.amazon.awscdk.services.kms.*;
DockerImage dockerImage;
IGrantable grantable;
InitServiceRestartHandle initServiceRestartHandle;
IKeyRef keyRef;
ILocalBundling localBundling;
InitFileAssetOptions initFileAssetOptions = InitFileAssetOptions.builder()
.assetHash("assetHash")
.assetHashType(AssetHashType.SOURCE)
.base64Encoded(false)
.bundling(BundlingOptions.builder()
.image(dockerImage)
// the properties below are optional
.bundlingFileAccess(BundlingFileAccess.VOLUME_COPY)
.command(List.of("command"))
.entrypoint(List.of("entrypoint"))
.environment(Map.of(
"environmentKey", "environment"))
.local(localBundling)
.network("network")
.outputType(BundlingOutput.ARCHIVED)
.platform("platform")
.securityOpt("securityOpt")
.user("user")
.volumes(List.of(DockerVolume.builder()
.containerPath("containerPath")
.hostPath("hostPath")
// the properties below are optional
.consistency(DockerVolumeConsistency.CONSISTENT)
.build()))
.volumesFrom(List.of("volumesFrom"))
.workingDirectory("workingDirectory")
.build())
.deployTime(false)
.displayName("displayName")
.exclude(List.of("exclude"))
.followSymlinks(SymlinkFollowMode.NEVER)
.group("group")
.ignoreMode(IgnoreMode.GLOB)
.mode("mode")
.owner("owner")
.readers(List.of(grantable))
.serviceRestartHandles(List.of(initServiceRestartHandle))
.sourceKMSKey(keyRef)
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forInitFileAssetOptionsstatic final classAn implementation forInitFileAssetOptions -
Method Summary
Static MethodsMethods inherited from interface software.amazon.awscdk.AssetOptions
getAssetHash, getAssetHashType, getBundlingMethods inherited from interface software.amazon.awscdk.services.s3.assets.AssetOptions
getDeployTime, getDisplayName, getReaders, getSourceKMSKeyMethods inherited from interface software.amazon.awscdk.FileCopyOptions
getExclude, getFollowSymlinks, getIgnoreModeMethods inherited from interface software.amazon.awscdk.services.ec2.InitFileOptions
getBase64Encoded, getGroup, getMode, getOwner, getServiceRestartHandlesMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
builder
- Returns:
- a
InitFileAssetOptions.BuilderofInitFileAssetOptions
-