Table of Contents
A low-level client representing AWS IoT 1-Click Projects Service:
client = session.create_client('iot1click-projects')
These are the available methods:
Associates a physical device with a placement.
See also: AWS API Documentation
Request Syntax
response = client.associate_device_with_placement(
projectName='string',
placementName='string',
deviceId='string',
deviceTemplateName='string'
)
[REQUIRED]
The name of the project containing the placement in which to associate the device.
[REQUIRED]
The name of the placement in which to associate the device.
[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.
[REQUIRED]
The device template name to associate with the device ID.
dict
Response Syntax
{}
Response Structure
Check if an operation can be paginated.
Creates an empty placement.
See also: AWS API Documentation
Request Syntax
response = client.create_placement(
placementName='string',
projectName='string',
attributes={
'string': 'string'
}
)
[REQUIRED]
The name of the placement to be created.
[REQUIRED]
The name of the project in which to create the placement.
Optional user-defined key/value pairs providing contextual data (such as location or function) for the placement.
dict
Response Syntax
{}
Response Structure
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
response = client.create_project(
projectName='string',
description='string',
placementTemplate={
'defaultAttributes': {
'string': 'string'
},
'deviceTemplates': {
'string': {
'deviceType': 'string',
'callbackOverrides': {
'string': 'string'
}
}
}
}
)
[REQUIRED]
The name of the project to create.
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.
The default attributes (key/value pairs) to be applied to all placements using this template.
An object specifying the DeviceTemplate for all placements using this ( PlacementTemplate ) template.
An object representing a device for a placement template (see PlacementTemplate ).
The device type, which currently must be "button" .
An optional Lambda function to invoke instead of the default Lambda function provided by the placement template.
dict
Response Syntax
{}
Response Structure
Deletes a placement. To delete a placement, it must not have any devices associated with it.
Note
When you delete a placement, all associated data becomes irretrievable.
See also: AWS API Documentation
Request Syntax
response = client.delete_placement(
placementName='string',
projectName='string'
)
[REQUIRED]
The name of the empty placement to delete.
[REQUIRED]
The project containing the empty placement to delete.
dict
Response Syntax
{}
Response Structure
Deletes a project. To delete a project, it must not have any placements associated with it.
Note
When you delete a project, all associated data becomes irretrievable.
See also: AWS API Documentation
Request Syntax
response = client.delete_project(
projectName='string'
)
[REQUIRED]
The name of the empty project to delete.
{}
Response Structure
Describes a placement in a project.
See also: AWS API Documentation
Request Syntax
response = client.describe_placement(
placementName='string',
projectName='string'
)
[REQUIRED]
The name of the placement within a project.
[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.
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
response = client.describe_project(
projectName='string'
)
[REQUIRED]
The name of the project to be described.
{
'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
An object describing the project.
The name of the project for which to obtain information from.
The description of the project.
The date when the project was originally created, in UNIX epoch time format.
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.
An object describing the project's placement specifications.
The default attributes (key/value pairs) to be applied to all placements using this template.
An object specifying the DeviceTemplate for all placements using this ( PlacementTemplate ) template.
An object representing a device for a placement template (see PlacementTemplate ).
The device type, which currently must be "button" .
An optional Lambda function to invoke instead of the default Lambda function provided by the placement template.
Removes a physical device from a placement.
See also: AWS API Documentation
Request Syntax
response = client.disassociate_device_from_placement(
projectName='string',
placementName='string',
deviceTemplateName='string'
)
[REQUIRED]
The name of the project that contains the placement.
[REQUIRED]
The name of the placement that the device should be removed from.
[REQUIRED]
The device ID that should be removed from the placement.
dict
Response Syntax
{}
Response Structure
Generate a presigned url given a client, its method, and arguments
The presigned url
Returns an object enumerating the devices in a placement.
See also: AWS API Documentation
Request Syntax
response = client.get_devices_in_placement(
projectName='string',
placementName='string'
)
[REQUIRED]
The name of the project containing the placement.
[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.
Create a paginator for an operation.
Returns an object that can wait for some condition.
Lists the placement(s) of a project.
See also: AWS API Documentation
Request Syntax
response = client.list_placements(
projectName='string',
nextToken='string',
maxResults=123
)
[REQUIRED]
The project containing the placements to be listed.
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.
Lists the AWS IoT 1-Click project(s) associated with your AWS account and region.
See also: AWS API Documentation
Request Syntax
response = client.list_projects(
nextToken='string',
maxResults=123
)
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.
Updates a placement with the given attributes. To clear an attribute, pass an empty value (i.e., "").
See also: AWS API Documentation
Request Syntax
response = client.update_placement(
placementName='string',
projectName='string',
attributes={
'string': 'string'
}
)
[REQUIRED]
The name of the placement to update.
[REQUIRED]
The name of the project containing the placement to be updated.
The user-defined object of attributes used to update the placement. The maximum number of key/value pairs is 50.
dict
Response Syntax
{}
Response Structure
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
response = client.update_project(
projectName='string',
description='string',
placementTemplate={
'defaultAttributes': {
'string': 'string'
},
'deviceTemplates': {
'string': {
'deviceType': 'string',
'callbackOverrides': {
'string': 'string'
}
}
}
}
)
[REQUIRED]
The name of the project to be updated.
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.
The default attributes (key/value pairs) to be applied to all placements using this template.
An object specifying the DeviceTemplate for all placements using this ( PlacementTemplate ) template.
An object representing a device for a placement template (see PlacementTemplate ).
The device type, which currently must be "button" .
An optional Lambda function to invoke instead of the default Lambda function provided by the placement template.
dict
Response Syntax
{}
Response Structure
The available paginators are: