Interface CfnApp.ResourceSpecProperty

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

@Stability(Stable) public static interface CfnApp.ResourceSpecProperty extends software.amazon.jsii.JsiiSerializable
Specifies the ARN's of a SageMaker image and SageMaker image version, and the instance type that the version runs on.

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.*;
 ResourceSpecProperty resourceSpecProperty = ResourceSpecProperty.builder()
         .instanceType("instanceType")
         .sageMakerImageArn("sageMakerImageArn")
         .sageMakerImageVersionArn("sageMakerImageVersionArn")
         .build();
 

See Also: