Le traduzioni sono generate tramite traduzione automatica. In caso di conflitto tra il contenuto di una traduzione e la versione originale in Inglese, quest'ultima prevarrà.
AWS IoT Things Graph esempi utilizzando AWS CLI
I seguenti esempi di codice mostrano come eseguire azioni e implementare scenari comuni utilizzando AWS Command Line Interface with AWS IoT Things Graph.
Le operazioni sono estratti di codice da programmi più grandi e devono essere eseguite nel contesto. Mentre le azioni mostrano come richiamare le singole funzioni di servizio, è possibile visualizzare le azioni nel loro contesto negli scenari correlati.
Ogni esempio include un collegamento al codice sorgente completo, in cui è possibile trovare istruzioni su come configurare ed eseguire il codice nel contesto.
Argomenti
Azioni
Il seguente esempio di codice mostra come utilizzareassociate-entity-to-thing
.
- AWS CLI
-
Associare un oggetto a un dispositivo
L'
associate-entity-to-thing
esempio seguente associa un oggetto a un dispositivo. L'esempio utilizza un dispositivo con sensore di movimento che si trova nel namespace pubblico.aws iotthingsgraph associate-entity-to-thing \ --thing-name
"MotionSensorName"
\ --entity-id"urn:tdm:aws/examples:Device:HCSR501MotionSensor"
Questo comando non produce alcun output.
Per ulteriori informazioni, consulta Creazione e caricamento di modelli nella Guida per l'utente di AWS IoT Things Graph.
-
Per API i dettagli, vedere AssociateEntityToThing
in AWS CLI Command Reference.
-
Il seguente esempio di codice mostra come utilizzarecreate-flow-template
.
- AWS CLI
-
Per creare un flusso
L'
create-flow-template
esempio seguente crea un flusso (workflow). Il valore diMyFlowDefinition
è il GraphQL che modella il flusso.aws iotthingsgraph create-flow-template \ --definition language=GRAPHQL,text="MyFlowDefinition"
Output:
{ "summary": { "createdAt": 1559248067.545, "id": "urn:tdm:us-west-2/123456789012/default:Workflow:MyFlow", "revisionNumber": 1 } }
Per ulteriori informazioni, consulta Working with Flows nella AWS IoT Things Graph User Guide.
-
Per API i dettagli, vedere CreateFlowTemplate
in AWS CLI Command Reference.
-
Il seguente esempio di codice mostra come utilizzarecreate-system-instance
.
- AWS CLI
-
Per creare un'istanza di sistema
L'
create-system-instance
esempio seguente crea un'istanza di sistema. Il valore diMySystemInstanceDefinition
è il GraphQL che modella l'istanza di sistema.aws iotthingsgraph create
-
system-instance -\-definition
language=GRAPHQL,text="MySystemInstanceDefinition" \ --targetCLOUD
\ --flow-actions-role-arnmyRoleARN
Output:
{ "summary": { "id": "urn:tdm:us-west-2/123456789012/default:Deployment:Room218", "arn": "arn:aws:iotthingsgraph:us-west-2:123456789012:Deployment/default/Room218", "status": "NOT_DEPLOYED", "target": "CLOUD", "createdAt": 1559249315.208, "updatedAt": 1559249315.208 } }
Per ulteriori informazioni, consulta Working with Systems and Flow Configurations nella AWS IoT Things Graph User Guide.
-
Per API i dettagli, vedere CreateSystemInstance
in AWS CLI Command Reference.
-
Il seguente esempio di codice mostra come utilizzarecreate-system-template
.
- AWS CLI
-
Per creare un sistema
L'
create-system-template
esempio seguente crea un sistema. Il valore di MySystemDefinition è il GraphQL che modella il sistema.aws iotthingsgraph create-system-template \ --definition language=GRAPHQL,text="MySystemDefinition"
Output:
{ "summary": { "createdAt": 1559249776.254, "id": "urn:tdm:us-west-2/123456789012/default:System:MySystem", "arn": "arn:aws:iotthingsgraph:us-west-2:123456789012:System/default/MySystem", "revisionNumber": 1 } }
Per ulteriori informazioni, consulta Creating Systems nella AWS IoT Things Graph User Guide.
-
Per API i dettagli, vedere CreateSystemTemplate
in AWS CLI Command Reference.
-
Il seguente esempio di codice mostra come utilizzaredelete-flow-template
.
- AWS CLI
-
Per eliminare un flusso
L'
delete-flow-template
esempio seguente elimina un flusso (workflow).aws iotthingsgraph delete-flow-template \ --id
"urn:tdm:us-west-2/123456789012/default:Workflow:MyFlow"
Questo comando non produce alcun output.
Per ulteriori informazioni, consulta Lifecycle Management for AWS IoT Things Graph Entities, Flows, Systems and Deployments nella AWS IoT Things Graph User Guide.
-
Per i API dettagli, vedere DeleteFlowTemplate
in Command Reference.AWS CLI
-
Il seguente esempio di codice mostra come utilizzaredelete-namespace
.
- AWS CLI
-
Per eliminare un namespace
L'
delete-namespace
esempio seguente elimina uno spazio dei nomi.aws iotthingsgraph delete-namespace
Output:
{ "namespaceArn": "arn:aws:iotthingsgraph:us-west-2:123456789012", "namespaceName": "us-west-2/123456789012/default" }
Per ulteriori informazioni, consulta Lifecycle Management for AWS IoT Things Graph Entities, Flows, Systems and Deployments nella AWS IoT Things Graph User Guide.
-
Per i API dettagli, vedere DeleteNamespace
in Command Reference.AWS CLI
-
Il seguente esempio di codice mostra come utilizzaredelete-system-instance
.
- AWS CLI
-
Per eliminare un'istanza di sistema
L'
delete-system-instance
esempio seguente elimina un'istanza di sistema.aws iotthingsgraph delete-system-instance \ --id
"urn:tdm:us-west-2/123456789012/default:Deployment:Room218"
Questo comando non produce alcun output.
Per ulteriori informazioni, consulta Lifecycle Management for AWS IoT Things Graph Entities, Flows, Systems and Deployments nella AWS IoT Things Graph User Guide.
-
Per i API dettagli, vedere DeleteSystemInstance
in Command Reference.AWS CLI
-
Il seguente esempio di codice mostra come utilizzaredelete-system-template
.
- AWS CLI
-
Per eliminare un sistema
L'
delete-system-template
esempio seguente elimina un sistema.aws iotthingsgraph delete-system-template \ --id
"urn:tdm:us-west-2/123456789012/default:System:MySystem"
Questo comando non produce alcun output.
Per ulteriori informazioni, consulta Lifecycle Management for AWS IoT Things Graph Entities, Flows, Systems and Deployments nella AWS IoT Things Graph User Guide.
-
Per i API dettagli, vedere DeleteSystemTemplate
in Command Reference.AWS CLI
-
Il seguente esempio di codice mostra come utilizzaredeploy-system-instance
.
- AWS CLI
-
Per distribuire un'istanza di sistema
L'
delete-system-template
esempio seguente distribuisce un'istanza di sistema.aws iotthingsgraph deploy-system-instance \ --id
"urn:tdm:us-west-2/123456789012/default:Deployment:Room218"
Output:
{ "summary": { "arn": "arn:aws:iotthingsgraph:us-west-2:123456789012:Deployment:Room218", "createdAt": 1559249776.254, "id": "urn:tdm:us-west-2/123456789012/default:Deployment:Room218", "status": "DEPLOYED_IN_TARGET", "target": "CLOUD", "updatedAt": 1559249776.254 } }
Per ulteriori informazioni, consulta Working with Systems and Flow Configurations nella AWS IoT Things Graph User Guide.
-
Per API i dettagli, vedere DeploySystemInstance
in AWS CLI Command Reference.
-
Il seguente esempio di codice mostra come utilizzaredeprecate-flow-template
.
- AWS CLI
-
Per deprecare un flusso
L'
deprecate-flow-template
esempio seguente rende obsoleto un flusso (workflow).aws iotthingsgraph deprecate-flow-template \ --id
"urn:tdm:us-west-2/123456789012/default:Workflow:MyFlow"
Questo comando non produce alcun output.
Per ulteriori informazioni, consulta Lifecycle Management for AWS IoT Things Graph Entities, Flows, Systems and Deployments nella AWS IoT Things Graph User Guide.
-
Per i API dettagli, vedere DeprecateFlowTemplate
in Command Reference.AWS CLI
-
Il seguente esempio di codice mostra come utilizzaredeprecate-system-template
.
- AWS CLI
-
Deprecare un sistema
L'
deprecate-system-template
esempio seguente rende obsoleto un sistema.aws iotthingsgraph deprecate-system-template \ --id
"urn:tdm:us-west-2/123456789012/default:System:MySystem"
Questo comando non produce alcun output.
Per ulteriori informazioni, consulta Lifecycle Management for AWS IoT Things Graph Entities, Flows, Systems and Deployments nella AWS IoT Things Graph User Guide.
-
Per i API dettagli, vedere DeprecateSystemTemplate
in Command Reference.AWS CLI
-
Il seguente esempio di codice mostra come utilizzaredescribe-namespace
.
- AWS CLI
-
Per ottenere una descrizione del tuo namespace
L'
describe-namespace
esempio seguente ottiene una descrizione del tuo namespace.aws iotthingsgraph describe-namespace
Output:
{ "namespaceName": "us-west-2/123456789012/default", "trackingNamespaceName": "aws", "trackingNamespaceVersion": 1, "namespaceVersion": 5 }
Per ulteriori informazioni, consulta Namespace nella Guida per l'utente di AWS IoT Things Graph.
-
Per API i dettagli, vedere DescribeNamespace
in AWS CLI Command Reference.
-
Il seguente esempio di codice mostra come utilizzaredissociate-entity-from-thing
.
- AWS CLI
-
Dissociare un oggetto da un dispositivo
L'
dissociate-entity-from-thing
esempio seguente dissocia un oggetto da un dispositivo.aws iotthingsgraph dissociate-entity-from-thing \ --thing-name
"MotionSensorName"
\ --entity-type"DEVICE"
Questo comando non produce alcun output.
Per ulteriori informazioni, consulta Creazione e caricamento di modelli nella Guida per l'utente di AWS IoT Things Graph.
-
Per API i dettagli, vedere DissociateEntityFromThing
in AWS CLI Command Reference.
-
Il seguente esempio di codice mostra come utilizzareget-entities
.
- AWS CLI
-
Per ottenere le definizioni delle entità
L'
get-entities
esempio seguente ottiene una definizione per un modello di dispositivo.aws iotthingsgraph get-entities \ --ids
"urn:tdm:aws/examples:DeviceModel:MotionSensor"
Output:
{ "descriptions": [ { "id": "urn:tdm:aws/examples:DeviceModel:MotionSensor", "type": "DEVICE_MODEL", "createdAt": 1559256190.599, "definition": { "language": "GRAPHQL", "text": "##\n# Specification of motion sensor devices interface.\n##\ntype MotionSensor @deviceModel(id: \"urn:tdm:aws/examples:deviceModel:MotionSensor\",\n capability: \"urn:tdm:aws/examples:capability:MotionSensorCapability\") {ignore:void}" } } ] }
Per ulteriori informazioni, consulta Creazione e caricamento di modelli nella Guida per l'utente di AWS IoT Things Graph.
-
Per API i dettagli, vedere GetEntities
in AWS CLI Command Reference.
-
Il seguente esempio di codice mostra come utilizzareget-flow-template-revisions
.
- AWS CLI
-
Per ottenere informazioni di revisione su un flusso
L'
get-flow-template-revisions
esempio seguente ottiene informazioni di revisione su un flusso (workflow).aws iotthingsgraph get-flow-template-revisions \ --id
urn:tdm:us-west-2/123456789012/default:Workflow:MyFlow
Output:
{ "summaries": [ { "id": "urn:tdm:us-west-2/123456789012/default:Workflow:MyFlow", "revisionNumber": 1, "createdAt": 1559247540.292 } ] }
Per ulteriori informazioni, consulta Working with Flows nella AWS IoT Things Graph User Guide.
-
Per API i dettagli, vedere GetFlowTemplateRevisions
in AWS CLI Command Reference.
-
Il seguente esempio di codice mostra come utilizzareget-flow-template
.
- AWS CLI
-
Per ottenere una definizione di flusso
L'
get-flow-template
esempio seguente ottiene una definizione per un flusso (workflow).aws iotthingsgraph get-flow-template \ --id
"urn:tdm:us-west-2/123456789012/default:Workflow:MyFlow"
Output:
{ "description": { "summary": { "id": "urn:tdm:us-west-2/123456789012/default:Workflow:MyFlow", "revisionNumber": 1, "createdAt": 1559247540.292 }, "definition": { "language": "GRAPHQL", "text": "{\nquery MyFlow($camera: string!, $screen: string!) @workflowType(id: \"urn:tdm:us-west-2/123456789012/default:Workflow:MyFlow\") @annotation(type: \"tgc:FlowEvent\", id: \"sledged790c1b2bcd949e09da0c9bfc077f79d\", x: 1586, y: 653) @triggers(definition: \"{MotionSensor(description: \\\"\\\") @position(x: 1045, y: 635.6666564941406) {\\n condition(expr: \\\"devices[name == \\\\\\\"motionSensor\\\\\\\"].events[name == \\\\\\\"StateChanged\\\\\\\"].lastEvent\\\")\\n action(expr: \\\"\\\")\\n}}\") {\n variables {\n cameraResult @property(id: \"urn:tdm:aws/examples:property:CameraStateProperty\")\n }\n steps {\n step(name: \"Camera\", outEvent: [\"sledged790c1b2bcd949e09da0c9bfc077f79d\"]) @position(x: 1377, y: 638.6666564941406) {\n DeviceActivity(deviceModel: \"urn:tdm:aws/examples:deviceModel:Camera\", out: \"cameraResult\", deviceId: \"${camera}\") {\n capture\n }\n }\n step(name: \"Screen\", inEvent: [\"sledged790c1b2bcd949e09da0c9bfc077f79d\"]) @position(x: 1675.6666870117188, y: 637.9999847412109) {\n DeviceActivity(deviceModel: \"urn:tdm:aws/examples:deviceModel:Screen\", deviceId: \"${screen}\") {\n display(imageUrl: \"${cameraResult.lastClickedImage}\")\n }\n }\n }\n}\n}" }, "validatedNamespaceVersion": 5 } }
Per ulteriori informazioni, consulta Working with Flows nella AWS IoT Things Graph User Guide.
-
Per API i dettagli, vedere GetFlowTemplate
in AWS CLI Command Reference.
-
Il seguente esempio di codice mostra come utilizzareget-namespace-deletion-status
.
- AWS CLI
-
Per ottenere lo stato dell'operazione di eliminazione dello spazio dei nomi
L'
get-namespace-deletion-status
esempio seguente ottiene lo stato dell'operazione di eliminazione del namespace.aws iotthingsgraph get-namespace-deletion-status
Output:
{ "namespaceArn": "arn:aws:iotthingsgraph:us-west-2:123456789012", "namespaceName": "us-west-2/123456789012/default" "status": "SUCCEEDED " }
Per ulteriori informazioni, consulta Namespace nella Guida per l'utente di AWS IoT Things Graph.
-
Per API i dettagli, vedere GetNamespaceDeletionStatus
in AWS CLI Command Reference.
-
Il seguente esempio di codice mostra come utilizzareget-system-instance
.
- AWS CLI
-
Per ottenere un'istanza di sistema
L'
get-system-instance
esempio seguente ottiene una definizione per un'istanza di sistema.aws iotthingsgraph get-system-instance \ --id
"urn:tdm:us-west-2/123456789012/default:Deployment:Room218"
Output:
{ "description": { "summary": { "id": "urn:tdm:us-west-2/123456789012/default:Deployment:Room218", "arn": "arn:aws:iotthingsgraph:us-west-2:123456789012:Deployment/default/Room218", "status": "NOT_DEPLOYED", "target": "CLOUD", "createdAt": 1559249315.208, "updatedAt": 1559249315.208 }, "definition": { "language": "GRAPHQL", "text": "{\r\nquery Room218 @deployment(id: \"urn:tdm:us-west-2/123456789012/default:Deployment:Room218\", systemId: \"urn:tdm:us-west-2/123456789012/default:System:SecurityFlow\") {\r\n motionSensor(deviceId: \"MotionSensorName\")\r\n screen(deviceId: \"ScreenName\")\r\n camera(deviceId: \"CameraName\") \r\n triggers {MotionEventTrigger(description: \"a trigger\") { \r\n condition(expr: \"devices[name == 'motionSensor'].events[name == 'StateChanged'].lastEvent\") \r\n action(expr: \"ThingsGraph.startFlow('SecurityFlow', bindings[name == 'camera'].deviceId, bindings[name == 'screen'].deviceId)\")\r\n }\r\n }\r\n }\r\n }" }, "metricsConfiguration": { "cloudMetricEnabled": false }, "validatedNamespaceVersion": 5, "flowActionsRoleArn": "arn:aws:iam::123456789012:role/ThingsGraphRole" } }
Per ulteriori informazioni, consulta Working with Systems and Flow Configurations nella AWS IoT Things Graph User Guide.
-
Per API i dettagli, vedere GetSystemInstance
in AWS CLI Command Reference.
-
Il seguente esempio di codice mostra come utilizzareget-system-template-revisions
.
- AWS CLI
-
Per ottenere informazioni sulla revisione di un sistema
L'
get-system-template-revisions
esempio seguente ottiene informazioni sulla revisione di un sistema.aws iotthingsgraph get-system-template-revisions \ --id
"urn:tdm:us-west-2/123456789012/default:System:MySystem"
Output:
{ "summaries": [ { "id": "urn:tdm:us-west-2/123456789012/default:System:MySystem", "arn": "arn:aws:iotthingsgraph:us-west-2:123456789012:System/default/MySystem", "revisionNumber": 1, "createdAt": 1559247540.656 } ] }
Per ulteriori informazioni, consulta Working with Systems and Flow Configurations nella AWS IoT Things Graph User Guide.
-
Per API i dettagli, vedere GetSystemTemplateRevisions
in AWS CLI Command Reference.
-
Il seguente esempio di codice mostra come utilizzareget-system-template
.
- AWS CLI
-
Per procurarsi un sistema
L'
get-system-template
esempio seguente ottiene una definizione per un sistema.aws iotthingsgraph get-system-template \ --id
"urn:tdm:us-west-2/123456789012/default:System:MySystem"
Output:
{ "description": { "summary": { "id": "urn:tdm:us-west-2/123456789012/default:System:MySystem", "arn": "arn:aws:iotthingsgraph:us-west-2:123456789012:System/default/MyFlow", "revisionNumber": 1, "createdAt": 1559247540.656 }, "definition": { "language": "GRAPHQL", "text": "{\ntype MySystem @systemType(id: \"urn:tdm:us-west-2/123456789012/default:System:MySystem\", description: \"\") {\n camera: Camera @thing(id: \"urn:tdm:aws/examples:deviceModel:Camera\")\n screen: Screen @thing(id: \"urn:tdm:aws/examples:deviceModel:Screen\")\n motionSensor: MotionSensor @thing(id: \"urn:tdm:aws/examples:deviceModel:MotionSensor\")\n MyFlow: MyFlow @workflow(id: \"urn:tdm:us-west-2/123456789012/default:Workflow:MyFlow\")\n}\n}" }, "validatedNamespaceVersion": 5 } }
Per ulteriori informazioni, consulta Working with Systems and Flow Configurations nella AWS IoT Things Graph User Guide.
-
Per API i dettagli, vedere GetSystemTemplate
in AWS CLI Command Reference.
-
Il seguente esempio di codice mostra come utilizzareget-upload-status
.
- AWS CLI
-
Per conoscere lo stato della tua entità, carica
L'
get-upload-status
esempio seguente ottiene lo stato dell'operazione di caricamento dell'entità. Il valore diMyUploadId
è il valore ID restituito dall'upload-entity-definitions
operazione.aws iotthingsgraph get-upload-status \ --upload-id
"MyUploadId"
Output:
{ "namespaceName": "us-west-2/123456789012/default", "namespaceVersion": 5, "uploadId": "f6294f1e-b109-4bbe-9073-f451a2dda2da", "uploadStatus": "SUCCEEDED" }
Per ulteriori informazioni, consulta Modeling Entities nella AWS IoT Things Graph User Guide.
-
Per API i dettagli, vedere GetUploadStatus
in AWS CLI Command Reference.
-
Il seguente esempio di codice mostra come utilizzarelist-flow-execution-messages
.
- AWS CLI
-
Per ottenere informazioni sugli eventi in un'esecuzione di flusso
L'
list-flow-execution-messages
esempio seguente ottiene informazioni sugli eventi in un'esecuzione di flusso.aws iotthingsgraph list-flow-execution-messages \ --flow-execution-id
"urn:tdm:us-west-2/123456789012/default:Workflow:SecurityFlow_2019-05-11T19:39:55.317Z_MotionSensor_69b151ad-a611-42f5-ac21-fe537f9868ad"
Output:
{ "messages": [ { "eventType": "EXECUTION_STARTED", "messageId": "f6294f1e-b109-4bbe-9073-f451a2dda2da", "payload": "Flow execution started", "timestamp": 1559247540.656 } ] }
Per ulteriori informazioni, consulta Working with Flows nella AWS IoT Things Graph User Guide.
-
Per API i dettagli, vedere ListFlowExecutionMessages
in AWS CLI Command Reference.
-
Il seguente esempio di codice mostra come utilizzarelist-tags-for-resource
.
- AWS CLI
-
Per elencare tutti i tag di una risorsa
L'
list-tags-for-resource
esempio seguente elenca tutti i tag per una risorsa AWS IoT Things Graph.aws iotthingsgraph list-tags-for-resource \ --resource-arn
"arn:aws:iotthingsgraph:us-west-2:123456789012:Deployment/default/Room218"
Output:
{ "tags": [ { "key": "Type", "value": "Residential" } ] }
Per ulteriori informazioni, consulta Tagging Your AWS IoT Things Graph Resources nella AWS IoT Things Graph User Guide.
-
Per API i dettagli, consulta ListTagsForResource AWS CLI
Command Reference.
-
Il seguente esempio di codice mostra come utilizzaresearch-entities
.
- AWS CLI
-
Per cercare entità
L'
search-entities
esempio seguente cerca tutte le entità di tipoEVENT
.aws iotthingsgraph search-entities \ --entity-types
"EVENT"
Output:
{ "descriptions": [ { "id": "urn:tdm:aws/examples:Event:MotionSensorEvent", "type": "EVENT", "definition": { "language": "GRAPHQL", "text": "##\n# Description of events emitted by motion sensor.\n##\ntype MotionSensorEvent @eventType(id: \"urn:tdm:aws/examples:event:MotionSensorEvent\",\n payload: \"urn:tdm:aws/examples:property:MotionSensorStateProperty\") {ignore:void}" } }, { "id": "urn:tdm:us-west-2/123456789012/default:Event:CameraClickedEventV2", "type": "EVENT", "definition": { "language": "GRAPHQL", "text": "type CameraClickedEventV2 @eventType(id: \"urn:tdm:us-west-2/123456789012/default:event:CameraClickedEventV2\",\r\npayload: \"urn:tdm:aws:Property:Boolean\"){ignore:void}" } }, { "id": "urn:tdm:us-west-2/123456789012/default:Event:MotionSensorEventV2", "type": "EVENT", "definition": { "language": "GRAPHQL", "text": "# Event emitted by the motion sensor.\r\ntype MotionSensorEventV2 @eventType(id: \"urn:tdm:us-west-2/123456789012/default:event:MotionSensorEventV2\",\r\npayload: \"urn:tdm:us-west-2/123456789012/default:property:MotionSensorStateProperty2\") {ignore:void}" } } ], "nextToken": "urn:tdm:us-west-2/123456789012/default:Event:MotionSensorEventV2" }
Per ulteriori informazioni, consulta AWS IoT Things Graph Data Model Reference nella AWS IoT Things Graph User Guide.
-
Per API i dettagli, vedere SearchEntities
in AWS CLI Command Reference.
-
Il seguente esempio di codice mostra come utilizzaresearch-flow-executions
.
- AWS CLI
-
Per cercare le esecuzioni di flusso
L'
search-flow-executions
esempio seguente cerca tutte le esecuzioni di un flusso in un'istanza di sistema specificata.aws iotthingsgraph search-flow-executions \ --system-instance-id
"urn:tdm:us-west-2/123456789012/default:Deployment:Room218"
Output:
{ "summaries": [ { "createdAt": 1559247540.656, "flowExecutionId": "f6294f1e-b109-4bbe-9073-f451a2dda2da", "flowTemplateId": "urn:tdm:us-west-2/123456789012/default:Workflow:MyFlow", "status": "RUNNING ", "systemInstanceId": "urn:tdm:us-west-2/123456789012/default:System:MySystem", "updatedAt": 1559247540.656 } ] }
Per ulteriori informazioni, consulta Working with Systems and Flow Configurations nella AWS IoT Things Graph User Guide.
-
Per API i dettagli, vedere SearchFlowExecutions
in AWS CLI Command Reference.
-
Il seguente esempio di codice mostra come utilizzaresearch-flow-templates
.
- AWS CLI
-
Per cercare flussi (o flussi di lavoro)
L'
search-flow-templates
esempio seguente cerca tutti i flussi (flussi di lavoro) che contengono il modello di dispositivo Camera.aws iotthingsgraph search-flow-templates \ --filters name="DEVICE_MODEL_ID",value="urn:tdm:aws/examples:DeviceModel:Camera"
Output:
{ "summaries": [ { "id": "urn:tdm:us-west-2/123456789012/default:Workflow:MyFlow", "revisionNumber": 1, "createdAt": 1559247540.292 }, { "id": "urn:tdm:us-west-2/123456789012/default:Workflow:SecurityFlow", "revisionNumber": 3, "createdAt": 1548283099.27 } ] }
Per ulteriori informazioni, consulta Working with Flows nella AWS IoT Things Graph User Guide.
-
Per API i dettagli, vedere SearchFlowTemplates
in AWS CLI Command Reference.
-
Il seguente esempio di codice mostra come utilizzaresearch-system-instances
.
- AWS CLI
-
Per cercare istanze di sistema
L'
search-system-instances
esempio seguente cerca tutte le istanze di sistema che contengono il sistema specificato.aws iotthingsgraph search-system-instances \ --filters name="SYSTEM_TEMPLATE_ID",value="urn:tdm:us-west-2/123456789012/default:System:SecurityFlow"
Output:
{ "summaries": [ { "id": "urn:tdm:us-west-2/123456789012/default:Deployment:DeploymentForSample", "arn": "arn:aws:iotthingsgraph:us-west-2:123456789012:Deployment/default/DeploymentForSample", "status": "NOT_DEPLOYED", "target": "GREENGRASS", "greengrassGroupName": "ThingsGraphGrnGr", "createdAt": 1555716314.707, "updatedAt": 1555716314.707 }, { "id": "urn:tdm:us-west-2/123456789012/default:Deployment:MockDeployment", "arn": "arn:aws:iotthingsgraph:us-west-2:123456789012:Deployment/default/MockDeployment", "status": "DELETED_IN_TARGET", "target": "GREENGRASS", "greengrassGroupName": "ThingsGraphGrnGr", "createdAt": 1549416462.049, "updatedAt": 1549416722.361, "greengrassGroupId": "01d04b07-2a51-467f-9d03-0c90b3cdcaaf", "greengrassGroupVersionId": "7365aed7-2d3e-4d13-aad8-75443d45eb05" }, { "id": "urn:tdm:us-west-2/123456789012/default:Deployment:MockDeployment2", "arn": "arn:aws:iotthingsgraph:us-west-2:123456789012:Deployment/default/MockDeployment2", "status": "DEPLOYED_IN_TARGET", "target": "GREENGRASS", "greengrassGroupName": "ThingsGraphGrnGr", "createdAt": 1549572385.774, "updatedAt": 1549572418.408, "greengrassGroupId": "01d04b07-2a51-467f-9d03-0c90b3cdcaaf", "greengrassGroupVersionId": "bfa70ab3-2bf7-409c-a4d4-bc8328ae5b86" }, { "id": "urn:tdm:us-west-2/123456789012/default:Deployment:Room215", "arn": "arn:aws:iotthingsgraph:us-west-2:123456789012:Deployment/default/Room215", "status": "NOT_DEPLOYED", "target": "GREENGRASS", "greengrassGroupName": "ThingsGraphGG", "createdAt": 1547056918.413, "updatedAt": 1547056918.413 }, { "id": "urn:tdm:us-west-2/123456789012/default:Deployment:Room218", "arn": "arn:aws:iotthingsgraph:us-west-2:123456789012:Deployment/default/Room218", "status": "NOT_DEPLOYED", "target": "CLOUD", "createdAt": 1559249315.208, "updatedAt": 1559249315.208 } ] }
Per ulteriori informazioni, consulta Working with Systems and Flow Configurations nella AWS IoT Things Graph User Guide.
-
Per API i dettagli, vedere SearchSystemInstances
in AWS CLI Command Reference.
-
Il seguente esempio di codice mostra come utilizzaresearch-system-templates
.
- AWS CLI
-
Per cercare un sistema
L'
search-system-templates
esempio seguente cerca tutti i sistemi che contengono il flusso specificato.aws iotthingsgraph search-system-templates \ --filters name="FLOW_TEMPLATE_ID",value="urn:tdm:us-west-2/123456789012/default:Workflow:SecurityFlow"
Output:
{ "summaries": [ { "id": "urn:tdm:us-west-2/123456789012/default:System:SecurityFlow", "arn": "arn:aws:iotthingsgraph:us-west-2:123456789012:System/default/SecurityFlow", "revisionNumber": 1, "createdAt": 1548283099.433 } ] }
Per ulteriori informazioni, consulta Working with Flows nella AWS IoT Things Graph User Guide.
-
Per API i dettagli, vedere SearchSystemTemplates
in AWS CLI Command Reference.
-
Il seguente esempio di codice mostra come utilizzaresearch-things
.
- AWS CLI
-
Per cercare elementi associati a dispositivi e modelli di dispositivi
L'
search-things
esempio seguente cerca tutti gli elementi associati al MotionSensor dispositivo HCSR5 01.aws iotthingsgraph search-things \ --entity-id
"urn:tdm:aws/examples:Device:HCSR501MotionSensor"
Output:
{ "things": [ { "thingArn": "arn:aws:iot:us-west-2:123456789012:thing/MotionSensor1", "thingName": "MotionSensor1" }, { "thingArn": "arn:aws:iot:us-west-2:123456789012:thing/TG_MS", "thingName": "TG_MS" } ] }
Per ulteriori informazioni, consulta Creazione e caricamento di modelli nella Guida per l'utente di AWS IoT Things Graph.
-
Per API i dettagli, vedere SearchThings
in AWS CLI Command Reference.
-
Il seguente esempio di codice mostra come utilizzaretag-resource
.
- AWS CLI
-
Per creare un tag per una risorsa
L'
tag-resource
esempio seguente crea un tag per la risorsa specificata.aws iotthingsgraph tag-resource \ --resource-arn
"arn:aws:iotthingsgraph:us-west-2:123456789012:Deployment/default/Room218"
\ --tags key="Type",value="Residential"Questo comando non produce alcun output.
Per ulteriori informazioni, consulta Tagging Your AWS IoT Things Graph Resources nella AWS IoT Things Graph User Guide.
-
Per API i dettagli, consulta TagResource AWS CLI
Command Reference.
-
Il seguente esempio di codice mostra come utilizzareundeploy-system-instance
.
- AWS CLI
-
Per annullare la distribuzione di un'istanza di sistema dalla relativa destinazione
L'
undeploy-system-instance
esempio seguente rimuove un'istanza di sistema dalla relativa destinazione.aws iotthingsgraph undeploy-system-instance \ --id
"urn:tdm:us-west-2/123456789012/default:Deployment:Room215"
Output:
{ "summary": { "id": "urn:tdm:us-west-2/123456789012/default:Deployment:Room215", "arn": "arn:aws:iotthingsgraph:us-west-2:123456789012:Deployment/default/Room215", "status": "PENDING_DELETE", "target": "GREENGRASS", "greengrassGroupName": "ThingsGraphGrnGr", "createdAt": 1553189694.255, "updatedAt": 1559344549.601, "greengrassGroupId": "01d04b07-2a51-467f-9d03-0c90b3cdcaaf", "greengrassGroupVersionId": "731b371d-d644-4b67-ac64-3934e99b75d7" } }
Per ulteriori informazioni, consulta Lifecycle Management for AWS IoT Things Graph Entities, Flows, Systems and Deployments nella AWS IoT Things Graph User Guide.
-
Per i API dettagli, vedere UndeploySystemInstance
in Command Reference.AWS CLI
-
Il seguente esempio di codice mostra come utilizzareuntag-resource
.
- AWS CLI
-
Per rimuovere un tag per una risorsa
L'
untag-resource
esempio seguente rimuove un tag per la risorsa specificata.aws iotthingsgraph untag-resource \ --resource-arn
"arn:aws:iotthingsgraph:us-west-2:123456789012:Deployment/default/Room218"
\ --tag-keys"Type"
Questo comando non produce alcun output.
Per ulteriori informazioni, consulta Tagging Your AWS IoT Things Graph Resources nella AWS IoT Things Graph User Guide.
-
Per API i dettagli, consulta UntagResource AWS CLI
Command Reference.
-
Il seguente esempio di codice mostra come utilizzareupdate-flow-template
.
- AWS CLI
-
Per aggiornare un flusso
L'
update-flow-template
esempio seguente aggiorna un flusso (workflow). Il valore diMyFlowDefinition
è il GraphQL che modella il flusso.aws iotthingsgraph update-flow-template \ --id
"urn:tdm:us-west-2/123456789012/default:Workflow:MyFlow"
\ --definition language=GRAPHQL,text="MyFlowDefinition"Output:
{ "summary": { "createdAt": 1559248067.545, "id": "urn:tdm:us-west-2/123456789012/default:Workflow:MyFlow", "revisionNumber": 2 } }
Per ulteriori informazioni, consulta Working with Flows nella AWS IoT Things Graph User Guide.
-
Per API i dettagli, vedere UpdateFlowTemplate
in AWS CLI Command Reference.
-
Il seguente esempio di codice mostra come utilizzareupdate-system-template
.
- AWS CLI
-
Per aggiornare un sistema
L'
update-system-template
esempio seguente aggiorna un sistema. Il valore diMySystemDefinition
è il GraphQL che modella il sistema.aws iotthingsgraph update-system-template \ --id
"urn:tdm:us-west-2/123456789012/default:System:MySystem"
\ --definition language=GRAPHQL,text="MySystemDefinition"Output:
{ "summary": { "createdAt": 1559249776.254, "id": "urn:tdm:us-west-2/123456789012/default:System:MySystem", "arn": "arn:aws:iotthingsgraph:us-west-2:123456789012:System/default/MySystem", "revisionNumber": 2 } }
Per ulteriori informazioni, consulta Creating Systems nella AWS IoT Things Graph User Guide.
-
Per API i dettagli, vedere UpdateSystemTemplate
in AWS CLI Command Reference.
-
Il seguente esempio di codice mostra come utilizzareupload-entity-definitions
.
- AWS CLI
-
Per caricare le definizioni delle entità
L'
upload-entity-definitions
esempio seguente carica le definizioni di entità nel tuo namespace. Il valore diMyEntityDefinitions
è il GraphQL che modella le entità.aws iotthingsgraph upload-entity-definitions \ --document language=GRAPHQL,text="MyEntityDefinitions"
Output:
{ "uploadId": "f6294f1e-b109-4bbe-9073-f451a2dda2da" }
Per ulteriori informazioni, consulta Modeling Entities nella AWS IoT Things Graph User Guide.
-
Per API i dettagli, vedere UploadEntityDefinitions
in AWS CLI Command Reference.
-