# NOT RUN {
# To run these examples you need the AWS CLI, use
# aws_cli_install() if it is not installed.
# create a default user
create_profile(access_key = "my_access_key_1",
secret_key = "123456789",
region = "us-east-1" )
# verify if the user was created
profile_settings()
# you can also create a user with a profile name
create_profile(profile = "profile_name",
access_key = "my_access_key_2",
secret_key = "987654321",
region = "us-west-1")
# verify if the user was created
profile_settings(profile = "profile_name")
# remove your credentials from this computer
delete_all_profiles()
# }
# NOT RUN {
# }
Run the code above in your browser using DataLab