We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 26d7fd8 commit a4c299fCopy full SHA for a4c299f
src/sagemaker/workflow/emr_step.py
@@ -61,19 +61,19 @@ def to_request(self) -> RequestType:
61
return config
62
63
64
-def validate_cluster_config(cluster_config, name):
+def validate_cluster_config(cluster_config, step_name):
65
"""Validates user provided cluster_config.
66
67
Args:
68
cluster_config(Union[Dict[str, Any], List[Dict[str, Any]]]):
69
user provided cluster configuration.
70
- name: name of the EMR cluster.
+ step_name: The name of the EMR step.
71
"""
72
73
instances = "Instances"
74
instancegroups = "InstanceGroups"
75
instancefleets = "InstanceFleets"
76
- prefix_with_in = "In EMRStep " + name + ", "
+ prefix_with_in = "In EMRStep " + step_name + ", "
77
78
if (
79
"Name" in cluster_config
0 commit comments