Show / Hide Table of Contents

Class NotebookInstanceState

Inheritance
System.Object
InputArgs
ResourceArgs
NotebookInstanceState
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Aws.Sagemaker
Assembly: Pulumi.Aws.dll
Syntax
public sealed class NotebookInstanceState : ResourceArgs

Constructors

View Source

NotebookInstanceState()

Declaration
public NotebookInstanceState()

Properties

View Source

Arn

The Amazon Resource Name (ARN) assigned by AWS to this notebook instance.

Declaration
public Input<string> Arn { get; set; }
Property Value
Type Description
Input<System.String>
View Source

DirectInternetAccess

Set to Disabled to disable internet access to notebook. Requires security_groups and subnet_id to be set. Supported values: Enabled (Default) or Disabled. If set to Disabled, the 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.

Declaration
public Input<string> DirectInternetAccess { get; set; }
Property Value
Type Description
Input<System.String>
View Source

InstanceType

The name of ML compute instance type.

Declaration
public Input<string> InstanceType { get; set; }
Property Value
Type Description
Input<System.String>
View Source

KmsKeyId

The AWS Key Management Service (AWS KMS) key that Amazon SageMaker uses to encrypt the model artifacts at rest using Amazon S3 server-side encryption.

Declaration
public Input<string> KmsKeyId { get; set; }
Property Value
Type Description
Input<System.String>
View Source

LifecycleConfigName

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

Declaration
public Input<string> LifecycleConfigName { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Name

The name of the notebook instance (must be unique).

Declaration
public Input<string> Name { get; set; }
Property Value
Type Description
Input<System.String>
View Source

RoleArn

The ARN of the IAM role to be used by the notebook instance which allows SageMaker to call other services on your behalf.

Declaration
public Input<string> RoleArn { get; set; }
Property Value
Type Description
Input<System.String>
View Source

SecurityGroups

The associated security groups.

Declaration
public InputList<string> SecurityGroups { get; set; }
Property Value
Type Description
InputList<System.String>
View Source

SubnetId

The VPC subnet ID.

Declaration
public Input<string> SubnetId { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Tags

A map of tags to assign to the resource.

Declaration
public InputMap<object> Tags { get; set; }
Property Value
Type Description
InputMap<System.Object>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.