Job executions retry configuration is not setting up in AWS IOT Jobs

0

I am trying to create AWS IOT job using the AWS SDK php. This job is used to deploy the updates to the iot devices. https://docs.aws.amazon.com/aws-sdk-php/v3/api/api-iot-2015-05-28.html#createjob

My createJob request is "

$request = [
            "description" => $description,    
            "documentSource" => $documentUrl,
            "jobExecutionsRolloutConfig" => [ 
                "maximumPerMinute"=> 1000
            ],
            "jobId" => $jobId,
            "presignedUrlConfig" => [   
                "roleArn" => $roleArn,
                "expiresInSec" => 3600
            ],
            "tags" => [],
            "targetSelection" => "SNAPSHOT",
            "targets" => $deviceList,
            "jobExecutionsRetryConfig" => [
                "criteriaList" => [
                    [
                        "failureType" => "FAILED",
                        "numberOfRetries" => 2
                    ]
                ]
            ]
        ];

I can see that my job is getting created in AWS Console, but retry configuration is not getting populated.retry

Sid
질문됨 2달 전133회 조회
답변 없음

로그인하지 않았습니다. 로그인해야 답변을 게시할 수 있습니다.

좋은 답변은 질문에 명확하게 답하고 건설적인 피드백을 제공하며 질문자의 전문적인 성장을 장려합니다.

질문 답변하기에 대한 가이드라인