@@ -2354,6 +2354,7 @@ class JumpStartModelDeployKwargs(JumpStartKwargs):
2354
2354
"model_version" ,
2355
2355
"hub_arn" ,
2356
2356
"model_type" ,
2357
+ "hub_arn" ,
2357
2358
"initial_instance_count" ,
2358
2359
"instance_type" ,
2359
2360
"region" ,
@@ -2388,6 +2389,7 @@ class JumpStartModelDeployKwargs(JumpStartKwargs):
2388
2389
"model_type" ,
2389
2390
"hub_arn" ,
2390
2391
"model_type" ,
2392
+ "hub_arn" ,
2391
2393
"region" ,
2392
2394
"tolerate_deprecated_model" ,
2393
2395
"tolerate_vulnerable_model" ,
@@ -2434,6 +2436,7 @@ def __init__(
2434
2436
self .model_version = model_version
2435
2437
self .hub_arn = hub_arn
2436
2438
self .model_type = model_type
2439
+ self .hub_arn = hub_arn
2437
2440
self .initial_instance_count = initial_instance_count
2438
2441
self .instance_type = instance_type
2439
2442
self .region = region
@@ -2470,6 +2473,7 @@ class JumpStartEstimatorInitKwargs(JumpStartKwargs):
2470
2473
"model_version" ,
2471
2474
"hub_arn" ,
2472
2475
"model_type" ,
2476
+ "hub_arn" ,
2473
2477
"instance_type" ,
2474
2478
"instance_count" ,
2475
2479
"region" ,
@@ -2531,6 +2535,7 @@ class JumpStartEstimatorInitKwargs(JumpStartKwargs):
2531
2535
"model_version" ,
2532
2536
"hub_arn" ,
2533
2537
"model_type" ,
2538
+ "hub_arn" ,
2534
2539
}
2535
2540
2536
2541
def __init__ (
@@ -2660,6 +2665,7 @@ class JumpStartEstimatorFitKwargs(JumpStartKwargs):
2660
2665
"model_version" ,
2661
2666
"hub_arn" ,
2662
2667
"model_type" ,
2668
+ "hub_arn" ,
2663
2669
"region" ,
2664
2670
"inputs" ,
2665
2671
"wait" ,
@@ -2676,6 +2682,7 @@ class JumpStartEstimatorFitKwargs(JumpStartKwargs):
2676
2682
"model_version" ,
2677
2683
"hub_arn" ,
2678
2684
"model_type" ,
2685
+ "hub_arn" ,
2679
2686
"region" ,
2680
2687
"tolerate_deprecated_model" ,
2681
2688
"tolerate_vulnerable_model" ,
@@ -2704,6 +2711,7 @@ def __init__(
2704
2711
self .model_version = model_version
2705
2712
self .hub_arn = hub_arn
2706
2713
self .model_type = model_type
2714
+ self .hub_arn = hub_arn
2707
2715
self .region = region
2708
2716
self .inputs = inputs
2709
2717
self .wait = wait
0 commit comments