Interface CfnDomain.ResourceSpecProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDomain.ResourceSpecProperty.Jsii$Proxy
- Enclosing class:
- CfnDomain
@Stability(Stable)
public static interface CfnDomain.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")
.lifecycleConfigArn("lifecycleConfigArn")
.sageMakerImageArn("sageMakerImageArn")
.sageMakerImageVersionArn("sageMakerImageVersionArn")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDomain.ResourceSpecPropertystatic final classAn implementation forCfnDomain.ResourceSpecProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe instance type that the image version runs on.default StringThe Amazon Resource Name (ARN) of the Lifecycle Configuration attached to the Resource.default StringThe ARN of the SageMaker image that the image version belongs to.default StringThe ARN of the image version created on the instance.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getInstanceType
The instance type that the image version runs on.JupyterServer apps only support the
systemvalue.For KernelGateway apps , the
systemvalue is translated toml.t3.medium. KernelGateway apps also support all other values for available instance types. -
getLifecycleConfigArn
The Amazon Resource Name (ARN) of the Lifecycle Configuration attached to the Resource. -
getSageMakerImageArn
The ARN of the SageMaker image that the image version belongs to. -
getSageMakerImageVersionArn
The ARN of the image version created on the instance. -
builder
-