@@ -1420,6 +1420,7 @@ class JumpStartModelDeployKwargs(JumpStartKwargs):
1420
1420
"model_version" ,
1421
1421
"hub_arn" ,
1422
1422
"model_type" ,
1423
+ "hub_arn" ,
1423
1424
"initial_instance_count" ,
1424
1425
"instance_type" ,
1425
1426
"region" ,
@@ -1454,6 +1455,7 @@ class JumpStartModelDeployKwargs(JumpStartKwargs):
1454
1455
"model_type" ,
1455
1456
"hub_arn" ,
1456
1457
"model_type" ,
1458
+ "hub_arn" ,
1457
1459
"region" ,
1458
1460
"tolerate_deprecated_model" ,
1459
1461
"tolerate_vulnerable_model" ,
@@ -1500,6 +1502,7 @@ def __init__(
1500
1502
self .model_version = model_version
1501
1503
self .hub_arn = hub_arn
1502
1504
self .model_type = model_type
1505
+ self .hub_arn = hub_arn
1503
1506
self .initial_instance_count = initial_instance_count
1504
1507
self .instance_type = instance_type
1505
1508
self .region = region
@@ -1536,6 +1539,7 @@ class JumpStartEstimatorInitKwargs(JumpStartKwargs):
1536
1539
"model_version" ,
1537
1540
"hub_arn" ,
1538
1541
"model_type" ,
1542
+ "hub_arn" ,
1539
1543
"instance_type" ,
1540
1544
"instance_count" ,
1541
1545
"region" ,
@@ -1597,6 +1601,7 @@ class JumpStartEstimatorInitKwargs(JumpStartKwargs):
1597
1601
"model_version" ,
1598
1602
"hub_arn" ,
1599
1603
"model_type" ,
1604
+ "hub_arn" ,
1600
1605
}
1601
1606
1602
1607
def __init__ (
@@ -1726,6 +1731,7 @@ class JumpStartEstimatorFitKwargs(JumpStartKwargs):
1726
1731
"model_version" ,
1727
1732
"hub_arn" ,
1728
1733
"model_type" ,
1734
+ "hub_arn" ,
1729
1735
"region" ,
1730
1736
"inputs" ,
1731
1737
"wait" ,
@@ -1742,6 +1748,7 @@ class JumpStartEstimatorFitKwargs(JumpStartKwargs):
1742
1748
"model_version" ,
1743
1749
"hub_arn" ,
1744
1750
"model_type" ,
1751
+ "hub_arn" ,
1745
1752
"region" ,
1746
1753
"tolerate_deprecated_model" ,
1747
1754
"tolerate_vulnerable_model" ,
@@ -1770,6 +1777,7 @@ def __init__(
1770
1777
self .model_version = model_version
1771
1778
self .hub_arn = hub_arn
1772
1779
self .model_type = model_type
1780
+ self .hub_arn = hub_arn
1773
1781
self .region = region
1774
1782
self .inputs = inputs
1775
1783
self .wait = wait
0 commit comments