interface InstanceMetadataServiceConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnNotebookInstancePropsMixin.InstanceMetadataServiceConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnNotebookInstancePropsMixin_InstanceMetadataServiceConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnNotebookInstancePropsMixin.InstanceMetadataServiceConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnNotebookInstancePropsMixin.InstanceMetadataServiceConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnNotebookInstancePropsMixin » 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 { mixins as sagemaker_mixins } from '@aws-cdk/mixins-preview/aws-sagemaker';
const instanceMetadataServiceConfigurationProperty: sagemaker_mixins.CfnNotebookInstancePropsMixin.InstanceMetadataServiceConfigurationProperty = {
minimumInstanceMetadataServiceVersion: 'minimumInstanceMetadataServiceVersion',
};
Properties
| Name | Type | Description |
|---|---|---|
| minimum | string | Indicates the minimum IMDS version that the notebook instance supports. |
minimumInstanceMetadataServiceVersion?
Type:
string
(optional)
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
Go
Java
Python
TypeScript