Struct aws_sdk_sagemaker::types::CodeEditorAppSettings
source · #[non_exhaustive]pub struct CodeEditorAppSettings {
pub default_resource_spec: Option<ResourceSpec>,
pub custom_images: Option<Vec<CustomImage>>,
pub lifecycle_config_arns: Option<Vec<String>>,
}
Expand description
The Code Editor application settings.
For more information about Code Editor, see Get started with Code Editor in Amazon SageMaker.
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.default_resource_spec: Option<ResourceSpec>
Specifies the ARN's of a SageMaker image and SageMaker image version, and the instance type that the version runs on.
custom_images: Option<Vec<CustomImage>>
A list of custom SageMaker images that are configured to run as a Code Editor app.
lifecycle_config_arns: Option<Vec<String>>
The Amazon Resource Name (ARN) of the Code Editor application lifecycle configuration.
Implementations§
source§impl CodeEditorAppSettings
impl CodeEditorAppSettings
sourcepub fn default_resource_spec(&self) -> Option<&ResourceSpec>
pub fn default_resource_spec(&self) -> Option<&ResourceSpec>
Specifies the ARN's of a SageMaker image and SageMaker image version, and the instance type that the version runs on.
sourcepub fn custom_images(&self) -> &[CustomImage]
pub fn custom_images(&self) -> &[CustomImage]
A list of custom SageMaker images that are configured to run as a Code Editor app.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .custom_images.is_none()
.
sourcepub fn lifecycle_config_arns(&self) -> &[String]
pub fn lifecycle_config_arns(&self) -> &[String]
The Amazon Resource Name (ARN) of the Code Editor application lifecycle configuration.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .lifecycle_config_arns.is_none()
.
source§impl CodeEditorAppSettings
impl CodeEditorAppSettings
sourcepub fn builder() -> CodeEditorAppSettingsBuilder
pub fn builder() -> CodeEditorAppSettingsBuilder
Creates a new builder-style object to manufacture CodeEditorAppSettings
.
Trait Implementations§
source§impl Clone for CodeEditorAppSettings
impl Clone for CodeEditorAppSettings
source§fn clone(&self) -> CodeEditorAppSettings
fn clone(&self) -> CodeEditorAppSettings
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CodeEditorAppSettings
impl Debug for CodeEditorAppSettings
source§impl PartialEq for CodeEditorAppSettings
impl PartialEq for CodeEditorAppSettings
source§fn eq(&self, other: &CodeEditorAppSettings) -> bool
fn eq(&self, other: &CodeEditorAppSettings) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CodeEditorAppSettings
Auto Trait Implementations§
impl Freeze for CodeEditorAppSettings
impl RefUnwindSafe for CodeEditorAppSettings
impl Send for CodeEditorAppSettings
impl Sync for CodeEditorAppSettings
impl Unpin for CodeEditorAppSettings
impl UnwindSafe for CodeEditorAppSettings
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more