在 CloudFormation 中创建 Glue 连接(MONGODB 连接类型)时所需 SSL 的密钥是什么

What is the key of Required SSL while creating Glue Connection (MONGODB connection type) in CloudFormation

我正在尝试使用云形成创建 Glue 连接。连接类型是 MONGODB。我无法在此处设置 ssl 详细信息。已尝试 MONGODB_ENFORCE_SSL,但即使构建没有失败,它也无法正常工作。

Some-Name:
    Type: AWS::Glue::Connection
    Properties:
      CatalogId: !Ref AWS::AccountId
      ConnectionInput:
        Name: connection
        Description: "Connection to DB"
        ConnectionType: "MONGODB"
        ConnectionProperties:
          CONNECTION_URL: !Ref ConnectionUri
          USERNAME: !Ref User
          PASSWORD: !Ref Password
          MONGODB_ENFORCE_SSL: "false"
        PhysicalConnectionRequirements:
          SecurityGroupIdList:
            - "sg-something"
          SubnetId: "subnet-something"

JDBC_ENFORCE_SSL 似乎是 JDBC 连接甚至网络连接的默认值