| Name |
Type |
Description |
Notes |
| hardware_instance_id |
int |
|
|
| replicas |
int |
|
|
from platform_api_python_client.models.dynamo_worker_pool_config import DynamoWorkerPoolConfig
# TODO update the JSON string below
json = "{}"
# create an instance of DynamoWorkerPoolConfig from a JSON string
dynamo_worker_pool_config_instance = DynamoWorkerPoolConfig.from_json(json)
# print the JSON string representation of the object
print(DynamoWorkerPoolConfig.to_json())
# convert the object into a dict
dynamo_worker_pool_config_dict = dynamo_worker_pool_config_instance.to_dict()
# create an instance of DynamoWorkerPoolConfig from a dict
dynamo_worker_pool_config_from_dict = DynamoWorkerPoolConfig.from_dict(dynamo_worker_pool_config_dict)
[Back to Model list] [Back to API list] [Back to README]