Skip to content
This repository has been archived by the owner on Jun 13, 2023. It is now read-only.

Latest commit

 

History

History
28 lines (20 loc) · 1.03 KB

SparkNodeAwsAttributes.md

File metadata and controls

28 lines (20 loc) · 1.03 KB

SparkNodeAwsAttributes

Properties

Name Type Description Notes
is_spot bool Whether this node is on an Amazon spot instance. [optional]

Example

from databricks_jobs.models.spark_node_aws_attributes import SparkNodeAwsAttributes

# TODO update the JSON string below
json = "{}"
# create an instance of SparkNodeAwsAttributes from a JSON string
spark_node_aws_attributes_instance = SparkNodeAwsAttributes.from_json(json)
# print the JSON string representation of the object
print SparkNodeAwsAttributes.to_json()

# convert the object into a dict
spark_node_aws_attributes_dict = spark_node_aws_attributes_instance.to_dict()
# create an instance of SparkNodeAwsAttributes from a dict
spark_node_aws_attributes_form_dict = spark_node_aws_attributes.from_dict(spark_node_aws_attributes_dict)

[Back to Model list] [Back to API list] [Back to README]