From 18c92eb5c527fa2fa73cb8fb981e77ad7ee97c44 Mon Sep 17 00:00:00 2001 From: go-to-k <24818752+go-to-k@users.noreply.github.com> Date: Thu, 2 Nov 2023 23:34:08 +0900 Subject: [PATCH] fix: by the review --- .../integ.emr-create-cluster-with-on-demand-instance-fleet.ts | 4 +++- .../aws-stepfunctions-tasks/lib/emr/emr-create-cluster.ts | 4 ++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/packages/@aws-cdk-testing/framework-integ/test/aws-stepfunctions-tasks/test/emr/integ.emr-create-cluster-with-on-demand-instance-fleet.ts b/packages/@aws-cdk-testing/framework-integ/test/aws-stepfunctions-tasks/test/emr/integ.emr-create-cluster-with-on-demand-instance-fleet.ts index a63eb2ae15fcf..90556e3d5508b 100644 --- a/packages/@aws-cdk-testing/framework-integ/test/aws-stepfunctions-tasks/test/emr/integ.emr-create-cluster-with-on-demand-instance-fleet.ts +++ b/packages/@aws-cdk-testing/framework-integ/test/aws-stepfunctions-tasks/test/emr/integ.emr-create-cluster-with-on-demand-instance-fleet.ts @@ -38,4 +38,6 @@ new sfn.StateMachine(stack, 'SM', { new IntegTest(app, 'EmrCreateClusterTest', { testCases: [stack], -}); \ No newline at end of file +}); + +app.synth(); \ No newline at end of file diff --git a/packages/aws-cdk-lib/aws-stepfunctions-tasks/lib/emr/emr-create-cluster.ts b/packages/aws-cdk-lib/aws-stepfunctions-tasks/lib/emr/emr-create-cluster.ts index 69e604718cb4f..6631a13a195fb 100644 --- a/packages/aws-cdk-lib/aws-stepfunctions-tasks/lib/emr/emr-create-cluster.ts +++ b/packages/aws-cdk-lib/aws-stepfunctions-tasks/lib/emr/emr-create-cluster.ts @@ -719,14 +719,14 @@ export namespace EmrCreateCluster { * The instance fleet configuration is available only in Amazon EMR releases 4.8.0 and later, excluding 5.0.x versions. * On-Demand Instances allocation strategy is available in Amazon EMR releases 5.12.1 and later. * - * @default - no onDemandSpecification + * @default - no on-demand specification */ readonly onDemandSpecification?: OnDemandProvisioningSpecificationProperty; /** * The launch specification for Spot instances in the fleet, which determines the defined duration and provisioning timeout behavior. * - * @default - no spotSpecification + * @default - no spot specification */ readonly spotSpecification?: SpotProvisioningSpecificationProperty; }