in awsglue/transforms/relationalize.py [0:0]
def describeArgs(cls):
arg1 = {"name": "frame",
"type": "DynamicFrame",
"description": "The DynamicFrame to relationalize",
"optional": False,
"defaultValue": None}
arg2 = {"name": "staging_path",
"type": "String",
"description": "path to store partitions of pivoted tables in csv format",
"optional": True,
"defaultValue": None}
arg3 = {"name": "name",
"type": "String",
"description": "Name of the root table",
"optional": True,
"defaultValue": "roottable"}
arg4 = {"name": "options",
"type": "Dictionary",
"description": "dict of optional parameters for relationalize",
"optional": True,
"defaultValue": "{}"}
arg5 = {"name": "transformation_ctx",
"type": "String",
"description": "A unique string that is used to identify stats / state information",
"optional": True,
"defaultValue": ""}
arg6 = {"name": "info",
"type": "String",
"description": "Any string to be associated with errors in the transformation",
"optional": True,
"defaultValue": "\"\""}
arg7 = {"name": "stageThreshold",
"type": "Integer",
"description": "Max number of errors in the transformation until processing will error out",
"optional": True,
"defaultValue": "0"}
arg8 = {"name": "totalThreshold",
"type": "Integer",
"description": "Max number of errors total until processing will error out.",
"optional": True,
"defaultValue": "0"}
return [arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8]