in cicd/lib/cicd-stack.ts [206:216]
private getContext(): CicdStackContext {
const repositoryName = this.getContextVariable('RepositoryName', 'Name of the Code Commit repository containing the source code');
const branchName = this.getContextVariable('BranchName', 'Name of the branch to use in the Code Commit repository');
const greengrassCoreName = this.getContextVariable('GreengrassCoreName', 'Name of the Greengrass core device to which the Home Assistant component should be deployed');
return {
repositoryName,
branchName,
greengrassCoreName
}
}