Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 7 additions & 5 deletions sample/sagemaker/2017-07-24/service-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -9447,7 +9447,8 @@
"ml.r7i.12xlarge",
"ml.r7i.16xlarge",
"ml.r7i.24xlarge",
"ml.r7i.48xlarge"
"ml.r7i.48xlarge",
"ml.p6-b300.48xlarge"
]
},
"ClusterKubernetesConfig":{
Expand Down Expand Up @@ -9815,7 +9816,6 @@
},
"ClusterOrchestrator":{
"type":"structure",
"required":["Eks"],
"members":{
"Eks":{
"shape":"ClusterOrchestratorEksConfig",
Expand Down Expand Up @@ -27014,7 +27014,7 @@
"type":"integer",
"documentation":"<p>Optional. Customer requested period in seconds for which the Training cluster is kept alive after the job is finished.</p>",
"box":true,
"max":3600,
"max":21600,
"min":0
},
"KendraSettings":{
Expand Down Expand Up @@ -39781,7 +39781,8 @@
"ml.p6-b200.48xlarge",
"ml.p4de.24xlarge",
"ml.p6e-gb200.36xlarge",
"ml.p5.4xlarge"
"ml.p5.4xlarge",
"ml.p6-b300.48xlarge"
]
},
"ReservedCapacityOffering":{
Expand Down Expand Up @@ -43475,7 +43476,8 @@
"ml.r7i.24xlarge",
"ml.r7i.48xlarge",
"ml.p6e-gb200.36xlarge",
"ml.p5.4xlarge"
"ml.p5.4xlarge",
"ml.p6-b300.48xlarge"
]
},
"TrainingInstanceTypes":{
Expand Down
2 changes: 1 addition & 1 deletion src/sagemaker_core/main/shapes.py
Original file line number Diff line number Diff line change
Expand Up @@ -4254,7 +4254,7 @@ class ClusterOrchestrator(Base):
eks: The Amazon EKS cluster used as the orchestrator for the SageMaker HyperPod cluster.
"""

eks: ClusterOrchestratorEksConfig
eks: Optional[ClusterOrchestratorEksConfig] = Unassigned()


class FSxLustreConfig(Base):
Expand Down
Loading