deleteApplications method
Deletes a list of applications and their associations with configuration items.
May throw AuthorizationErrorException. May throw InvalidParameterException. May throw InvalidParameterValueException. May throw ServerInternalErrorException. May throw HomeRegionNotSetException.
Parameter configurationIds
:
Configuration ID of an application to be deleted.
Implementation
Future<void> deleteApplications({
required List<String> configurationIds,
}) async {
ArgumentError.checkNotNull(configurationIds, 'configurationIds');
final headers = <String, String>{
'Content-Type': 'application/x-amz-json-1.1',
'X-Amz-Target': 'AWSPoseidonService_V2015_11_01.DeleteApplications'
};
await _protocol.send(
method: 'POST',
requestUri: '/',
exceptionFnMap: _exceptionFns,
// TODO queryParams
headers: headers,
payload: {
'configurationIds': configurationIds,
},
);
}