@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:41.856Z") @Stability(value=Stable) public interface CfnAppImageConfigProps 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.sagemaker.*;
CfnAppImageConfigProps cfnAppImageConfigProps = CfnAppImageConfigProps.builder()
.appImageConfigName("appImageConfigName")
// the properties below are optional
.kernelGatewayImageConfig(KernelGatewayImageConfigProperty.builder()
.kernelSpecs(List.of(KernelSpecProperty.builder()
.name("name")
// the properties below are optional
.displayName("displayName")
.build()))
// the properties below are optional
.fileSystemConfig(FileSystemConfigProperty.builder()
.defaultGid(123)
.defaultUid(123)
.mountPath("mountPath")
.build())
.build())
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnAppImageConfigProps.Builder
A builder for
CfnAppImageConfigProps |
static class |
CfnAppImageConfigProps.Jsii$Proxy
An implementation for
CfnAppImageConfigProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnAppImageConfigProps.Builder |
builder() |
String |
getAppImageConfigName()
The name of the AppImageConfig.
|
default Object |
getKernelGatewayImageConfig()
The configuration for the file system and kernels in the SageMaker image.
|
default List<CfnTag> |
getTags()
An array of key-value pairs to apply to this resource.
|
@Stability(value=Stable) @NotNull String getAppImageConfigName()
Must be unique to your account.
@Stability(value=Stable) @Nullable default Object getKernelGatewayImageConfig()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
For more information, see Tag .
@Stability(value=Stable) static CfnAppImageConfigProps.Builder builder()
CfnAppImageConfigProps.Builder of CfnAppImageConfigPropsCopyright © 2022. All rights reserved.