provisioning_claims
Creates, updates, deletes, gets or lists a provisioning_claims resource.
Overview
| Name | provisioning_claims |
| Type | Resource |
| Id | aws.iot.provisioning_claims |
Fields
The following fields are returned by SELECT queries:
SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
create_provisioning_claim | insert | template_name, region | Creates a provisioning claim. Requires permission to access the CreateProvisioningClaim action. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
template_name | string | The name of the provisioning template to use. |
INSERT examples
- create_provisioning_claim
- Manifest
Creates a provisioning claim. Requires permission to access the CreateProvisioningClaim action.
INSERT INTO aws.iot.provisioning_claims (
template_name,
region
)
SELECT
'{{ template_name }}',
'{{ region }}'
RETURNING
certificate_id,
certificate_pem,
expiration,
key_pair
;
# Description fields are for documentation purposes
- name: provisioning_claims
props:
- name: template_name
value: "{{ template_name }}"
description: Required parameter for the provisioning_claims resource.
- name: region
value: "{{ region }}"
description: Required parameter for the provisioning_claims resource.