#[non_exhaustive]pub struct CreateAppImageConfigInput {
pub app_image_config_name: Option<String>,
pub tags: Option<Vec<Tag>>,
pub kernel_gateway_image_config: Option<KernelGatewayImageConfig>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.app_image_config_name: Option<String>
The name of the AppImageConfig. Must be unique to your account.
A list of tags to apply to the AppImageConfig.
kernel_gateway_image_config: Option<KernelGatewayImageConfig>
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.
Implementations§
source§impl CreateAppImageConfigInput
impl CreateAppImageConfigInput
sourcepub fn app_image_config_name(&self) -> Option<&str>
pub fn app_image_config_name(&self) -> Option<&str>
The name of the AppImageConfig. Must be unique to your account.
A list of tags to apply to the AppImageConfig.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .tags.is_none()
.
sourcepub fn kernel_gateway_image_config(&self) -> Option<&KernelGatewayImageConfig>
pub fn kernel_gateway_image_config(&self) -> Option<&KernelGatewayImageConfig>
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.
source§impl CreateAppImageConfigInput
impl CreateAppImageConfigInput
sourcepub fn builder() -> CreateAppImageConfigInputBuilder
pub fn builder() -> CreateAppImageConfigInputBuilder
Creates a new builder-style object to manufacture CreateAppImageConfigInput
.
Trait Implementations§
source§impl Clone for CreateAppImageConfigInput
impl Clone for CreateAppImageConfigInput
source§fn clone(&self) -> CreateAppImageConfigInput
fn clone(&self) -> CreateAppImageConfigInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CreateAppImageConfigInput
impl Debug for CreateAppImageConfigInput
source§impl PartialEq for CreateAppImageConfigInput
impl PartialEq for CreateAppImageConfigInput
source§fn eq(&self, other: &CreateAppImageConfigInput) -> bool
fn eq(&self, other: &CreateAppImageConfigInput) -> bool
self
and other
values to be equal, and is used
by ==
.