Show / Hide Table of Contents

Class CfnNotebookInstance

The AWS::SageMaker::NotebookInstance resource creates an Amazon SageMaker notebook instance.

Inheritance
object
CfnElement
CfnRefElement
CfnResource
CfnNotebookInstance
Implements
IInspectable
ITaggable
Inherited Members
CfnResource.IsCfnResource(object)
CfnResource.AddDeletionOverride(string)
CfnResource.AddDependency(CfnResource)
CfnResource.AddDependsOn(CfnResource)
CfnResource.AddMetadata(string, object)
CfnResource.AddOverride(string, object)
CfnResource.AddPropertyDeletionOverride(string)
CfnResource.AddPropertyOverride(string, object)
CfnResource.ApplyRemovalPolicy(RemovalPolicy?, IRemovalPolicyOptions)
CfnResource.GetAtt(string, ResolutionTypeHint?)
CfnResource.GetMetadata(string)
CfnResource.ObtainDependencies()
CfnResource.ObtainResourceDependencies()
CfnResource.RemoveDependency(CfnResource)
CfnResource.ReplaceDependency(CfnResource, CfnResource)
CfnResource.ShouldSynthesize()
CfnResource.ToString()
CfnResource.ValidateProperties(object)
CfnResource.CfnOptions
CfnResource.CfnResourceType
CfnResource.UpdatedProperites
CfnResource.UpdatedProperties
CfnRefElement.Ref
CfnElement.IsCfnElement(object)
CfnElement.OverrideLogicalId(string)
CfnElement.CreationStack
CfnElement.LogicalId
CfnElement.Stack
Namespace: Amazon.CDK.AWS.Sagemaker
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnNotebookInstance : CfnResource, IInspectable, ITaggable
Syntax (vb)
Public Class CfnNotebookInstance Inherits CfnResource Implements IInspectable, ITaggable
Remarks

A notebook instance is a machine learning (ML) compute instance running on a Jupyter notebook. For more information, see Use Notebook Instances .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html

CloudformationResource: AWS::SageMaker::NotebookInstance

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.Sagemaker;

             var cfnNotebookInstance = new CfnNotebookInstance(this, "MyCfnNotebookInstance", new CfnNotebookInstanceProps {
                 InstanceType = "instanceType",
                 RoleArn = "roleArn",

                 // the properties below are optional
                 AcceleratorTypes = new [] { "acceleratorTypes" },
                 AdditionalCodeRepositories = new [] { "additionalCodeRepositories" },
                 DefaultCodeRepository = "defaultCodeRepository",
                 DirectInternetAccess = "directInternetAccess",
                 InstanceMetadataServiceConfiguration = new InstanceMetadataServiceConfigurationProperty {
                     MinimumInstanceMetadataServiceVersion = "minimumInstanceMetadataServiceVersion"
                 },
                 KmsKeyId = "kmsKeyId",
                 LifecycleConfigName = "lifecycleConfigName",
                 NotebookInstanceName = "notebookInstanceName",
                 PlatformIdentifier = "platformIdentifier",
                 RootAccess = "rootAccess",
                 SecurityGroupIds = new [] { "securityGroupIds" },
                 SubnetId = "subnetId",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } },
                 VolumeSizeInGb = 123
             });

Synopsis

Constructors

CfnNotebookInstance(Construct, string, ICfnNotebookInstanceProps)

The AWS::SageMaker::NotebookInstance resource creates an Amazon SageMaker notebook instance.

Properties

AcceleratorTypes

A list of Amazon Elastic Inference (EI) instance types to associate with the notebook instance.

AdditionalCodeRepositories

An array of up to three Git repositories associated with the notebook instance.

AttrId

The AWS::SageMaker::NotebookInstance resource creates an Amazon SageMaker notebook instance.

AttrNotebookInstanceName

The name of the notebook instance, such as MyNotebookInstance .

CFN_RESOURCE_TYPE_NAME

The CloudFormation resource type name for this resource class.

CfnProperties

The AWS::SageMaker::NotebookInstance resource creates an Amazon SageMaker notebook instance.

DefaultCodeRepository

The Git repository associated with the notebook instance as its default code repository.

DirectInternetAccess

Sets whether SageMaker AI provides internet access to the notebook instance.

InstanceMetadataServiceConfiguration

Information on the IMDS configuration of the notebook instance.

InstanceType

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

KmsKeyId

The Amazon Resource Name (ARN) of a AWS Key Management Service key that SageMaker AI uses to encrypt data on the storage volume attached to your notebook instance.

LifecycleConfigName

The name of a lifecycle configuration to associate with the notebook instance.

NotebookInstanceName

The name of the new notebook instance.

PlatformIdentifier

The platform identifier of the notebook instance runtime environment.

RoleArn

When you send any requests to AWS resources from the notebook instance, SageMaker AI assumes this role to perform tasks on your behalf.

RootAccess

Whether root access is enabled or disabled for users of the notebook instance.

SecurityGroupIds

The VPC security group IDs, in the form sg-xxxxxxxx.

SubnetId

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

Tags

Tag Manager which manages the tags for this resource.

TagsRaw

A list of key-value pairs to apply to this resource.

VolumeSizeInGb

The size, in GB, of the ML storage volume to attach to the notebook instance.

Methods

Inspect(TreeInspector)

Examines the CloudFormation resource and discloses attributes.

RenderProperties(IDictionary<string, object>)

The AWS::SageMaker::NotebookInstance resource creates an Amazon SageMaker notebook instance.

Constructors

CfnNotebookInstance(Construct, string, ICfnNotebookInstanceProps)

The AWS::SageMaker::NotebookInstance resource creates an Amazon SageMaker notebook instance.

public CfnNotebookInstance(Construct scope, string id, ICfnNotebookInstanceProps props)
Parameters
scope Construct

Scope in which this resource is defined.

id string

Construct identifier for this resource (unique in its scope).

props ICfnNotebookInstanceProps

Resource properties.

Remarks

A notebook instance is a machine learning (ML) compute instance running on a Jupyter notebook. For more information, see Use Notebook Instances .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html

CloudformationResource: AWS::SageMaker::NotebookInstance

ExampleMetadata: fixture=_generated

Properties

AcceleratorTypes

A list of Amazon Elastic Inference (EI) instance types to associate with the notebook instance.

public virtual string[]? AcceleratorTypes { get; set; }
Property Value

string[]

Remarks

A notebook instance is a machine learning (ML) compute instance running on a Jupyter notebook. For more information, see Use Notebook Instances .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html

CloudformationResource: AWS::SageMaker::NotebookInstance

ExampleMetadata: fixture=_generated

AdditionalCodeRepositories

An array of up to three Git repositories associated with the notebook instance.

public virtual string[]? AdditionalCodeRepositories { get; set; }
Property Value

string[]

Remarks

A notebook instance is a machine learning (ML) compute instance running on a Jupyter notebook. For more information, see Use Notebook Instances .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html

CloudformationResource: AWS::SageMaker::NotebookInstance

ExampleMetadata: fixture=_generated

AttrId

The AWS::SageMaker::NotebookInstance resource creates an Amazon SageMaker notebook instance.

public virtual string AttrId { get; }
Property Value

string

Remarks

CloudformationAttribute: Id

AttrNotebookInstanceName

The name of the notebook instance, such as MyNotebookInstance .

public virtual string AttrNotebookInstanceName { get; }
Property Value

string

Remarks

CloudformationAttribute: NotebookInstanceName

CFN_RESOURCE_TYPE_NAME

The CloudFormation resource type name for this resource class.

public static string CFN_RESOURCE_TYPE_NAME { get; }
Property Value

string

Remarks

A notebook instance is a machine learning (ML) compute instance running on a Jupyter notebook. For more information, see Use Notebook Instances .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html

CloudformationResource: AWS::SageMaker::NotebookInstance

ExampleMetadata: fixture=_generated

CfnProperties

The AWS::SageMaker::NotebookInstance resource creates an Amazon SageMaker notebook instance.

protected override IDictionary<string, object> CfnProperties { get; }
Property Value

IDictionary<string, object>

Overrides
CfnResource.CfnProperties
Remarks

A notebook instance is a machine learning (ML) compute instance running on a Jupyter notebook. For more information, see Use Notebook Instances .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html

CloudformationResource: AWS::SageMaker::NotebookInstance

ExampleMetadata: fixture=_generated

DefaultCodeRepository

The Git repository associated with the notebook instance as its default code repository.

public virtual string? DefaultCodeRepository { get; set; }
Property Value

string

Remarks

A notebook instance is a machine learning (ML) compute instance running on a Jupyter notebook. For more information, see Use Notebook Instances .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html

CloudformationResource: AWS::SageMaker::NotebookInstance

ExampleMetadata: fixture=_generated

DirectInternetAccess

Sets whether SageMaker AI provides internet access to the notebook instance.

public virtual string? DirectInternetAccess { get; set; }
Property Value

string

Remarks

A notebook instance is a machine learning (ML) compute instance running on a Jupyter notebook. For more information, see Use Notebook Instances .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html

CloudformationResource: AWS::SageMaker::NotebookInstance

ExampleMetadata: fixture=_generated

InstanceMetadataServiceConfiguration

Information on the IMDS configuration of the notebook instance.

public virtual object? InstanceMetadataServiceConfiguration { get; set; }
Property Value

object

Remarks

A notebook instance is a machine learning (ML) compute instance running on a Jupyter notebook. For more information, see Use Notebook Instances .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html

CloudformationResource: AWS::SageMaker::NotebookInstance

ExampleMetadata: fixture=_generated

InstanceType

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

public virtual string InstanceType { get; set; }
Property Value

string

Remarks

A notebook instance is a machine learning (ML) compute instance running on a Jupyter notebook. For more information, see Use Notebook Instances .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html

CloudformationResource: AWS::SageMaker::NotebookInstance

ExampleMetadata: fixture=_generated

KmsKeyId

The Amazon Resource Name (ARN) of a AWS Key Management Service key that SageMaker AI uses to encrypt data on the storage volume attached to your notebook instance.

public virtual string? KmsKeyId { get; set; }
Property Value

string

Remarks

A notebook instance is a machine learning (ML) compute instance running on a Jupyter notebook. For more information, see Use Notebook Instances .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html

CloudformationResource: AWS::SageMaker::NotebookInstance

ExampleMetadata: fixture=_generated

LifecycleConfigName

The name of a lifecycle configuration to associate with the notebook instance.

public virtual string? LifecycleConfigName { get; set; }
Property Value

string

Remarks

A notebook instance is a machine learning (ML) compute instance running on a Jupyter notebook. For more information, see Use Notebook Instances .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html

CloudformationResource: AWS::SageMaker::NotebookInstance

ExampleMetadata: fixture=_generated

NotebookInstanceName

The name of the new notebook instance.

public virtual string? NotebookInstanceName { get; set; }
Property Value

string

Remarks

A notebook instance is a machine learning (ML) compute instance running on a Jupyter notebook. For more information, see Use Notebook Instances .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html

CloudformationResource: AWS::SageMaker::NotebookInstance

ExampleMetadata: fixture=_generated

PlatformIdentifier

The platform identifier of the notebook instance runtime environment.

public virtual string? PlatformIdentifier { get; set; }
Property Value

string

Remarks

A notebook instance is a machine learning (ML) compute instance running on a Jupyter notebook. For more information, see Use Notebook Instances .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html

CloudformationResource: AWS::SageMaker::NotebookInstance

ExampleMetadata: fixture=_generated

RoleArn

When you send any requests to AWS resources from the notebook instance, SageMaker AI assumes this role to perform tasks on your behalf.

public virtual string RoleArn { get; set; }
Property Value

string

Remarks

A notebook instance is a machine learning (ML) compute instance running on a Jupyter notebook. For more information, see Use Notebook Instances .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html

CloudformationResource: AWS::SageMaker::NotebookInstance

ExampleMetadata: fixture=_generated

RootAccess

Whether root access is enabled or disabled for users of the notebook instance.

public virtual string? RootAccess { get; set; }
Property Value

string

Remarks

The default value is Enabled .

SecurityGroupIds

The VPC security group IDs, in the form sg-xxxxxxxx.

public virtual string[]? SecurityGroupIds { get; set; }
Property Value

string[]

Remarks

A notebook instance is a machine learning (ML) compute instance running on a Jupyter notebook. For more information, see Use Notebook Instances .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html

CloudformationResource: AWS::SageMaker::NotebookInstance

ExampleMetadata: fixture=_generated

SubnetId

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

public virtual string? SubnetId { get; set; }
Property Value

string

Remarks

A notebook instance is a machine learning (ML) compute instance running on a Jupyter notebook. For more information, see Use Notebook Instances .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html

CloudformationResource: AWS::SageMaker::NotebookInstance

ExampleMetadata: fixture=_generated

Tags

Tag Manager which manages the tags for this resource.

public virtual TagManager Tags { get; }
Property Value

TagManager

Remarks

A notebook instance is a machine learning (ML) compute instance running on a Jupyter notebook. For more information, see Use Notebook Instances .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html

CloudformationResource: AWS::SageMaker::NotebookInstance

ExampleMetadata: fixture=_generated

TagsRaw

A list of key-value pairs to apply to this resource.

public virtual ICfnTag[]? TagsRaw { get; set; }
Property Value

ICfnTag[]

Remarks

A notebook instance is a machine learning (ML) compute instance running on a Jupyter notebook. For more information, see Use Notebook Instances .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html

CloudformationResource: AWS::SageMaker::NotebookInstance

ExampleMetadata: fixture=_generated

VolumeSizeInGb

The size, in GB, of the ML storage volume to attach to the notebook instance.

public virtual double? VolumeSizeInGb { get; set; }
Property Value

double?

Remarks

A notebook instance is a machine learning (ML) compute instance running on a Jupyter notebook. For more information, see Use Notebook Instances .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html

CloudformationResource: AWS::SageMaker::NotebookInstance

ExampleMetadata: fixture=_generated

Methods

Inspect(TreeInspector)

Examines the CloudFormation resource and discloses attributes.

public virtual void Inspect(TreeInspector inspector)
Parameters
inspector TreeInspector

tree inspector to collect and process attributes.

Remarks

A notebook instance is a machine learning (ML) compute instance running on a Jupyter notebook. For more information, see Use Notebook Instances .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html

CloudformationResource: AWS::SageMaker::NotebookInstance

ExampleMetadata: fixture=_generated

RenderProperties(IDictionary<string, object>)

The AWS::SageMaker::NotebookInstance resource creates an Amazon SageMaker notebook instance.

protected override IDictionary<string, object> RenderProperties(IDictionary<string, object> props)
Parameters
props IDictionary<string, object>
Returns

IDictionary<string, object>

Overrides
CfnResource.RenderProperties(IDictionary<string, object>)
Remarks

A notebook instance is a machine learning (ML) compute instance running on a Jupyter notebook. For more information, see Use Notebook Instances .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html

CloudformationResource: AWS::SageMaker::NotebookInstance

ExampleMetadata: fixture=_generated

Implements

IInspectable
ITaggable
Back to top Generated by DocFX