IoTEvents / Client / list_inputs

list_inputs#

IoTEvents.Client.list_inputs(**kwargs)#

Lists the inputs you have created.

See also: AWS API Documentation

Request Syntax

response = client.list_inputs(
    nextToken='string',
    maxResults=123
)
Parameters:
  • nextToken (string) – The token that you can use to return the next set of results.

  • maxResults (integer) – The maximum number of results to be returned per request.

Return type:

dict

Returns:

Response Syntax

{
    'inputSummaries': [
        {
            'inputName': 'string',
            'inputDescription': 'string',
            'inputArn': 'string',
            'creationTime': datetime(2015, 1, 1),
            'lastUpdateTime': datetime(2015, 1, 1),
            'status': 'CREATING'|'UPDATING'|'ACTIVE'|'DELETING'
        },
    ],
    'nextToken': 'string'
}

Response Structure

  • (dict) –

    • inputSummaries (list) –

      Summary information about the inputs.

      • (dict) –

        Information about the input.

        • inputName (string) –

          The name of the input.

        • inputDescription (string) –

          A brief description of the input.

        • inputArn (string) –

          The ARN of the input.

        • creationTime (datetime) –

          The time the input was created.

        • lastUpdateTime (datetime) –

          The last time the input was updated.

        • status (string) –

          The status of the input.

    • nextToken (string) –

      The token that you can use to return the next set of results, or null if there are no more results.

Exceptions

  • IoTEvents.Client.exceptions.InvalidRequestException

  • IoTEvents.Client.exceptions.ThrottlingException

  • IoTEvents.Client.exceptions.InternalFailureException

  • IoTEvents.Client.exceptions.ServiceUnavailableException