AWS IoT

2023/04/20 - AWS IoT - 3 updated api methods

Changes  Support additional OTA states in GetOTAUpdate API

CreateOTAUpdate (updated) Link ¶
Changes (response)
{'otaUpdateStatus': {'DELETE_FAILED', 'DELETE_IN_PROGRESS'}}

Creates an IoT OTA update on a target group of things or groups.

Requires permission to access the CreateOTAUpdate action.

See also: AWS API Documentation

Request Syntax

client.create_ota_update(
    otaUpdateId='string',
    description='string',
    targets=[
        'string',
    ],
    protocols=[
        'MQTT'|'HTTP',
    ],
    targetSelection='CONTINUOUS'|'SNAPSHOT',
    awsJobExecutionsRolloutConfig={
        'maximumPerMinute': 123,
        'exponentialRate': {
            'baseRatePerMinute': 123,
            'incrementFactor': 123.0,
            'rateIncreaseCriteria': {
                'numberOfNotifiedThings': 123,
                'numberOfSucceededThings': 123
            }
        }
    },
    awsJobPresignedUrlConfig={
        'expiresInSec': 123
    },
    awsJobAbortConfig={
        'abortCriteriaList': [
            {
                'failureType': 'FAILED'|'REJECTED'|'TIMED_OUT'|'ALL',
                'action': 'CANCEL',
                'thresholdPercentage': 123.0,
                'minNumberOfExecutedThings': 123
            },
        ]
    },
    awsJobTimeoutConfig={
        'inProgressTimeoutInMinutes': 123
    },
    files=[
        {
            'fileName': 'string',
            'fileType': 123,
            'fileVersion': 'string',
            'fileLocation': {
                'stream': {
                    'streamId': 'string',
                    'fileId': 123
                },
                's3Location': {
                    'bucket': 'string',
                    'key': 'string',
                    'version': 'string'
                }
            },
            'codeSigning': {
                'awsSignerJobId': 'string',
                'startSigningJobParameter': {
                    'signingProfileParameter': {
                        'certificateArn': 'string',
                        'platform': 'string',
                        'certificatePathOnDevice': 'string'
                    },
                    'signingProfileName': 'string',
                    'destination': {
                        's3Destination': {
                            'bucket': 'string',
                            'prefix': 'string'
                        }
                    }
                },
                'customCodeSigning': {
                    'signature': {
                        'inlineDocument': b'bytes'
                    },
                    'certificateChain': {
                        'certificateName': 'string',
                        'inlineDocument': 'string'
                    },
                    'hashAlgorithm': 'string',
                    'signatureAlgorithm': 'string'
                }
            },
            'attributes': {
                'string': 'string'
            }
        },
    ],
    roleArn='string',
    additionalParameters={
        'string': 'string'
    },
    tags=[
        {
            'Key': 'string',
            'Value': 'string'
        },
    ]
)
type otaUpdateId

string

param otaUpdateId

[REQUIRED]

The ID of the OTA update to be created.

type description

string

param description

The description of the OTA update.

type targets

list

param targets

[REQUIRED]

The devices targeted to receive OTA updates.

  • (string) --

type protocols

list

param protocols

The protocol used to transfer the OTA update image. Valid values are [HTTP], [MQTT], [HTTP, MQTT]. When both HTTP and MQTT are specified, the target device can choose the protocol.

  • (string) --

type targetSelection

string

param targetSelection

Specifies whether the update will continue to run (CONTINUOUS), or will be complete after all the things specified as targets have completed the update (SNAPSHOT). If continuous, the update may also be run on a thing when a change is detected in a target. For example, an update will run on a thing when the thing is added to a target group, even after the update was completed by all things originally in the group. Valid values: CONTINUOUS | SNAPSHOT.

type awsJobExecutionsRolloutConfig

dict

param awsJobExecutionsRolloutConfig

Configuration for the rollout of OTA updates.

  • maximumPerMinute (integer) --

    The maximum number of OTA update job executions started per minute.

  • exponentialRate (dict) --

    The rate of increase for a job rollout. This parameter allows you to define an exponential rate increase for a job rollout.

    • baseRatePerMinute (integer) -- [REQUIRED]

      The minimum number of things that will be notified of a pending job, per minute, at the start of the job rollout. This is the initial rate of the rollout.

    • incrementFactor (float) -- [REQUIRED]

      The rate of increase for a job rollout. The number of things notified is multiplied by this factor.

    • rateIncreaseCriteria (dict) -- [REQUIRED]

      The criteria to initiate the increase in rate of rollout for a job.

      Amazon Web Services IoT Core supports up to one digit after the decimal (for example, 1.5, but not 1.55).

      • numberOfNotifiedThings (integer) --

        When this number of things have been notified, it will initiate an increase in the rollout rate.

      • numberOfSucceededThings (integer) --

        When this number of things have succeeded in their job execution, it will initiate an increase in the rollout rate.

type awsJobPresignedUrlConfig

dict

param awsJobPresignedUrlConfig

Configuration information for pre-signed URLs.

  • expiresInSec (integer) --

    How long (in seconds) pre-signed URLs are valid. Valid values are 60 - 3600, the default value is 1800 seconds. Pre-signed URLs are generated when a request for the job document is received.

type awsJobAbortConfig

dict

param awsJobAbortConfig

The criteria that determine when and how a job abort takes place.

  • abortCriteriaList (list) -- [REQUIRED]

    The list of criteria that determine when and how to abort the job.

    • (dict) --

      The criteria that determine when and how a job abort takes place.

      • failureType (string) -- [REQUIRED]

        The type of job execution failures that can initiate a job abort.

      • action (string) -- [REQUIRED]

        The type of job action to take to initiate the job abort.

      • thresholdPercentage (float) -- [REQUIRED]

        The minimum percentage of job execution failures that must occur to initiate the job abort.

        Amazon Web Services IoT Core supports up to two digits after the decimal (for example, 10.9 and 10.99, but not 10.999).

      • minNumberOfExecutedThings (integer) -- [REQUIRED]

        The minimum number of things which must receive job execution notifications before the job can be aborted.

type awsJobTimeoutConfig

dict

param awsJobTimeoutConfig

Specifies the amount of time each device has to finish its execution of the job. A timer is started when the job execution status is set to IN_PROGRESS . If the job execution status is not set to another terminal state before the timer expires, it will be automatically set to TIMED_OUT .

  • inProgressTimeoutInMinutes (integer) --

    Specifies the amount of time, in minutes, this device has to finish execution of this job. The timeout interval can be anywhere between 1 minute and 7 days (1 to 10080 minutes). The in progress timer can't be updated and will apply to all job executions for the job. Whenever a job execution remains in the IN_PROGRESS status for longer than this interval, the job execution will fail and switch to the terminal TIMED_OUT status.

type files

list

param files

[REQUIRED]

The files to be streamed by the OTA update.

  • (dict) --

    Describes a file to be associated with an OTA update.

    • fileName (string) --

      The name of the file.

    • fileType (integer) --

      An integer value you can include in the job document to allow your devices to identify the type of file received from the cloud.

    • fileVersion (string) --

      The file version.

    • fileLocation (dict) --

      The location of the updated firmware.

      • stream (dict) --

        The stream that contains the OTA update.

        • streamId (string) --

          The stream ID.

        • fileId (integer) --

          The ID of a file associated with a stream.

      • s3Location (dict) --

        The location of the updated firmware in S3.

        • bucket (string) --

          The S3 bucket.

        • key (string) --

          The S3 key.

        • version (string) --

          The S3 bucket version.

    • codeSigning (dict) --

      The code signing method of the file.

      • awsSignerJobId (string) --

        The ID of the AWSSignerJob which was created to sign the file.

      • startSigningJobParameter (dict) --

        Describes the code-signing job.

        • signingProfileParameter (dict) --

          Describes the code-signing profile.

          • certificateArn (string) --

            Certificate ARN.

          • platform (string) --

            The hardware platform of your device.

          • certificatePathOnDevice (string) --

            The location of the code-signing certificate on your device.

        • signingProfileName (string) --

          The code-signing profile name.

        • destination (dict) --

          The location to write the code-signed file.

          • s3Destination (dict) --

            Describes the location in S3 of the updated firmware.

            • bucket (string) --

              The S3 bucket that contains the updated firmware.

            • prefix (string) --

              The S3 prefix.

      • customCodeSigning (dict) --

        A custom method for code signing a file.

        • signature (dict) --

          The signature for the file.

          • inlineDocument (bytes) --

            A base64 encoded binary representation of the code signing signature.

        • certificateChain (dict) --

          The certificate chain.

          • certificateName (string) --

            The name of the certificate.

          • inlineDocument (string) --

            A base64 encoded binary representation of the code signing certificate chain.

        • hashAlgorithm (string) --

          The hash algorithm used to code sign the file. You can use a string as the algorithm name if the target over-the-air (OTA) update devices are able to verify the signature that was generated using the same signature algorithm. For example, FreeRTOS uses SHA256 or SHA1 , so you can pass either of them based on which was used for generating the signature.

        • signatureAlgorithm (string) --

          The signature algorithm used to code sign the file. You can use a string as the algorithm name if the target over-the-air (OTA) update devices are able to verify the signature that was generated using the same signature algorithm. For example, FreeRTOS uses ECDSA or RSA , so you can pass either of them based on which was used for generating the signature.

    • attributes (dict) --

      A list of name/attribute pairs.

      • (string) --

        • (string) --

type roleArn

string

param roleArn

[REQUIRED]

The IAM role that grants Amazon Web Services IoT Core access to the Amazon S3, IoT jobs and Amazon Web Services Code Signing resources to create an OTA update job.

type additionalParameters

dict

param additionalParameters

A list of additional OTA update parameters which are name-value pairs.

  • (string) --

    • (string) --

type tags

list

param tags

Metadata which can be used to manage updates.

  • (dict) --

    A set of key/value pairs that are used to manage the resource.

    • Key (string) -- [REQUIRED]

      The tag's key.

    • Value (string) --

      The tag's value.

rtype

dict

returns

Response Syntax

{
    'otaUpdateId': 'string',
    'awsIotJobId': 'string',
    'otaUpdateArn': 'string',
    'awsIotJobArn': 'string',
    'otaUpdateStatus': 'CREATE_PENDING'|'CREATE_IN_PROGRESS'|'CREATE_COMPLETE'|'CREATE_FAILED'|'DELETE_IN_PROGRESS'|'DELETE_FAILED'
}

Response Structure

  • (dict) --

    • otaUpdateId (string) --

      The OTA update ID.

    • awsIotJobId (string) --

      The IoT job ID associated with the OTA update.

    • otaUpdateArn (string) --

      The OTA update ARN.

    • awsIotJobArn (string) --

      The IoT job ARN associated with the OTA update.

    • otaUpdateStatus (string) --

      The OTA update status.

GetOTAUpdate (updated) Link ¶
Changes (response)
{'otaUpdateInfo': {'otaUpdateStatus': {'DELETE_FAILED', 'DELETE_IN_PROGRESS'}}}

Gets an OTA update.

Requires permission to access the GetOTAUpdate action.

See also: AWS API Documentation

Request Syntax

client.get_ota_update(
    otaUpdateId='string'
)
type otaUpdateId

string

param otaUpdateId

[REQUIRED]

The OTA update ID.

rtype

dict

returns

Response Syntax

{
    'otaUpdateInfo': {
        'otaUpdateId': 'string',
        'otaUpdateArn': 'string',
        'creationDate': datetime(2015, 1, 1),
        'lastModifiedDate': datetime(2015, 1, 1),
        'description': 'string',
        'targets': [
            'string',
        ],
        'protocols': [
            'MQTT'|'HTTP',
        ],
        'awsJobExecutionsRolloutConfig': {
            'maximumPerMinute': 123,
            'exponentialRate': {
                'baseRatePerMinute': 123,
                'incrementFactor': 123.0,
                'rateIncreaseCriteria': {
                    'numberOfNotifiedThings': 123,
                    'numberOfSucceededThings': 123
                }
            }
        },
        'awsJobPresignedUrlConfig': {
            'expiresInSec': 123
        },
        'targetSelection': 'CONTINUOUS'|'SNAPSHOT',
        'otaUpdateFiles': [
            {
                'fileName': 'string',
                'fileType': 123,
                'fileVersion': 'string',
                'fileLocation': {
                    'stream': {
                        'streamId': 'string',
                        'fileId': 123
                    },
                    's3Location': {
                        'bucket': 'string',
                        'key': 'string',
                        'version': 'string'
                    }
                },
                'codeSigning': {
                    'awsSignerJobId': 'string',
                    'startSigningJobParameter': {
                        'signingProfileParameter': {
                            'certificateArn': 'string',
                            'platform': 'string',
                            'certificatePathOnDevice': 'string'
                        },
                        'signingProfileName': 'string',
                        'destination': {
                            's3Destination': {
                                'bucket': 'string',
                                'prefix': 'string'
                            }
                        }
                    },
                    'customCodeSigning': {
                        'signature': {
                            'inlineDocument': b'bytes'
                        },
                        'certificateChain': {
                            'certificateName': 'string',
                            'inlineDocument': 'string'
                        },
                        'hashAlgorithm': 'string',
                        'signatureAlgorithm': 'string'
                    }
                },
                'attributes': {
                    'string': 'string'
                }
            },
        ],
        'otaUpdateStatus': 'CREATE_PENDING'|'CREATE_IN_PROGRESS'|'CREATE_COMPLETE'|'CREATE_FAILED'|'DELETE_IN_PROGRESS'|'DELETE_FAILED',
        'awsIotJobId': 'string',
        'awsIotJobArn': 'string',
        'errorInfo': {
            'code': 'string',
            'message': 'string'
        },
        'additionalParameters': {
            'string': 'string'
        }
    }
}

Response Structure

  • (dict) --

    • otaUpdateInfo (dict) --

      The OTA update info.

      • otaUpdateId (string) --

        The OTA update ID.

      • otaUpdateArn (string) --

        The OTA update ARN.

      • creationDate (datetime) --

        The date when the OTA update was created.

      • lastModifiedDate (datetime) --

        The date when the OTA update was last updated.

      • description (string) --

        A description of the OTA update.

      • targets (list) --

        The targets of the OTA update.

        • (string) --

      • protocols (list) --

        The protocol used to transfer the OTA update image. Valid values are [HTTP], [MQTT], [HTTP, MQTT]. When both HTTP and MQTT are specified, the target device can choose the protocol.

        • (string) --

      • awsJobExecutionsRolloutConfig (dict) --

        Configuration for the rollout of OTA updates.

        • maximumPerMinute (integer) --

          The maximum number of OTA update job executions started per minute.

        • exponentialRate (dict) --

          The rate of increase for a job rollout. This parameter allows you to define an exponential rate increase for a job rollout.

          • baseRatePerMinute (integer) --

            The minimum number of things that will be notified of a pending job, per minute, at the start of the job rollout. This is the initial rate of the rollout.

          • incrementFactor (float) --

            The rate of increase for a job rollout. The number of things notified is multiplied by this factor.

          • rateIncreaseCriteria (dict) --

            The criteria to initiate the increase in rate of rollout for a job.

            Amazon Web Services IoT Core supports up to one digit after the decimal (for example, 1.5, but not 1.55).

            • numberOfNotifiedThings (integer) --

              When this number of things have been notified, it will initiate an increase in the rollout rate.

            • numberOfSucceededThings (integer) --

              When this number of things have succeeded in their job execution, it will initiate an increase in the rollout rate.

      • awsJobPresignedUrlConfig (dict) --

        Configuration information for pre-signed URLs. Valid when protocols contains HTTP.

        • expiresInSec (integer) --

          How long (in seconds) pre-signed URLs are valid. Valid values are 60 - 3600, the default value is 1800 seconds. Pre-signed URLs are generated when a request for the job document is received.

      • targetSelection (string) --

        Specifies whether the OTA update will continue to run (CONTINUOUS), or will be complete after all those things specified as targets have completed the OTA update (SNAPSHOT). If continuous, the OTA update may also be run on a thing when a change is detected in a target. For example, an OTA update will run on a thing when the thing is added to a target group, even after the OTA update was completed by all things originally in the group.

      • otaUpdateFiles (list) --

        A list of files associated with the OTA update.

        • (dict) --

          Describes a file to be associated with an OTA update.

          • fileName (string) --

            The name of the file.

          • fileType (integer) --

            An integer value you can include in the job document to allow your devices to identify the type of file received from the cloud.

          • fileVersion (string) --

            The file version.

          • fileLocation (dict) --

            The location of the updated firmware.

            • stream (dict) --

              The stream that contains the OTA update.

              • streamId (string) --

                The stream ID.

              • fileId (integer) --

                The ID of a file associated with a stream.

            • s3Location (dict) --

              The location of the updated firmware in S3.

              • bucket (string) --

                The S3 bucket.

              • key (string) --

                The S3 key.

              • version (string) --

                The S3 bucket version.

          • codeSigning (dict) --

            The code signing method of the file.

            • awsSignerJobId (string) --

              The ID of the AWSSignerJob which was created to sign the file.

            • startSigningJobParameter (dict) --

              Describes the code-signing job.

              • signingProfileParameter (dict) --

                Describes the code-signing profile.

                • certificateArn (string) --

                  Certificate ARN.

                • platform (string) --

                  The hardware platform of your device.

                • certificatePathOnDevice (string) --

                  The location of the code-signing certificate on your device.

              • signingProfileName (string) --

                The code-signing profile name.

              • destination (dict) --

                The location to write the code-signed file.

                • s3Destination (dict) --

                  Describes the location in S3 of the updated firmware.

                  • bucket (string) --

                    The S3 bucket that contains the updated firmware.

                  • prefix (string) --

                    The S3 prefix.

            • customCodeSigning (dict) --

              A custom method for code signing a file.

              • signature (dict) --

                The signature for the file.

                • inlineDocument (bytes) --

                  A base64 encoded binary representation of the code signing signature.

              • certificateChain (dict) --

                The certificate chain.

                • certificateName (string) --

                  The name of the certificate.

                • inlineDocument (string) --

                  A base64 encoded binary representation of the code signing certificate chain.

              • hashAlgorithm (string) --

                The hash algorithm used to code sign the file. You can use a string as the algorithm name if the target over-the-air (OTA) update devices are able to verify the signature that was generated using the same signature algorithm. For example, FreeRTOS uses SHA256 or SHA1 , so you can pass either of them based on which was used for generating the signature.

              • signatureAlgorithm (string) --

                The signature algorithm used to code sign the file. You can use a string as the algorithm name if the target over-the-air (OTA) update devices are able to verify the signature that was generated using the same signature algorithm. For example, FreeRTOS uses ECDSA or RSA , so you can pass either of them based on which was used for generating the signature.

          • attributes (dict) --

            A list of name/attribute pairs.

            • (string) --

              • (string) --

      • otaUpdateStatus (string) --

        The status of the OTA update.

      • awsIotJobId (string) --

        The IoT job ID associated with the OTA update.

      • awsIotJobArn (string) --

        The IoT job ARN associated with the OTA update.

      • errorInfo (dict) --

        Error information associated with the OTA update.

        • code (string) --

          The error code.

        • message (string) --

          The error message.

      • additionalParameters (dict) --

        A collection of name/value pairs

        • (string) --

          • (string) --

ListOTAUpdates (updated) Link ¶
Changes (request)
{'otaUpdateStatus': {'DELETE_FAILED', 'DELETE_IN_PROGRESS'}}

Lists OTA updates.

Requires permission to access the ListOTAUpdates action.

See also: AWS API Documentation

Request Syntax

client.list_ota_updates(
    maxResults=123,
    nextToken='string',
    otaUpdateStatus='CREATE_PENDING'|'CREATE_IN_PROGRESS'|'CREATE_COMPLETE'|'CREATE_FAILED'|'DELETE_IN_PROGRESS'|'DELETE_FAILED'
)
type maxResults

integer

param maxResults

The maximum number of results to return at one time.

type nextToken

string

param nextToken

A token used to retrieve the next set of results.

type otaUpdateStatus

string

param otaUpdateStatus

The OTA update job status.

rtype

dict

returns

Response Syntax

{
    'otaUpdates': [
        {
            'otaUpdateId': 'string',
            'otaUpdateArn': 'string',
            'creationDate': datetime(2015, 1, 1)
        },
    ],
    'nextToken': 'string'
}

Response Structure

  • (dict) --

    • otaUpdates (list) --

      A list of OTA update jobs.

      • (dict) --

        An OTA update summary.

        • otaUpdateId (string) --

          The OTA update ID.

        • otaUpdateArn (string) --

          The OTA update ARN.

        • creationDate (datetime) --

          The date when the OTA update was created.

    • nextToken (string) --

      A token to use to get the next set of results.