Struct aws_sdk_sagemaker::types::CodeEditorAppSettings
source · #[non_exhaustive]pub struct CodeEditorAppSettings {
pub default_resource_spec: Option<ResourceSpec>,
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.
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 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 ==
.