Skip to content

Commit

Permalink
Add default values
Browse files Browse the repository at this point in the history
  • Loading branch information
setu4993 committed Dec 10, 2020
1 parent a08d889 commit 1244b37
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/@aws-cdk/aws-stepfunctions-tasks/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -832,9 +832,9 @@ You can call the [`CreateTransformJob`](https://docs.aws.amazon.com/sagemaker/la
new sfn.SagemakerTransformTask(this, 'Batch Inference', {
transformJobName: 'MyTransformJob',
modelName: 'MyModelName',
modelConfig: {
invocationMaxRetries: 3,
invocationTimeout: cdk.Duration.seconds(300),
modelClientOptions: {
invocationMaxRetries: 3, // default is 0
invocationTimeout: cdk.Duration.seconds(300), // default is 300
}
role,
transformInput: {
Expand Down

0 comments on commit 1244b37

Please sign in to comment.