interface InstanceMetadataServiceConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SageMaker.CfnNotebookInstancePropsMixin.InstanceMetadataServiceConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssagemaker#CfnNotebookInstancePropsMixin_InstanceMetadataServiceConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.sagemaker.CfnNotebookInstancePropsMixin.InstanceMetadataServiceConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_sagemaker.CfnNotebookInstancePropsMixin.InstanceMetadataServiceConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sagemaker » 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 { aws_sagemaker as sagemaker } from '@aws-cdk/cfn-property-mixins';
const instanceMetadataServiceConfigurationProperty: sagemaker.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