Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.24 KB

File metadata and controls

37 lines (28 loc) · 1.24 KB

RunS3UploadTaskVM

Properties

Name Type Description Notes
url str [optional]
access_key str [optional]
secret_key str [optional]
bucket_name str [optional]
destination_folder str [optional]
use_aws bool [optional]
enable_ssl bool [optional]
region str [optional]
t str

Example

from fastreport_cloud_sdk.models.run_s3_upload_task_vm import RunS3UploadTaskVM

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

# convert the object into a dict
run_s3_upload_task_vm_dict = run_s3_upload_task_vm_instance.to_dict()
# create an instance of RunS3UploadTaskVM from a dict
run_s3_upload_task_vm_form_dict = run_s3_upload_task_vm.from_dict(run_s3_upload_task_vm_dict)

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