Interface CfnAppImageConfigProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnAppImageConfigProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.93.0 (build 1706ca5)", date="2024-01-03T18:29:32.228Z") @Stability(Stable) public interface CfnAppImageConfigProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnAppImageConfig.

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

See Also: