pub struct Builder { /* private fields */ }
Expand description
A builder for CreateAppImageConfigInput
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn app_image_config_name(self, input: impl Into<String>) -> Self
pub fn app_image_config_name(self, input: impl Into<String>) -> Self
The name of the AppImageConfig. Must be unique to your account.
sourcepub fn set_app_image_config_name(self, input: Option<String>) -> Self
pub fn set_app_image_config_name(self, input: Option<String>) -> Self
The name of the AppImageConfig. Must be unique to your account.
Appends an item to tags
.
To override the contents of this collection use set_tags
.
A list of tags to apply to the AppImageConfig.
A list of tags to apply to the AppImageConfig.
sourcepub fn kernel_gateway_image_config(self, input: KernelGatewayImageConfig) -> Self
pub fn kernel_gateway_image_config(self, input: KernelGatewayImageConfig) -> Self
The KernelGatewayImageConfig. You can only specify one image kernel in the AppImageConfig API. This kernel will be shown to users before the image starts. Once the image runs, all kernels are visible in JupyterLab.
sourcepub fn set_kernel_gateway_image_config(
self,
input: Option<KernelGatewayImageConfig>
) -> Self
pub fn set_kernel_gateway_image_config(
self,
input: Option<KernelGatewayImageConfig>
) -> Self
The KernelGatewayImageConfig. You can only specify one image kernel in the AppImageConfig API. This kernel will be shown to users before the image starts. Once the image runs, all kernels are visible in JupyterLab.
sourcepub fn build(self) -> Result<CreateAppImageConfigInput, BuildError>
pub fn build(self) -> Result<CreateAppImageConfigInput, BuildError>
Consumes the builder and constructs a CreateAppImageConfigInput
.