Skip to content

Latest commit

 

History

History
executable file
·
32 lines (23 loc) · 1.1 KB

DataLocation.md

File metadata and controls

executable file
·
32 lines (23 loc) · 1.1 KB

DataLocation

Properties

Name Type Description Notes
s3_obj_key str Root path for EPIC data store [optional] [readonly]
s3_location str S3 Bucket name for EPIC data store [optional] [readonly]
aws_region str AWS Region [optional] [readonly]
session_token SessionToken [optional]

Example

from epiccore.models.data_location import DataLocation

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

# convert the object into a dict
data_location_dict = data_location_instance.to_dict()
# create an instance of DataLocation from a dict
data_location_form_dict = data_location.from_dict(data_location_dict)

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