2018/05/14 - AWS IoT 1-Click Projects Service - 13 new api methods
Changes Update iot1click-projects client to latest version
Removes a physical device from a placement.
See also: AWS API Documentation
Request Syntax
client.disassociate_device_from_placement( projectName='string', placementName='string', deviceTemplateName='string' )
string
[REQUIRED]
The name of the project that contains the placement.
string
[REQUIRED]
The name of the placement that the device should be removed from.
string
[REQUIRED]
The device ID that should be removed from the placement.
dict
Response Syntax
{}
Response Structure
(dict) --
Updates a placement with the given attributes. To clear an attribute, pass an empty value (i.e., "").
See also: AWS API Documentation
Request Syntax
client.update_placement( placementName='string', projectName='string', attributes={ 'string': 'string' } )
string
[REQUIRED]
The name of the placement to update.
string
[REQUIRED]
The name of the project containing the placement to be updated.
dict
The user-defined object of attributes used to update the placement. The maximum number of key/value pairs is 50.
(string) --
(string) --
dict
Response Syntax
{}
Response Structure
(dict) --
Deletes a project. To delete a project, it must not have any placements associated with it.
See also: AWS API Documentation
Request Syntax
client.delete_project( projectName='string' )
string
[REQUIRED]
The name of the empty project to delete.
dict
Response Syntax
{}
Response Structure
(dict) --
Lists the AWS IoT 1-Click project(s) associated with your AWS account and region.
See also: AWS API Documentation
Request Syntax
client.list_projects( nextToken='string', maxResults=123 )
string
The token to retrieve the next set of results.
integer
The maximum number of results to return per request. If not set, a default value of 100 is used.
dict
Response Syntax
{ 'projects': [ { 'projectName': 'string', 'createdDate': datetime(2015, 1, 1), 'updatedDate': datetime(2015, 1, 1) }, ], 'nextToken': 'string' }
Response Structure
(dict) --
projects (list) --
An object containing the list of projects.
(dict) --
An object providing summary information for a particular project for an associated AWS account and region.
projectName (string) --
The name of the project being summarized.
createdDate (datetime) --
The date when the project was originally created, in UNIX epoch time format.
updatedDate (datetime) --
The date when the project was last updated, in UNIX epoch time format. If the project was not updated, then createdDate and updatedDate are the same.
nextToken (string) --
The token used to retrieve the next set of results - will be effectively empty if there are no further results.
Deletes a placement. To delete a placement, it must not have any devices associated with it.
See also: AWS API Documentation
Request Syntax
client.delete_placement( placementName='string', projectName='string' )
string
[REQUIRED]
The name of the empty placement to delete.
string
[REQUIRED]
The project containing the empty placement to delete.
dict
Response Syntax
{}
Response Structure
(dict) --
Associates a physical device with a placement.
See also: AWS API Documentation
Request Syntax
client.associate_device_with_placement( projectName='string', placementName='string', deviceId='string', deviceTemplateName='string' )
string
[REQUIRED]
The name of the project containing the placement in which to associate the device.
string
[REQUIRED]
The name of the placement in which to associate the device.
string
[REQUIRED]
The ID of the physical device to be associated with the given placement in the project. Note that a mandatory 4 character prefix is required for all deviceId values.
string
[REQUIRED]
The device template name to associate with the device ID.
dict
Response Syntax
{}
Response Structure
(dict) --
Lists the placement(s) of a project.
See also: AWS API Documentation
Request Syntax
client.list_placements( projectName='string', nextToken='string', maxResults=123 )
string
[REQUIRED]
The project containing the placements to be listed.
string
The token to retrieve the next set of results.
integer
The maximum number of results to return per request. If not set, a default value of 100 is used.
dict
Response Syntax
{ 'placements': [ { 'projectName': 'string', 'placementName': 'string', 'createdDate': datetime(2015, 1, 1), 'updatedDate': datetime(2015, 1, 1) }, ], 'nextToken': 'string' }
Response Structure
(dict) --
placements (list) --
An object listing the requested placements.
(dict) --
An object providing summary information for a particular placement.
projectName (string) --
The name of the project containing the placement.
placementName (string) --
The name of the placement being summarized.
createdDate (datetime) --
The date when the placement was originally created, in UNIX epoch time format.
updatedDate (datetime) --
The date when the placement was last updated, in UNIX epoch time format. If the placement was not updated, then createdDate and updatedDate are the same.
nextToken (string) --
The token used to retrieve the next set of results - will be effectively empty if there are no further results.
Updates a project associated with your AWS account and region. With the exception of device template names, you can pass just the values that need to be updated because the update request will change only the values that are provided. To clear a value, pass the empty string (i.e., "").
See also: AWS API Documentation
Request Syntax
client.update_project( projectName='string', description='string', placementTemplate={ 'defaultAttributes': { 'string': 'string' }, 'deviceTemplates': { 'string': { 'deviceType': 'string', 'callbackOverrides': { 'string': 'string' } } } } )
string
[REQUIRED]
The name of the project to be updated.
string
An optional user-defined description for the project.
dict
An object defining the project update. Once a project has been created, you cannot add device template names to the project. However, for a given placementTemplate, you can update the associated callbackOverrides for the device definition using this API.
defaultAttributes (dict) --
The default attributes (key/value pairs) to be applied to all placements using this template.
(string) --
(string) --
deviceTemplates (dict) --
An object specifying the DeviceTemplate for all placements using this ( PlacementTemplate) template.
(string) --
(dict) --
An object representing a device for a placement template (see PlacementTemplate).
deviceType (string) --
The device type, which currently must be "button".
callbackOverrides (dict) --
An optional Lambda function to invoke instead of the default Lambda function provided by the placement template.
(string) --
(string) --
dict
Response Syntax
{}
Response Structure
(dict) --
Describes a placement in a project.
See also: AWS API Documentation
Request Syntax
client.describe_placement( placementName='string', projectName='string' )
string
[REQUIRED]
The name of the placement within a project.
string
[REQUIRED]
The project containing the placement to be described.
dict
Response Syntax
{ 'placement': { 'projectName': 'string', 'placementName': 'string', 'attributes': { 'string': 'string' }, 'createdDate': datetime(2015, 1, 1), 'updatedDate': datetime(2015, 1, 1) } }
Response Structure
(dict) --
placement (dict) --
An object describing the placement.
projectName (string) --
The name of the project containing the placement.
placementName (string) --
The name of the placement.
attributes (dict) --
The user-defined attributes associated with the placement.
(string) --
(string) --
createdDate (datetime) --
The date when the placement was initially created, in UNIX epoch time format.
updatedDate (datetime) --
The date when the placement was last updated, in UNIX epoch time format. If the placement was not updated, then createdDate and updatedDate are the same.
Returns an object describing a project.
See also: AWS API Documentation
Request Syntax
client.describe_project( projectName='string' )
string
[REQUIRED]
The name of the project to be described.
dict
Response Syntax
{ 'project': { 'projectName': 'string', 'description': 'string', 'createdDate': datetime(2015, 1, 1), 'updatedDate': datetime(2015, 1, 1), 'placementTemplate': { 'defaultAttributes': { 'string': 'string' }, 'deviceTemplates': { 'string': { 'deviceType': 'string', 'callbackOverrides': { 'string': 'string' } } } } } }
Response Structure
(dict) --
project (dict) --
An object describing the project.
projectName (string) --
The name of the project for which to obtain information from.
description (string) --
The description of the project.
createdDate (datetime) --
The date when the project was originally created, in UNIX epoch time format.
updatedDate (datetime) --
The date when the project was last updated, in UNIX epoch time format. If the project was not updated, then createdDate and updatedDate are the same.
placementTemplate (dict) --
An object describing the project's placement specifications.
defaultAttributes (dict) --
The default attributes (key/value pairs) to be applied to all placements using this template.
(string) --
(string) --
deviceTemplates (dict) --
An object specifying the DeviceTemplate for all placements using this ( PlacementTemplate) template.
(string) --
(dict) --
An object representing a device for a placement template (see PlacementTemplate).
deviceType (string) --
The device type, which currently must be "button".
callbackOverrides (dict) --
An optional Lambda function to invoke instead of the default Lambda function provided by the placement template.
(string) --
(string) --
Creates an empty project with a placement template. A project contains zero or more placements that adhere to the placement template defined in the project.
See also: AWS API Documentation
Request Syntax
client.create_project( projectName='string', description='string', placementTemplate={ 'defaultAttributes': { 'string': 'string' }, 'deviceTemplates': { 'string': { 'deviceType': 'string', 'callbackOverrides': { 'string': 'string' } } } } )
string
[REQUIRED]
The name of the project to create.
string
An optional description for the project.
dict
The schema defining the placement to be created. A placement template defines placement default attributes and device templates. You cannot add or remove device templates after the project has been created. However, you can update callbackOverrides for the device templates using the UpdateProject API.
defaultAttributes (dict) --
The default attributes (key/value pairs) to be applied to all placements using this template.
(string) --
(string) --
deviceTemplates (dict) --
An object specifying the DeviceTemplate for all placements using this ( PlacementTemplate) template.
(string) --
(dict) --
An object representing a device for a placement template (see PlacementTemplate).
deviceType (string) --
The device type, which currently must be "button".
callbackOverrides (dict) --
An optional Lambda function to invoke instead of the default Lambda function provided by the placement template.
(string) --
(string) --
dict
Response Syntax
{}
Response Structure
(dict) --
Creates an empty placement.
See also: AWS API Documentation
Request Syntax
client.create_placement( placementName='string', projectName='string', attributes={ 'string': 'string' } )
string
[REQUIRED]
The name of the placement to be created.
string
[REQUIRED]
The name of the project in which to create the placement.
dict
Optional user-defined key/value pairs providing contextual data (such as location or function) for the placement.
(string) --
(string) --
dict
Response Syntax
{}
Response Structure
(dict) --
Returns an object enumerating the devices in a placement.
See also: AWS API Documentation
Request Syntax
client.get_devices_in_placement( projectName='string', placementName='string' )
string
[REQUIRED]
The name of the project containing the placement.
string
[REQUIRED]
The name of the placement to get the devices from.
dict
Response Syntax
{ 'devices': { 'string': 'string' } }
Response Structure
(dict) --
devices (dict) --
An object containing the devices (zero or more) within the placement.
(string) --
(string) --