When I try to get filenames from codecommit repo using AWS CLI, and when I use the below command:
aws codecommit get-folder --repository-name reponame --folder-path ""
I'm getting the below output:
{
"commitId": "2915c5a2eab08aeb36facbb1dc78b7f3f6f10873",
"folderPath": "",
"treeId": "0cc6d2dcfa75acd0bceacd446674635d44be0ab7",
"subFolders": [],
"files": [
{
"blobId": "8e29296c9119a5c5d839bc3d910b065c5cce0629",
"absolutePath": "filename.yaml",
"relativePath": "filename.yaml",
"fileMode": "NORMAL"
}
],
"symbolicLinks": [],
"subModules": []
}
Can you help to get the full filename of "filename.yml"?