list_device_fleets(**kwargs)¶Returns a list of devices in the fleet.
See also: AWS API Documentation
Request Syntax
response = client.list_device_fleets(
    NextToken='string',
    MaxResults=123,
    CreationTimeAfter=datetime(2015, 1, 1),
    CreationTimeBefore=datetime(2015, 1, 1),
    LastModifiedTimeAfter=datetime(2015, 1, 1),
    LastModifiedTimeBefore=datetime(2015, 1, 1),
    NameContains='string',
    SortBy='NAME'|'CREATION_TIME'|'LAST_MODIFIED_TIME',
    SortOrder='Ascending'|'Descending'
)
dict
Response Syntax
{
    'DeviceFleetSummaries': [
        {
            'DeviceFleetArn': 'string',
            'DeviceFleetName': 'string',
            'CreationTime': datetime(2015, 1, 1),
            'LastModifiedTime': datetime(2015, 1, 1)
        },
    ],
    'NextToken': 'string'
}
Response Structure
(dict) --
DeviceFleetSummaries (list) --
Summary of the device fleet.
(dict) --
Summary of the device fleet.
DeviceFleetArn (string) --
Amazon Resource Name (ARN) of the device fleet.
DeviceFleetName (string) --
Name of the device fleet.
CreationTime (datetime) --
Timestamp of when the device fleet was created.
LastModifiedTime (datetime) --
Timestamp of when the device fleet was last updated.
NextToken (string) --
The response from the last list when returning a list large enough to need tokening.