deleteBrandAssignment method
Deletes a brand assignment.
May throw AccessDeniedException.
May throw ConflictException.
May throw InternalServerException.
May throw InvalidRequestException.
May throw ResourceNotFoundException.
May throw ThrottlingException.
Parameter awsAccountId :
The ID of the Amazon Web Services account that owns the brand assignment.
Implementation
Future<DeleteBrandAssignmentResponse> deleteBrandAssignment({
required String awsAccountId,
}) async {
final response = await _protocol.send(
payload: null,
method: 'DELETE',
requestUri:
'/accounts/${Uri.encodeComponent(awsAccountId)}/brandassignments',
exceptionFnMap: _exceptionFns,
);
return DeleteBrandAssignmentResponse.fromJson(response);
}