public static interface CfnModelPackage.ValidationProfileProperty
The data provided in the validation profile is made available to your buyers on AWS Marketplace.
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.*; ValidationProfileProperty validationProfileProperty = ValidationProfileProperty.builder() .profileName("profileName") .transformJobDefinition(TransformJobDefinitionProperty.builder() .transformInput(TransformInputProperty.builder() .dataSource(DataSourceProperty.builder() .s3DataSource(S3DataSourceProperty.builder() .s3DataType("s3DataType") .s3Uri("s3Uri") .build()) .build()) // the properties below are optional .compressionType("compressionType") .contentType("contentType") .splitType("splitType") .build()) .transformOutput(TransformOutputProperty.builder() .s3OutputPath("s3OutputPath") // the properties below are optional .accept("accept") .assembleWith("assembleWith") .kmsKeyId("kmsKeyId") .build()) .transformResources(TransformResourcesProperty.builder() .instanceCount(123) .instanceType("instanceType") // the properties below are optional .volumeKmsKeyId("volumeKmsKeyId") .build()) // the properties below are optional .batchStrategy("batchStrategy") .environment(Map.of( "environmentKey", "environment")) .maxConcurrentTransforms(123) .maxPayloadInMb(123) .build()) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnModelPackage.ValidationProfileProperty.Builder
A builder for
CfnModelPackage.ValidationProfileProperty |
static class |
CfnModelPackage.ValidationProfileProperty.Jsii$Proxy
An implementation for
CfnModelPackage.ValidationProfileProperty |
Modifier and Type | Method and Description |
---|---|
static CfnModelPackage.ValidationProfileProperty.Builder |
builder() |
java.lang.String |
getProfileName()
The name of the profile for the model package.
|
java.lang.Object |
getTransformJobDefinition()
The `TransformJobDefinition` object that describes the transform job used for the validation of the model package.
|
java.lang.String getProfileName()
java.lang.Object getTransformJobDefinition()
static CfnModelPackage.ValidationProfileProperty.Builder builder()