CfnNotebookInstanceProps
- class aws_cdk.aws_sagemaker.CfnNotebookInstanceProps(*, instance_type, role_arn, accelerator_types=None, additional_code_repositories=None, default_code_repository=None, direct_internet_access=None, instance_metadata_service_configuration=None, kms_key_id=None, lifecycle_config_name=None, notebook_instance_name=None, platform_identifier=None, root_access=None, security_group_ids=None, subnet_id=None, tags=None, volume_size_in_gb=None)
Bases:
object
Properties for defining a
CfnNotebookInstance
.- Parameters:
instance_type (
str
) – The type of ML compute instance to launch for the notebook instance. .. epigraph:: Expect some interruption of service if this parameter is changed as CloudFormation stops a notebook instance and starts it up again to update it.role_arn (
str
) – When you send any requests to AWS resources from the notebook instance, SageMaker assumes this role to perform tasks on your behalf. You must grant this role necessary permissions so SageMaker can perform these tasks. The policy must allow the SageMaker service principal (sagemaker.amazonaws.com) permissions to assume this role. For more information, see SageMaker Roles . .. epigraph:: To be able to pass this role to SageMaker, the caller of this API must have theiam:PassRole
permission.accelerator_types (
Optional
[Sequence
[str
]]) – A list of Amazon Elastic Inference (EI) instance types to associate with the notebook instance. Currently, only one instance type can be associated with a notebook instance. For more information, see Using Elastic Inference in Amazon SageMaker . Valid Values:ml.eia1.medium | ml.eia1.large | ml.eia1.xlarge | ml.eia2.medium | ml.eia2.large | ml.eia2.xlarge
.additional_code_repositories (
Optional
[Sequence
[str
]]) – An array of up to three Git repositories associated 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 SageMaker Notebook Instances .default_code_repository (
Optional
[str
]) –The Git repository associated 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 SageMaker Notebook Instances .
direct_internet_access (
Optional
[str
]) – Sets whether SageMaker provides internet access to the notebook instance. If you set this toDisabled
this notebook instance is able to access resources only in your VPC, and is not be able to connect to SageMaker training and endpoint services unless you 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 toDisabled
only if you set a value for theSubnetId
parameter.instance_metadata_service_configuration (
Union
[IResolvable
,InstanceMetadataServiceConfigurationProperty
,Dict
[str
,Any
],None
]) – Information on the IMDS configuration of the notebook instance.kms_key_id (
Optional
[str
]) – The Amazon Resource Name (ARN) of a AWS Key Management Service key that 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 (
Optional
[str
]) – The name of a lifecycle configuration to associate with the notebook instance. For information about lifecycle configurations, see Customize a Notebook Instance in the Amazon SageMaker Developer Guide .notebook_instance_name (
Optional
[str
]) – The name of the new notebook instance.platform_identifier (
Optional
[str
]) – The platform identifier of the notebook instance runtime environment.root_access (
Optional
[str
]) – Whether root access is enabled or disabled for users of the notebook instance. The default value isEnabled
. .. epigraph:: 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 (
Optional
[Sequence
[str
]]) – 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 (
Optional
[str
]) – The ID of the subnet in a VPC to which you would like to have a connectivity from your ML compute instance.tags (
Optional
[Sequence
[Union
[CfnTag
,Dict
[str
,Any
]]]]) – A list of key-value pairs to apply to this resource. For more information, see Resource Tag and Using Cost Allocation Tags . You can add tags later by using theCreateTags
API.volume_size_in_gb (
Union
[int
,float
,None
]) – The size, in GB, of the ML storage volume to attach to the notebook instance. The default value is 5 GB. .. epigraph:: Expect some interruption of service if this parameter is changed as CloudFormation stops a notebook instance and starts it up again to update it.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_sagemaker as sagemaker cfn_notebook_instance_props = sagemaker.CfnNotebookInstanceProps( instance_type="instanceType", role_arn="roleArn", # the properties below are optional accelerator_types=["acceleratorTypes"], additional_code_repositories=["additionalCodeRepositories"], default_code_repository="defaultCodeRepository", direct_internet_access="directInternetAccess", instance_metadata_service_configuration=sagemaker.CfnNotebookInstance.InstanceMetadataServiceConfigurationProperty( minimum_instance_metadata_service_version="minimumInstanceMetadataServiceVersion" ), kms_key_id="kmsKeyId", lifecycle_config_name="lifecycleConfigName", notebook_instance_name="notebookInstanceName", platform_identifier="platformIdentifier", root_access="rootAccess", security_group_ids=["securityGroupIds"], subnet_id="subnetId", tags=[CfnTag( key="key", value="value" )], volume_size_in_gb=123 )
Attributes
- accelerator_types
A list of Amazon Elastic Inference (EI) instance types to associate with the notebook instance.
Currently, only one instance type can be associated with a notebook instance. For more information, see Using Elastic Inference in Amazon SageMaker .
Valid Values:
ml.eia1.medium | ml.eia1.large | ml.eia1.xlarge | ml.eia2.medium | ml.eia2.large | ml.eia2.xlarge
.
- additional_code_repositories
An array of up to three Git repositories associated 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 SageMaker Notebook Instances .
- default_code_repository
The Git repository associated 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 SageMaker Notebook Instances .
- direct_internet_access
Sets whether SageMaker provides internet access to the notebook instance.
If you set this to
Disabled
this notebook instance is able to access resources only in your VPC, and is not be able to connect to SageMaker training and endpoint services unless you 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 theSubnetId
parameter.
- instance_metadata_service_configuration
Information on the IMDS configuration of the notebook instance.
- instance_type
The type of ML compute instance to launch for the notebook instance.
Expect some interruption of service if this parameter is changed as CloudFormation stops a notebook instance and starts it up again to update it.
- kms_key_id
The Amazon Resource Name (ARN) of a AWS Key Management Service key that 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
The name of a lifecycle configuration to associate with the notebook instance.
For information about lifecycle configurations, see Customize a Notebook Instance in the Amazon SageMaker Developer Guide .
- notebook_instance_name
The name of the new notebook instance.
- platform_identifier
The platform identifier of the notebook instance runtime environment.
- role_arn
When you send any requests to AWS resources from the notebook instance, SageMaker assumes this role to perform tasks on your behalf.
You must grant this role necessary permissions so SageMaker can perform these tasks. The policy must allow the SageMaker service principal (sagemaker.amazonaws.com) permissions to assume this role. For more information, see SageMaker Roles . .. epigraph:
To be able to pass this role to SageMaker, the caller of this API must have the ``iam:PassRole`` permission.
- root_access
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
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
The ID of the subnet in a VPC to which you would like to have a connectivity from your ML compute instance.
- tags
A list of key-value pairs to apply to this resource.
For more information, see Resource Tag and Using Cost Allocation Tags .
You can add tags later by using the
CreateTags
API.
- volume_size_in_gb
The size, in GB, of the ML storage volume to attach to the notebook instance.
The default value is 5 GB. .. epigraph:
Expect some interruption of service if this parameter is changed as CloudFormation stops a notebook instance and starts it up again to update it.