@Stability(value=Stable)
public static interface CfnUserProfile.KernelGatewayAppSettingsProperty
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.*;
KernelGatewayAppSettingsProperty kernelGatewayAppSettingsProperty = KernelGatewayAppSettingsProperty.builder()
.customImages(List.of(CustomImageProperty.builder()
.appImageConfigName("appImageConfigName")
.imageName("imageName")
// the properties below are optional
.imageVersionNumber(123)
.build()))
.defaultResourceSpec(ResourceSpecProperty.builder()
.instanceType("instanceType")
.sageMakerImageArn("sageMakerImageArn")
.sageMakerImageVersionArn("sageMakerImageVersionArn")
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnUserProfile.KernelGatewayAppSettingsProperty.Builder
A builder for
CfnUserProfile.KernelGatewayAppSettingsProperty |
static class |
CfnUserProfile.KernelGatewayAppSettingsProperty.Jsii$Proxy
An implementation for
CfnUserProfile.KernelGatewayAppSettingsProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnUserProfile.KernelGatewayAppSettingsProperty.Builder |
builder() |
default Object |
getCustomImages()
A list of custom SageMaker images that are configured to run as a KernelGateway app.
|
default Object |
getDefaultResourceSpec()
The default instance type and the Amazon Resource Name (ARN) of the default SageMaker image used by the KernelGateway app.
|
@Stability(value=Stable) @Nullable default Object getCustomImages()
@Stability(value=Stable) @Nullable default Object getDefaultResourceSpec()
@Stability(value=Stable) static CfnUserProfile.KernelGatewayAppSettingsProperty.Builder builder()
Copyright © 2022. All rights reserved.