Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.15 KB

File metadata and controls

31 lines (22 loc) · 1.15 KB

CreateDynamoDeploymentResponse

Properties

Name Type Description Notes
id int
created_at datetime
endpoint_url str

Example

from platform_api_python_client.models.create_dynamo_deployment_response import CreateDynamoDeploymentResponse

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

# convert the object into a dict
create_dynamo_deployment_response_dict = create_dynamo_deployment_response_instance.to_dict()
# create an instance of CreateDynamoDeploymentResponse from a dict
create_dynamo_deployment_response_from_dict = CreateDynamoDeploymentResponse.from_dict(create_dynamo_deployment_response_dict)

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