Interface CfnNotebookInstance.InstanceMetadataServiceConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnNotebookInstance.InstanceMetadataServiceConfigurationProperty.Jsii$Proxy
- Enclosing class:
- CfnNotebookInstance
@Stability(Stable)
public static interface CfnNotebookInstance.InstanceMetadataServiceConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.sagemaker.*;
InstanceMetadataServiceConfigurationProperty instanceMetadataServiceConfigurationProperty = InstanceMetadataServiceConfigurationProperty.builder()
.minimumInstanceMetadataServiceVersion("minimumInstanceMetadataServiceVersion")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnNotebookInstance.InstanceMetadataServiceConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()Indicates the minimum IMDS version that the notebook instance supports.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMinimumInstanceMetadataServiceVersion
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 ofUpdateNotebookInstance, there is no default. -
builder
@Stability(Stable) static CfnNotebookInstance.InstanceMetadataServiceConfigurationProperty.Builder builder()
-