Interface CfnModelPackagePropsMixin.ValidationProfileProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnModelPackagePropsMixin.ValidationProfileProperty.Jsii$Proxy
- Enclosing class:
CfnModelPackagePropsMixin
@Stability(Stable)
public static interface CfnModelPackagePropsMixin.ValidationProfileProperty
extends software.amazon.jsii.JsiiSerializable
Contains data, such as the inputs and targeted instance types that are used in the process of validating the model package.
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.cfnpropertymixins.services.sagemaker.*;
ValidationProfileProperty validationProfileProperty = ValidationProfileProperty.builder()
.profileName("profileName")
.transformJobDefinition(TransformJobDefinitionProperty.builder()
.batchStrategy("batchStrategy")
.environment(Map.of(
"environmentKey", "environment"))
.maxConcurrentTransforms(123)
.maxPayloadInMb(123)
.transformInput(TransformInputProperty.builder()
.compressionType("compressionType")
.contentType("contentType")
.dataSource(DataSourceProperty.builder()
.s3DataSource(S3DataSourceProperty.builder()
.s3DataType("s3DataType")
.s3Uri("s3Uri")
.build())
.build())
.splitType("splitType")
.build())
.transformOutput(TransformOutputProperty.builder()
.accept("accept")
.assembleWith("assembleWith")
.kmsKeyId("kmsKeyId")
.s3OutputPath("s3OutputPath")
.build())
.transformResources(TransformResourcesProperty.builder()
.instanceCount(123)
.instanceType("instanceType")
.volumeKmsKeyId("volumeKmsKeyId")
.build())
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnModelPackagePropsMixin.ValidationProfilePropertystatic final classAn implementation forCfnModelPackagePropsMixin.ValidationProfileProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getProfileName
The name of the profile for the model package.- See Also:
-
getTransformJobDefinition
TheTransformJobDefinitionobject that describes the transform job used for the validation of the model package.Returns union: either
IResolvableorCfnModelPackagePropsMixin.TransformJobDefinitionProperty- See Also:
-
builder
-