Interface CfnClusterPropsMixin.InstanceRequirementsProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnClusterPropsMixin.InstanceRequirementsProperty.Jsii$Proxy
Enclosing class:
CfnClusterPropsMixin

@Stability(Stable) public static interface CfnClusterPropsMixin.InstanceRequirementsProperty extends software.amazon.jsii.JsiiSerializable
The instance requirements for the instance group.

Specifies a list of instance types that can be used.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.sagemaker.*;
 InstanceRequirementsProperty instanceRequirementsProperty = InstanceRequirementsProperty.builder()
         .instanceTypes(List.of("instanceTypes"))
         .build();
 

See Also: