Table of Contents
A low-level client representing AWS IoT 1-Click Projects Service:
import boto3
client = boto3.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
Exceptions
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
Exceptions
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'
}
}
}
},
tags={
'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.
Optional tags (metadata key/value pairs) to be associated with the project. For example, { {"key1": "value1", "key2": "value2"} } . For more information, see AWS Tagging Strategies .
dict
Response Syntax
{}
Response Structure
Exceptions
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
Exceptions
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
Exceptions
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.
Exceptions
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': {
'arn': 'string',
'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'
}
}
}
},
'tags': {
'string': 'string'
}
}
}
Response Structure
An object describing the project.
The ARN of 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.
The tags (metadata key/value pairs) associated with the project.
Exceptions
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
Exceptions
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.
Exceptions
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.
Exceptions
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': [
{
'arn': 'string',
'projectName': 'string',
'createdDate': datetime(2015, 1, 1),
'updatedDate': datetime(2015, 1, 1),
'tags': {
'string': 'string'
}
},
],
'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.
arn (string) --
The ARN of the project.
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.
tags (dict) --
The tags (metadata key/value pairs) associated with the project.
nextToken (string) --
The token used to retrieve the next set of results - will be effectively empty if there are no further results.
Exceptions
Lists the tags (metadata key/value pairs) which you have assigned to the resource.
See also: AWS API Documentation
Request Syntax
response = client.list_tags_for_resource(
resourceArn='string'
)
[REQUIRED]
The ARN of the resource whose tags you want to list.
{
'tags': {
'string': 'string'
}
}
Response Structure
The tags (metadata key/value pairs) which you have assigned to the resource.
Exceptions
Creates or modifies tags for a resource. Tags are key/value pairs (metadata) that can be used to manage a resource. For more information, see AWS Tagging Strategies .
See also: AWS API Documentation
Request Syntax
response = client.tag_resource(
resourceArn='string',
tags={
'string': 'string'
}
)
[REQUIRED]
The ARN of the resouce for which tag(s) should be added or modified.
[REQUIRED]
The new or modifying tag(s) for the resource. See AWS IoT 1-Click Service Limits for the maximum number of tags allowed per resource.
dict
Response Syntax
{}
Response Structure
Exceptions
Removes one or more tags (metadata key/value pairs) from a resource.
See also: AWS API Documentation
Request Syntax
response = client.untag_resource(
resourceArn='string',
tagKeys=[
'string',
]
)
[REQUIRED]
The ARN of the resource whose tag you want to remove.
[REQUIRED]
The keys of those tags which you want to remove.
dict
Response Syntax
{}
Response Structure
Exceptions
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
Exceptions
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
Exceptions
The available paginators are:
paginator = client.get_paginator('list_placements')
Creates an iterator that will paginate through responses from IoT1ClickProjects.Client.list_placements().
See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate(
projectName='string',
PaginationConfig={
'MaxItems': 123,
'PageSize': 123,
'StartingToken': 'string'
}
)
[REQUIRED]
The project containing the placements to be listed.
A dictionary that provides parameters to control pagination.
The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.
The size of each page.
A token to specify where to start paginating. This is the NextToken from a previous response.
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) --
A token to resume pagination.
paginator = client.get_paginator('list_projects')
Creates an iterator that will paginate through responses from IoT1ClickProjects.Client.list_projects().
See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate(
PaginationConfig={
'MaxItems': 123,
'PageSize': 123,
'StartingToken': 'string'
}
)
A dictionary that provides parameters to control pagination.
The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.
The size of each page.
A token to specify where to start paginating. This is the NextToken from a previous response.
{
'projects': [
{
'arn': 'string',
'projectName': 'string',
'createdDate': datetime(2015, 1, 1),
'updatedDate': datetime(2015, 1, 1),
'tags': {
'string': 'string'
}
},
],
'NextToken': 'string'
}
Response Structure
An object containing the list of projects.
An object providing summary information for a particular project for an associated AWS account and region.
The ARN of the project.
The name of the project being summarized.
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.
The tags (metadata key/value pairs) associated with the project.
A token to resume pagination.