@@ -1366,6 +1366,7 @@ class JumpStartModelDeployKwargs(JumpStartKwargs):
1366
1366
"model_version" ,
1367
1367
"hub_arn" ,
1368
1368
"model_type" ,
1369
+ "hub_arn" ,
1369
1370
"initial_instance_count" ,
1370
1371
"instance_type" ,
1371
1372
"region" ,
@@ -1400,6 +1401,7 @@ class JumpStartModelDeployKwargs(JumpStartKwargs):
1400
1401
"model_type" ,
1401
1402
"hub_arn" ,
1402
1403
"model_type" ,
1404
+ "hub_arn" ,
1403
1405
"region" ,
1404
1406
"tolerate_deprecated_model" ,
1405
1407
"tolerate_vulnerable_model" ,
@@ -1446,6 +1448,7 @@ def __init__(
1446
1448
self .model_version = model_version
1447
1449
self .hub_arn = hub_arn
1448
1450
self .model_type = model_type
1451
+ self .hub_arn = hub_arn
1449
1452
self .initial_instance_count = initial_instance_count
1450
1453
self .instance_type = instance_type
1451
1454
self .region = region
@@ -1482,6 +1485,7 @@ class JumpStartEstimatorInitKwargs(JumpStartKwargs):
1482
1485
"model_version" ,
1483
1486
"hub_arn" ,
1484
1487
"model_type" ,
1488
+ "hub_arn" ,
1485
1489
"instance_type" ,
1486
1490
"instance_count" ,
1487
1491
"region" ,
@@ -1543,6 +1547,7 @@ class JumpStartEstimatorInitKwargs(JumpStartKwargs):
1543
1547
"model_version" ,
1544
1548
"hub_arn" ,
1545
1549
"model_type" ,
1550
+ "hub_arn" ,
1546
1551
}
1547
1552
1548
1553
def __init__ (
@@ -1672,6 +1677,7 @@ class JumpStartEstimatorFitKwargs(JumpStartKwargs):
1672
1677
"model_version" ,
1673
1678
"hub_arn" ,
1674
1679
"model_type" ,
1680
+ "hub_arn" ,
1675
1681
"region" ,
1676
1682
"inputs" ,
1677
1683
"wait" ,
@@ -1688,6 +1694,7 @@ class JumpStartEstimatorFitKwargs(JumpStartKwargs):
1688
1694
"model_version" ,
1689
1695
"hub_arn" ,
1690
1696
"model_type" ,
1697
+ "hub_arn" ,
1691
1698
"region" ,
1692
1699
"tolerate_deprecated_model" ,
1693
1700
"tolerate_vulnerable_model" ,
@@ -1716,6 +1723,7 @@ def __init__(
1716
1723
self .model_version = model_version
1717
1724
self .hub_arn = hub_arn
1718
1725
self .model_type = model_type
1726
+ self .hub_arn = hub_arn
1719
1727
self .region = region
1720
1728
self .inputs = inputs
1721
1729
self .wait = wait
0 commit comments