我正在尝试创建一个自定义DBParameterGroup作为CloudFormation堆栈的一部分,以使用以下资源定义启动SQL实例 -
CustomDBParameterGroup:
Type: AWS::RDS::DBParameterGroup
Properties:
Description: !Join [' ', ['Custom Option Group for application - ', !Ref AppName, !Ref EnvironmentType]]
Family: sqlserver-ee-13.0
Parameters:
remote_access: 0
当我启动堆栈时,我收到错误 -
Invalid / Unsupported DB Parameter: remote_access
正确的参数属性键/值组合是什么 禁用参数组中的远程访问?无法找到这个 AWS文档。感谢是否有人可以提供帮助。
谢谢!
答案 0 :(得分:1)
我找到了答案。将int **tab;
tab = (int**)malloc((800) * sizeof(int*));
for (int i = 0; i<800; i++)
{
tab[i] = (int*)malloc((600) * sizeof(int));
}
更改为remote_access
(带空格),将使用设置值0创建自定义DBParameterGroup。
remote access