Skip to content

Credentials

Properties

Name Type Description Notes
access_key_id str
creation_date int Unix Epoch in seconds

Example

from lakefs_enterprise_sdk.models.credentials import Credentials

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

# convert the object into a dict
credentials_dict = credentials_instance.to_dict()
# create an instance of Credentials from a dict
credentials_form_dict = credentials.from_dict(credentials_dict)