![]() |
![]()
| ![]() |
![]()
NAMEPaws::IoT::ListMitigationActions - Arguments for method ListMitigationActions on Paws::IoT DESCRIPTIONThis class represents the parameters used for calling the method ListMitigationActions on the AWS IoT service. Use the attributes of this class as arguments to method ListMitigationActions. You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to ListMitigationActions. SYNOPSISmy $iot = Paws->service('IoT'); my $ListMitigationActionsResponse = $iot->ListMitigationActions( ActionType => 'UPDATE_DEVICE_CERTIFICATE', # OPTIONAL MaxResults => 1, # OPTIONAL NextToken => 'MyNextToken', # OPTIONAL ); # Results: my $ActionIdentifiers = $ListMitigationActionsResponse->ActionIdentifiers; my $NextToken = $ListMitigationActionsResponse->NextToken; # Returns a L<Paws::IoT::ListMitigationActionsResponse> object. Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object. For the AWS API documentation, see <https://docs.aws.amazon.com/goto/WebAPI/iot/ListMitigationActions> ATTRIBUTESActionType => StrSpecify a value to limit the result to mitigation actions with a specific action type. Valid values are: "UPDATE_DEVICE_CERTIFICATE", "UPDATE_CA_CERTIFICATE", "ADD_THINGS_TO_THING_GROUP", "REPLACE_DEFAULT_POLICY_VERSION", "ENABLE_IOT_LOGGING", "PUBLISH_FINDING_TO_SNS" MaxResults => IntThe maximum number of results to return at one time. The default is 25. NextToken => StrThe token for the next set of results. SEE ALSOThis class forms part of Paws, documenting arguments for method ListMitigationActions in Paws::IoT BUGS and CONTRIBUTIONSThe source code is located here: <https://github.com/pplu/aws-sdk-perl> Please report bugs to: <https://github.com/pplu/aws-sdk-perl/issues>
|