Interface CfnUserProfile.KernelGatewayAppSettingsProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnUserProfile.KernelGatewayAppSettingsProperty.Jsii$Proxy
Enclosing class:
CfnUserProfile

@Stability(Stable) public static interface CfnUserProfile.KernelGatewayAppSettingsProperty extends software.amazon.jsii.JsiiSerializable
The KernelGateway app settings.

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();
 

See Also: