public static interface CfnApp.ResourceSpecProperty
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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnApp.ResourceSpecProperty.Builder
A builder for
CfnApp.ResourceSpecProperty |
static class |
CfnApp.ResourceSpecProperty.Jsii$Proxy
An implementation for
CfnApp.ResourceSpecProperty |
Modifier and Type | Method and Description |
---|---|
static CfnApp.ResourceSpecProperty.Builder |
builder() |
default java.lang.String |
getInstanceType()
The instance type that the image version runs on.
|
default java.lang.String |
getSageMakerImageArn()
The ARN of the SageMaker image that the image version belongs to.
|
default java.lang.String |
getSageMakerImageVersionArn()
The ARN of the image version created on the instance.
|
default java.lang.String getInstanceType()
JupyterServer apps only support the
system
value.For KernelGateway apps , the
system
value is translated toml.t3.medium
. KernelGateway apps also support all other values for available instance types.
default java.lang.String getSageMakerImageArn()
default java.lang.String getSageMakerImageVersionArn()
static CfnApp.ResourceSpecProperty.Builder builder()