@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:38.766Z") @Stability(value=Stable) public interface Tmpfs extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.ecs.*;
Tmpfs tmpfs = Tmpfs.builder()
.containerPath("containerPath")
.size(123)
// the properties below are optional
.mountOptions(List.of(TmpfsMountOption.DEFAULTS))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
Tmpfs.Builder
A builder for
Tmpfs |
static class |
Tmpfs.Jsii$Proxy
An implementation for
Tmpfs |
| Modifier and Type | Method and Description |
|---|---|
static Tmpfs.Builder |
builder() |
String |
getContainerPath()
The absolute file path where the tmpfs volume is to be mounted.
|
default List<TmpfsMountOption> |
getMountOptions()
The list of tmpfs volume mount options.
|
Number |
getSize()
The size (in MiB) of the tmpfs volume.
|
@Stability(value=Stable) @NotNull String getContainerPath()
@Stability(value=Stable) @NotNull Number getSize()
@Stability(value=Stable) @Nullable default List<TmpfsMountOption> getMountOptions()
For more information, see TmpfsMountOptions.
@Stability(value=Stable) static Tmpfs.Builder builder()
Tmpfs.Builder of TmpfsCopyright © 2022. All rights reserved.