#[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
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
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.
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
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for CreateAppImageConfigInput
impl Debug for CreateAppImageConfigInput
source§impl PartialEq<CreateAppImageConfigInput> for CreateAppImageConfigInput
impl PartialEq<CreateAppImageConfigInput> for CreateAppImageConfigInput
source§fn eq(&self, other: &CreateAppImageConfigInput) -> bool
fn eq(&self, other: &CreateAppImageConfigInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CreateAppImageConfigInput
Auto Trait Implementations§
impl RefUnwindSafe for CreateAppImageConfigInput
impl Send for CreateAppImageConfigInput
impl Sync for CreateAppImageConfigInput
impl Unpin for CreateAppImageConfigInput
impl UnwindSafe for CreateAppImageConfigInput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more