Skip to content

Guardduty  >  Operations  >  list_malware_scans

list_malware_scans

Operation

list_malware_scans async

list_malware_scans(input: ListMalwareScansInput, plugins: list[Plugin] | None = None) -> ListMalwareScansOutput

Returns a list of malware scans. Each member account can view the malware scans for their own accounts. An administrator can view the malware scans for all of its members' accounts.

Parameters:

Name Type Description Default
input ListMalwareScansInput

An instance of ListMalwareScansInput.

required
plugins list[Plugin] | None

A list of callables that modify the configuration dynamically. Changes made by these plugins only apply for the duration of the operation execution and will not affect any other operation invocations.

None

Returns:

Type Description
ListMalwareScansOutput

An instance of ListMalwareScansOutput.

Input

ListMalwareScansInput dataclass

Dataclass for ListMalwareScansInput structure.

Attributes

filter_criteria class-attribute instance-attribute
filter_criteria: ListMalwareScansFilterCriteria | None = None

Represents the criteria used to filter the malware scan entries.

max_results class-attribute instance-attribute
max_results: int | None = None

You can use this parameter to indicate the maximum number of items that you want in the response. The default value is 50. The maximum value is 50.

next_token class-attribute instance-attribute
next_token: str | None = None

You can use this parameter when paginating results. Set the value of this parameter to null on your first call to the list action. For subsequent calls to the action, fill nextToken in the request with the value of NextToken from the previous response to continue listing results.

sort_criteria class-attribute instance-attribute
sort_criteria: SortCriteria | None = None

Represents the criteria used for sorting malware scan entries.

Output

ListMalwareScansOutput dataclass

Dataclass for ListMalwareScansOutput structure.

Attributes

next_token class-attribute instance-attribute
next_token: str | None = None

The pagination parameter to be used on the next list operation to retrieve more scans.

scans class-attribute instance-attribute
scans: list[MalwareScan] | None = None

The list of malware scans associated with the provided input parameters.