interface InstanceMetadataServiceConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnNotebookInstance.InstanceMetadataServiceConfigurationProperty |
Java | software.amazon.awscdk.services.sagemaker.CfnNotebookInstance.InstanceMetadataServiceConfigurationProperty |
Python | aws_cdk.aws_sagemaker.CfnNotebookInstance.InstanceMetadataServiceConfigurationProperty |
TypeScript | @aws-cdk/aws-sagemaker » CfnNotebookInstance » InstanceMetadataServiceConfigurationProperty |
Information on the IMDS configuration of the notebook instance.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as sagemaker from '@aws-cdk/aws-sagemaker';
const instanceMetadataServiceConfigurationProperty: sagemaker.CfnNotebookInstance.InstanceMetadataServiceConfigurationProperty = {
minimumInstanceMetadataServiceVersion: 'minimumInstanceMetadataServiceVersion',
};
Properties
| Name | Type | Description |
|---|---|---|
| minimum | string | Indicates the minimum IMDS version that the notebook instance supports. |
minimumInstanceMetadataServiceVersion
Type:
string
Indicates the minimum IMDS version that the notebook instance supports.
When passed as part of CreateNotebookInstance , if no value is selected, then it defaults to IMDSv1. This means that both IMDSv1 and IMDSv2 are supported. If passed as part of UpdateNotebookInstance , there is no default.

.NET
Java
Python
TypeScript