interface ShadowModeConfigProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnInferenceExperiment.ShadowModeConfigProperty |
Java | software.amazon.awscdk.services.sagemaker.CfnInferenceExperiment.ShadowModeConfigProperty |
Python | aws_cdk.aws_sagemaker.CfnInferenceExperiment.ShadowModeConfigProperty |
TypeScript | @aws-cdk/aws-sagemaker » CfnInferenceExperiment » ShadowModeConfigProperty |
The configuration of ShadowMode
inference experiment type, which specifies a production variant to take all the inference requests, and a shadow variant to which Amazon SageMaker replicates a percentage of the inference requests.
For the shadow variant it also specifies the percentage of requests that Amazon SageMaker replicates.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as sagemaker from '@aws-cdk/aws-sagemaker';
const shadowModeConfigProperty: sagemaker.CfnInferenceExperiment.ShadowModeConfigProperty = {
shadowModelVariants: [{
samplingPercentage: 123,
shadowModelVariantName: 'shadowModelVariantName',
}],
sourceModelVariantName: 'sourceModelVariantName',
};
Properties
Name | Type | Description |
---|---|---|
shadow | IResolvable | IResolvable | Shadow [] | List of shadow variant configurations. |
source | string | The name of the production variant, which takes all the inference requests. |
shadowModelVariants
Type:
IResolvable
|
IResolvable
|
Shadow
[]
List of shadow variant configurations.
sourceModelVariantName
Type:
string
The name of the production variant, which takes all the inference requests.