deleteTargetAccountConfiguration method
Deletes the specified target account configuration of the experiment template.
May throw ResourceNotFoundException.
May throw ValidationException.
Parameter accountId :
The Amazon Web Services account ID of the target account.
Parameter experimentTemplateId :
The ID of the experiment template.
Implementation
Future<DeleteTargetAccountConfigurationResponse>
deleteTargetAccountConfiguration({
required String accountId,
required String experimentTemplateId,
}) async {
final response = await _protocol.send(
payload: null,
method: 'DELETE',
requestUri:
'/experimentTemplates/${Uri.encodeComponent(experimentTemplateId)}/targetAccountConfigurations/${Uri.encodeComponent(accountId)}',
exceptionFnMap: _exceptionFns,
);
return DeleteTargetAccountConfigurationResponse.fromJson(response);
}