[][src]Struct rusoto_sagemaker::CreateNotebookInstanceInput

pub struct CreateNotebookInstanceInput {
    pub accelerator_types: Option<Vec<String>>,
    pub additional_code_repositories: Option<Vec<String>>,
    pub default_code_repository: Option<String>,
    pub direct_internet_access: Option<String>,
    pub instance_type: String,
    pub kms_key_id: Option<String>,
    pub lifecycle_config_name: Option<String>,
    pub notebook_instance_name: String,
    pub role_arn: String,
    pub root_access: Option<String>,
    pub security_group_ids: Option<Vec<String>>,
    pub subnet_id: Option<String>,
    pub tags: Option<Vec<Tag>>,
    pub volume_size_in_gb: Option<i64>,
}

Fields

accelerator_types: Option<Vec<String>>

A list of Elastic Inference (EI) instance types to associate with this notebook instance. Currently, only one instance type can be associated with a notebook instance. For more information, see Using Elastic Inference in Amazon SageMaker.

additional_code_repositories: Option<Vec<String>>

An array of up to three Git repositories to associate with the notebook instance. These can be either the names of Git repositories stored as resources in your account, or the URL of Git repositories in AWS CodeCommit or in any other Git repository. These repositories are cloned at the same level as the default repository of your notebook instance. For more information, see Associating Git Repositories with Amazon SageMaker Notebook Instances.

default_code_repository: Option<String>

A Git repository to associate with the notebook instance as its default code repository. This can be either the name of a Git repository stored as a resource in your account, or the URL of a Git repository in AWS CodeCommit or in any other Git repository. When you open a notebook instance, it opens in the directory that contains this repository. For more information, see Associating Git Repositories with Amazon SageMaker Notebook Instances.

direct_internet_access: Option<String>

Sets whether Amazon SageMaker provides internet access to the notebook instance. If you set this to Disabled this notebook instance will be able to access resources only in your VPC, and will not be able to connect to Amazon SageMaker training and endpoint services unless your configure a NAT Gateway in your VPC.

For more information, see Notebook Instances Are Internet-Enabled by Default. You can set the value of this parameter to Disabled only if you set a value for the SubnetId parameter.

instance_type: String

The type of ML compute instance to launch for the notebook instance.

kms_key_id: Option<String>

The Amazon Resource Name (ARN) of a AWS Key Management Service key that Amazon SageMaker uses to encrypt data on the storage volume attached to your notebook instance. The KMS key you provide must be enabled. For information, see Enabling and Disabling Keys in the AWS Key Management Service Developer Guide.

lifecycle_config_name: Option<String>

The name of a lifecycle configuration to associate with the notebook instance. For information about lifestyle configurations, see Step 2.1: (Optional) Customize a Notebook Instance.

notebook_instance_name: String

The name of the new notebook instance.

role_arn: String

When you send any requests to AWS resources from the notebook instance, Amazon SageMaker assumes this role to perform tasks on your behalf. You must grant this role necessary permissions so Amazon SageMaker can perform these tasks. The policy must allow the Amazon SageMaker service principal (sagemaker.amazonaws.com) permissions to assume this role. For more information, see Amazon SageMaker Roles.

To be able to pass this role to Amazon SageMaker, the caller of this API must have the iam:PassRole permission.

root_access: Option<String>

Whether root access is enabled or disabled for users of the notebook instance. The default value is Enabled.

Lifecycle configurations need root access to be able to set up a notebook instance. Because of this, lifecycle configurations associated with a notebook instance always run with root access even if you disable root access for users.

security_group_ids: Option<Vec<String>>

The VPC security group IDs, in the form sg-xxxxxxxx. The security groups must be for the same VPC as specified in the subnet.

subnet_id: Option<String>

The ID of the subnet in a VPC to which you would like to have a connectivity from your ML compute instance.

tags: Option<Vec<Tag>>

A list of tags to associate with the notebook instance. You can add tags later by using the CreateTags API.

volume_size_in_gb: Option<i64>

The size, in GB, of the ML storage volume to attach to the notebook instance. The default value is 5 GB.

Trait Implementations

impl PartialEq<CreateNotebookInstanceInput> for CreateNotebookInstanceInput[src]

impl Default for CreateNotebookInstanceInput[src]

impl Clone for CreateNotebookInstanceInput[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for CreateNotebookInstanceInput[src]

impl Serialize for CreateNotebookInstanceInput[src]

Auto Trait Implementations

impl Send for CreateNotebookInstanceInput

impl Sync for CreateNotebookInstanceInput

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self