@Generated(value="jsii-pacmak/1.50.0 (build d1830a4)", date="2022-01-04T15:39:07.899Z") @Stability(value=Experimental) public interface ScratchSpace 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.*;
ScratchSpace scratchSpace = ScratchSpace.builder()
.containerPath("containerPath")
.name("name")
.readOnly(false)
.sourcePath("sourcePath")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
ScratchSpace.Builder
A builder for
ScratchSpace |
static class |
ScratchSpace.Jsii$Proxy
An implementation for
ScratchSpace |
| Modifier and Type | Method and Description |
|---|---|
static ScratchSpace.Builder |
builder() |
String |
getContainerPath()
(experimental) The path on the container to mount the scratch volume at.
|
String |
getName()
(experimental) The name of the scratch volume to mount.
|
Boolean |
getReadOnly()
(experimental) Specifies whether to give the container read-only access to the scratch volume.
|
String |
getSourcePath() |
@Stability(value=Experimental) @NotNull String getContainerPath()
@Stability(value=Experimental) @NotNull String getName()
Must be a volume name referenced in the name parameter of task definition volume.
@Stability(value=Experimental) @NotNull Boolean getReadOnly()
If this value is true, the container has read-only access to the scratch volume. If this value is false, then the container can write to the scratch volume.
@Stability(value=Experimental) @NotNull String getSourcePath()
@Stability(value=Experimental) static ScratchSpace.Builder builder()
ScratchSpace.Builder of ScratchSpaceCopyright © 2022. All rights reserved.