구름 모양에서 Greengrass의 국부 연결 검사 설정을 설정합니다

3111 단어 AWSGreengrass
대단한 집게지만 렉이 걸려서 남았어요.V2 대신 V1 로 설정합니다.
항목은 아래와 같다.
  • Automatically detect and override connection information
  • Manually manage connection information

  • Cloudformation과 API에 이걸 설정하는 방법을 찾고 있지만 어디에서도 프로젝트를 찾을 수 없습니다.그때 아래 URL을 발견했습니다.
    다음 명령을 참조하면 됩니다.Core connectivity informationLambda를 등록한다는 뜻입니다.
    aws greengrass create-function-definition-version --function-definition-id <function-definition-id> --functions '[
        {
            "FunctionArn": "arn:aws:lambda:::function:GGIPDetector:1",
            "Id": "<your-id>",
            "FunctionConfiguration": {
                "Pinned": true,
                "Timeout": 3,
                "MemorySize": 32768
            }
        }
    ]'
    
    나는 사실이라고 생각했지만, 확실히 다음과 같이 정의하고 배치한 후arn:aws:lambda:::function:GGIPDetector:1 유효성을 확인했다.
    Greengrass Group의 Lambda 프로젝트를 보더라도 그에 상응하는 LambdaAutomatically detect and override connection information가 보이지 않아 내부에서 사용하는 것 같다.설정에 람다를 등록하는 형식일 줄은 몰랐어요.
    #省略
     FunctionDefinitionVersion:
        Type: "AWS::Greengrass::FunctionDefinitionVersion"
        Properties:
          FunctionDefinitionId: !GetAtt
            - FunctionDefinition
            - Id
          DefaultConfig:
            Execution:
              IsolationMode: GreengrassContainer
          Functions:
            - Id: GGIPDetector
              FunctionArn: "arn:aws:lambda:::function:GGIPDetector:1"
              FunctionConfiguration:
                Pinned: "true"
                MemorySize: "32768"
                Timeout: "3"
    #省略
    

    좋은 웹페이지 즐겨찾기