Skip to content

AwsCredentials

Properties

Name Type Description Notes
access_key_id str The access key found in aws console
secret_access_key str The secret access key found in aws console

Example

from libica.openapi.v3.models.aws_credentials import AwsCredentials

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

# convert the object into a dict
aws_credentials_dict = aws_credentials_instance.to_dict()
# create an instance of AwsCredentials from a dict
aws_credentials_from_dict = AwsCredentials.from_dict(aws_credentials_dict)

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